我有一个普罗米修斯指标,其标签声明为
errors_total = prometheus_client.Counter("errors_total", "Total errors", ["source", "code])
errors_total.labels("source"="initialization", code="100")
errors_total.labels("source"="shutingdown", code="200")
当我在受监控代码中发生错误的位置增加指标时,我可以将其用作:
errors_total.labels(source="initialization").inc()
或者
errors_total.labels(code="200").inc()
我的问题是我可以在增加指标时只使用一个标签吗?