This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new 5b3513fed02 HBASE-29845 Description of the hbase:slowlog is not
displayed correctly (#7655)
5b3513fed02 is described below
commit 5b3513fed02f5246ce6515c88c8919966d5bb0c0
Author: Liu Xiao <[email protected]>
AuthorDate: Sat Jan 24 17:39:58 2026 +0800
HBASE-29845 Description of the hbase:slowlog is not displayed correctly
(#7655)
Signed-off-by: Dávid Paksy <[email protected]>
(cherry picked from commit 30c42a874855b5b012cdaaa15efdff8fa1846bdd)
---
.../src/main/resources/hbase-webapps/master/catalogTables.jsp | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/hbase-server/src/main/resources/hbase-webapps/master/catalogTables.jsp
b/hbase-server/src/main/resources/hbase-webapps/master/catalogTables.jsp
index b965241afe2..1f1aad61ba7 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/catalogTables.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/catalogTables.jsp
@@ -55,7 +55,7 @@
<% if (frags != null) { %>
<td align="center"><%= frags.get(tableName.getNameAsString()) != null
? frags.get(tableName.getNameAsString()) + "%" : "n/a" %></td>
<% } %>
- <% String description = null;
+ <% String description = "";
if (tableName.equals(TableName.META_TABLE_NAME)){
description = "The hbase:meta table holds references to all User
Table regions.";
} else if (tableName.equals(CanaryTool.DEFAULT_WRITE_TABLE_NAME)){
@@ -73,6 +73,9 @@
} else if (tableName.equals(TableName.valueOf("hbase:replication"))) {
description = "The hbase:replication table tracks cross cluster
replication through " +
"WAL file offsets.";
+ } else if (tableName.equals(TableName.valueOf("hbase:slowlog"))) {
+ description = "The hbase:slowlog table holds information about
slow and large rpc " +
+ "operations.";
}
%>
<td><%= description %></td>