在prometheus_pushgateway中添加标签

时间:2017-08-02 07:34:31

标签: prometheus

    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: [

1 个答案:

答案 0 :(得分:0)

[node]不是有效的标签名称,您不能在度量标准名称中使用方括号。 node可行。

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