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 %> |