HBASE-10755 MetricsRegionSourceImpl creates metrics that start with a lower case

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1578647 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2014-03-17 22:37:25 +00:00
parent 0dfa20d885
commit 205654d818
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class MetricsRegionSourceImpl implements MetricsRegionSource {
registry = agg.getMetricsRegistry();
regionNamePrefix = "namespace_" + regionWrapper.getNamespace() +
regionNamePrefix = "Namespace_" + regionWrapper.getNamespace() +
"_table_" + regionWrapper.getTableName() +
"_region_" + regionWrapper.getRegionName() +
"_metric_";