0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-29 07:58:19 +02:00

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

This commit is contained in:
Paul "LeoNerd" Evans 2015-03-10 15:23:33 +00:00
parent f1fbe3e09f
commit 493e3fa0ca

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)