Skip to content

Commit

Permalink
hbase regionserver Error splitting numRegions fix for #396 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
HariSekhon authored and johann8384 committed Dec 18, 2018
1 parent d1360b3 commit fa32cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collectors/0/hbase_regionserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def emit(self):
if any( c in EXCLUDED_CONTEXTS for c in context):
continue

if any(c == "regions" for c in context):
if any(c == "regions" for c in context) and '_region_' in metric_name:
if EMIT_REGION:
self.emit_region_metric(context, current_time, metric_name, value)
else:
Expand Down

0 comments on commit fa32cf2

Please sign in to comment.