Don't forbid '_' in metric basenames any more, to allow things like foo_time

pull/108/head
Paul "LeoNerd" Evans 2015-03-10 15:23:33 +00:00
parent f1fbe3e09f
commit 493e3fa0ca
1 changed files with 0 additions and 5 deletions

View File

@ -43,11 +43,6 @@ class Metrics(object):
self.name_prefix = name
def _register(self, metric_class, name, *args, **kwargs):
if "_" in name:
raise ValueError("Metric names %s is invalid as it cannot contain an underscore"
% (name)
)
full_name = "%s_%s" % (self.name_prefix, name)
metric = metric_class(full_name, *args, **kwargs)