我正在寻找一种计算唯一标签值并显示每个客户姓名的唯一标签数的方法。这是我的指标。我需要将计数设为apple = 1,orange = 1。
customer_alerts(alertname="a", customername="apple")
customer_alerts(alertname="b", customername="orange")
customer_alerts(alertname="a", customername="apple")
我尝试了以下查询,它显示的总计数为2,但我想显示每个客户名称的计数映射。我该怎么办?
Example: apple=1, orange=1
count(count by (alertname)(customer_alerts[24h])))
请注意,我正在使用grafana创建仪表板。