Graphite URL API中是否有一个函数允许我们忽略某个范围内(或外)的值?
答案 0 :(得分:6)
我相信您可以查看removeAboveValue
和removeBelowValue
功能。
例如,要排除低于2且高于10的值:
http://host/render&target=removeAboveValue(removeBelowValue(a.b.c, 2), 10)
在范围内忽略值有点困难,但可以通过汇总先前已过滤数据的系列(未经测试)来实现:
http://host/render&target=sum(removeAboveValue(a.b.c, 2), removeBelowValue(a.b.c, 10))