This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new 0a88e51b1c0 HBASE-29845 Description of the hbase:slowlog is not
displayed correctly (#7655)
0a88e51b1c0 is described below
commit 0a88e51b1c0f0112e726a6e9653fa9716c9265a0
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 5bc67e0b79e..9bd7c198b64 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>