在 Prometheus 中,给出了下面的指标定义,我如何为指标系列中排名前 5 位的重复设备呈现表格?
top_5_noisy_devices:
{ "device" : "1234", "type" : "foo"}
{ "device" : "1234", "type" : "foo"}
{ "device" : "1234", "type" : "foo"}
{ "device" : "2345", "type" : "foo"}
{ "device" : "4231", "type" : "foo"}
{ "device" : "4354", "type" : "foo"}
我想在 Grafana 中为上述标签呈现一个表格,以显示设备 1234 是所选时间段内的嘈杂设备。我尝试了 topk 运算符,但它呈现超过 3 个。(我在表中看到 100 行而不是 3 行) https://www.robustperception.io/graph-top-n-time-series-in-grafana声称支持格拉法纳的顶级。但我不明白如何使它适应一张桌子。