如何过滤石墨中的数据

GJa*_*ain 1 metrics wildcard graphite statsd

我为我的统计数据运行statsd/graphite.我的统计数据可能看起来像

a.b.c.u1 = 13
a.b.c.u2 = 16
a.b.c.u3 = 18
a.b.c.u4 = 20
a.b.c.u5 = 21
a.b.c.u6 = 22
Run Code Online (Sandbox Code Playgroud)

我希望得到 a.b.c.$u价值> = 20的全部.

我如何使用石墨功能?

erb*_*dex 6

currentAbove(seriesList,n)的

采用一个度量标准或通配符seriesList,后跟一个整数N.在传递的所有度量标准中,仅绘制在指定时间段结束时值大于N的度量标准.

&target=currentAbove(server*.instance*.threads.busy,50)
Draws the servers with more than 50 busy threads.
Run Code Online (Sandbox Code Playgroud)

在您的情况下,这将成为 -

currentAbove(a.b.c.u*,20)
Run Code Online (Sandbox Code Playgroud)