假设我有两个不同的指标,具有不同的标签名称,但具有相同的一组值:
metric1{label1="some_values_the_same_as_in_metric2"} val examples: val1 val2 val3
metric2{label2="some_values_the_same_as_in_metric1"} val examples: val2 val3
现在我想用 label1 查询 metric1 但过滤掉与 metric2 label2 中具有相同值的所有指标
我知道我可以metric1{label1!=~"val2|val3"}
但是,如果我在 metric1 中有 300 个值,在 metric2 中有 200 个值,并且这些值会随着时间的推移而改变,该怎么办?如何动态过滤掉它?
尝试了很多这样的事情:
metric_name1 unless metric_name2 on(common_label) group_left
但没有成功