From 4c9efff145fadc7143712fd582f7d86bf0df4ae3 Mon Sep 17 00:00:00 2001 From: liuxiaocs7 Date: Fri, 23 Jan 2026 11:39:25 +0800 Subject: [PATCH] HBASE-29845 Description of the hbase:slowlog is not displayed correctly --- .../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 5bc67e0b79ed..bf9f0da448ac 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) { %> <%= frags.get(tableName.getNameAsString()) != null ? frags.get(tableName.getNameAsString()) + "%" : "n/a" %> <% } %> - <% 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."; } %> <%= description %>