registry = CollectorRegistry()
g = Gauge('some_metrices', 'metrics', "[node]",registry=registry)
g.lables("worker").set(101)
push_to_gateway('localhost:9091', job='batchA', registry=registry)
//如果我尝试使用没有标签[节点],那么我可以在我的prometheus中创建一个metrices但是如果我使用标签我会收到错误。请告诉我哪里出错了
raise ValueError('Invalid label metric name: ' + l)
ValueError: Invalid label metric name: [
答案 0 :(得分:0)
[node]
不是有效的标签名称,您不能在度量标准名称中使用方括号。 node
可行。