不匹配指标,同时使用唯一标签对多个指标进行补偿

时间:2019-01-14 03:43:24

标签: prometheus

我有2个指标,例如:

metric1{lable1="a",label2,...}
metric1{lable1="b",label2,...}
metric2{lable1="a",label2,...}

预期结果:

metric1{label1="b"}

因为metric2中没有匹配的标签。

  

对于上述预期结果,什么是PromQL?

1 个答案:

答案 0 :(得分:0)

metric1 unless metric2

或者,如果您只想匹配一部分标签,metric1 unless on(label1, label2) metric2