How can I aggregate metrics per day in a Grafana table?

后端 未结 1 1731
南旧
南旧 2021-02-19 23:39

I am charting data with a Grafana table, and I want to aggregate all data points from a single day into one row in the table. As you can see below my current setup is displaying

相关标签:
1条回答
  • 2021-02-19 23:39

    You can use the summarize function on the metrics panel. Change the query by pressing the + then selecting transform summarize(24h, sum, false) this will aggregate the past 24hr data points into a single point by summing them.

    http://graphite.readthedocs.io/en/latest/functions.html#graphite.render.functions.summarize

    results

    0 讨论(0)
提交回复
热议问题