Skip to content

Commit

Permalink
hbase regionserver Error splitting numRegions fix for OpenTSDB#396
Browse files Browse the repository at this point in the history
  • Loading branch information
HariSekhon committed Jul 24, 2018
1 parent ae9014a commit 378423b
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 378423b

Please sign in to comment.