Do you want to add up all values for a given day? You can try the Transformation: Reduce → Total. You could display amount in a stat panel. You could also show the difference between the first and last value of a month by doing Reduce → Difference. Try some of these and see what you get.
Hello,
“Almost” correct : 3180 is the sum for 19/11/2021.
But I’d expect to get to line 1 per date (in my case 2) and a correct Time (ie 19/11/2021 and not 16/07/2177…)
But no. i dont want just a sum for alle timeseriesdata. I wanted to group the timeseries per day and get the sum per day.
Thought i could use “convert field type” but it seems that it doesnt convert it to the date format “YYYY-MM-DD”.
@sebastiencarecolin Have you tried inserting a GROUP BY clause in your query, such as select sum(value) from your_measurement WHERE $timeFilter group by time (1d)
I played around with the InfluxDB dashboard on play.grafana.org and you can group the data by day, hour, etc.