This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 16191f57c54 HBASE-29845 Description of the hbase:slowlog is not
displayed correctly (#7669)
16191f57c54 is described below
commit 16191f57c54a9afd0b11401d3d4e25180b891340
Author: Liu Xiao <[email protected]>
AuthorDate: Sat Jan 24 17:46:37 2026 +0800
HBASE-29845 Description of the hbase:slowlog is not displayed correctly
(#7669)
Signed-off-by: Dávid Paksy <[email protected]>
---
.../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 5bc67e0b79e..bf9f0da448a 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)){
@@ -75,6 +75,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>