gpt4 book ai didi

grafana - 普罗米修斯查询以计算唯一标签值

转载 作者:行者123 更新时间:2023-12-03 23:16:40 24 4
gpt4 key购买 nike

我想计算唯一标签值的数量。就像

select count (distinct a) from hello_info

例如,如果我的指标“hello_info”有标签 a 和 b。我想计算唯一 a 的数量。这里对于 a = "1", "2", "3"的计数为 3。
hello_info(a="1", b="ddd")
hello_info(a="2", b="eee")
hello_info(a="1", b="fff")
hello_info(a="3", b="ggg")

最佳答案

count(count by (a) (hello_info))

首先,您需要一个聚合器,每个值的结果为 a ,然后你可以计算它们。

关于grafana - 普罗米修斯查询以计算唯一标签值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51882134/

24 4 0