简体   繁体   中英

Can I display a list of sorted items in Grafana?

I would like to display a list of the X largest of a quantity, for a given time period, in grafana. Is that possible?

To make the problem more concrete, let's say I'm storing execution times for a sequence of jobs in graphite like this jobs.[one two three four five...].duration , and every time a job is finished I record the duration.

Now I would like to have a panel display the 3 most expensive jobs (from most to third most expensive), something like:

twelve:  55 sec.
three:   39 sec.
eight:   25 sec:

Is that possible?

尝试将指标列表包装到limit(sortByMaxima(...), 3)函数中

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM