Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show top 10 values only in grafana

Tags:

grafana

I am using grafana to display certain metrics. Sometimes the list is so big that I would need only top 10 values to be displayed. What is the option that Grafana provides for the same. I am using "Graph" panel.

like image 200
ambikanair Avatar asked May 08 '17 05:05

ambikanair


1 Answers

This is not an option in Grafana as you would do this with the query language of the time series database that you are using.

  • Graphite has the limit function.

  • InfluxDB has the limit and slimit functions

  • ElasticSearch has the Size option:

enter image description here

like image 116
Daniel Lee Avatar answered Sep 30 '22 12:09

Daniel Lee