In an Influx database I have watts being logged and have a CQ that creates kWh data.
I would like to graph cumulative kWh consumption during the day to show energy usage that grows throughout the day and the reset to zero each day as shown in the attached screenshot.
I am new to Influx and Grafana and have hit a deadend. Could somebody please help - is it possible and where do I start.
I am using the Integral function in the continuous query in Influx to create Wh (watt hours) out of watts but I cant see how to use it to create a cumulative sum that resets to zero each day like the saw tooth pattern in the screenshot.
SELECT kaifa-kaifa_fill as Energy FROM
(SELECT first(kaifa) as kaifa_fill from energyv2 WHERE $timeFilter group by time(1d) TZ('Europe/Amsterdam')),
(SELECT first(kaifa) as kaifa from energyv2 WHERE $timeFilter GROUP BY time($__interval))
fill(previous)