在 prometheus_pushgateway 中添加标签

Adding labels in prometheus_pushgateway

    registry = CollectorRegistry()
    g = Gauge('some_metrices', 'metrics', "[node]",registry=registry)
    g.lables("worker").set(101)
    push_to_gateway('localhost:9091', job='batchA', registry=registry)

//如果我尝试在没有标签 [node] 的情况下使用,那么我可以在我的普罗米修斯中创建一个指标,但是如果我使用标签,我会得到一个 error.please 告诉我我哪里出错了

raise ValueError('Invalid label metric name: ' + l)
ValueError: Invalid label metric name: [

[node] 不是有效的标签名称,度量名称中不能有方括号。 node 可以。

我还建议阅读 https://prometheus.io/docs/practices/pushing/