From 4094da25313409e60a0a5d4b128d2a704ea2cbbd Mon Sep 17 00:00:00 2001 From: Joseph Hwang Date: Tue, 12 Jul 2016 09:45:05 -0700 Subject: [PATCH] HBASE-16214 Add in a UI description for the Replication Table --- .../org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon index 056c2d7..d19df21 100644 --- a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon +++ b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon @@ -387,7 +387,7 @@ AssignmentManager assignmentManager = master.getAssignmentManager(); description = "The hbase:canary table is used to sniff the write availbility of" + " each regionserver."; } else if (tableName.equals(AccessControlLists.ACL_TABLE_NAME)){ - description = "The hbase:acl table holds information about acl"; + description = "The hbase:acl table holds information about acl."; } else if (tableName.equals(VisibilityConstants.LABELS_TABLE_NAME)){ description = "The hbase:labels table holds information about visibility labels."; } else if (tableName.equals(TableName.NAMESPACE_TABLE_NAME)){ @@ -396,7 +396,10 @@ AssignmentManager assignmentManager = master.getAssignmentManager(); description = "The hbase:quota table holds quota information about number" + " or size of requests in a given time frame."; } else if (tableName.equals(TableName.valueOf("hbase:rsgroup"))){ - description = "The hbase:rsgroup table holds information about regionserver groups"; + description = "The hbase:rsgroup table holds information about regionserver groups."; + } else if (tableName.equals(TableName.valueOf("hbase:replication"))) { + description = "The hbase:replication table tracks cross cluster replication through " + + "WAL file offsets."; } <% description %> -- 2.8.0-rc2