Hello Guys,
I am using Grafana with the help of InfluxDB to visualize the data of a weatherstation. I was saving data after each 5 min to influxdb. But now i want to visulaize the data pro day.
For this I have used the following query:
SELECT sum(“rain”) FROM “M1” WHERE (“nodeID” = ‘n_10’) AND $timeFilter GROUP BY time(24h)
Problem: Unfortunately i have saved the data into influxdb in string format. It should be in integer format.
Could anyone help me with a solution. I dont want to make calculation on excel, its time taking and i have a lot of data.
Thank you.