SELECT min(“value”) FROM “Haustechnik.Stromzaehler.Momentanleistung_freq” WHERE $timeFilter GROUP BY time($__interval) fill(none)
Query. It finds the value 385.
But if I plot the same as a timeseries, I can find manually a value of 325.
The backend is influxdb. What could be the reason for this?
Default options are good for graph where you need values per time bucket. But you need just single value.
It is waste of resources: there is calculation of local minimums, sorting and returning of x values. But only one value from returned values will be used at the end. It can be very slow in some edge cases.