normalize metric label to match prometheus data-model guide
This commit is contained in:
parent
c4687816c1
commit
eb43e39a81
@ -21,7 +21,7 @@ class MetricsController(Controller):
|
|||||||
else:
|
else:
|
||||||
raise ValueError("Unexpected metric type for metric {}".format(repr(metric)))
|
raise ValueError("Unexpected metric type for metric {}".format(repr(metric)))
|
||||||
|
|
||||||
return "{key} {value}".format(key=key.replace(".", "_"), value=value)
|
return "{key} {value}".format(key=re.sub('[^a-zA-Z0-9:_]', '_', key), value=value)
|
||||||
|
|
||||||
data = ["# https://prometheus.io/docs/instrumenting/exposition_formats/"] + [
|
data = ["# https://prometheus.io/docs/instrumenting/exposition_formats/"] + [
|
||||||
prometheusFormat(k, v) for k, v in metrics.items()
|
prometheusFormat(k, v) for k, v in metrics.items()
|
||||||
|
Loading…
Reference in New Issue
Block a user