在Grafana中显示总点数

Show total number of points in Grafana

我在Graphite中存储了某个操作的时间段。在我的 Grafana 仪表板中,我显示了所有超过 15 分钟的点。我还想每天显示此类事件的数量。 Graphite/Grafana 是否可以在不添加新指标的情况下这样做?

仅显示值 > 15 分钟(15 分钟 = 900,000 毫秒)的点

removeBelowValue(test.a.b.c, 900000)

要从上面得到 运行 的点击数:

A: removeBelowValue(test.a.b.c, 900000)
B: integral(divideSeries(removeBelowValue(test.a.b.c, 900000), #A))

输入两个系列查询后,您可以单击 A 系列旁边的眼球将其隐藏,因为我们关心的值将来自 B

该系列的值将是 A 查询超过 900000 的实例数。