假设我有以下查询:
http:/graphite.server:####/render?&target=highestCurrent(metric.path.value,3)
我遇到一个问题,石墨返回度量标准中的所有值,而不是最后三个“最大电流”。
我很难找到一个端到端的例子。通常,它们仅包含:&target=...
,因此,我认为这只是“应该工作”。
此问题的可能根源是什么?
答案 0 :(得分:0)
应该绘制3个最高指标/系列的所有值。不是来自一个系列的3个指标。
highestCurrent(seriesList,n)
Takes one metric or a wildcard seriesList followed by an integer N. Out of all metrics passed, draws only the N metrics with the highest value at the end of the time period specified.
Example:
&target=highestCurrent(server*.instance*.threads.busy,5)
Draws the 5 servers with the highest busy threads.