Index: hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon =================================================================== --- hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon (revision 1590572) +++ hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.jamon (working copy) @@ -50,7 +50,10 @@ org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.SnapshotDescription; org.apache.hadoop.hbase.master.DeadServer; org.apache.hadoop.hbase.protobuf.ProtobufUtil; +org.apache.hadoop.hbase.security.visibility.VisibilityConstants; +org.apache.hadoop.hbase.security.access.AccessControlLists; + <%if format.equals("json") %> <& ../common/TaskMonitorTmpl; filter = filter; format = "json" &> <%java return; %> @@ -318,6 +321,10 @@ <%java>String description = null; if (tableName.equals(TableName.META_TABLE_NAME)){ description = "The hbase:meta table holds references to all User Table regions"; + } else if (tableName.equals(AccessControlLists.ACL_TABLE_NAME)){ + 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 { description = "The .NAMESPACE. table holds information about namespaces."; }