We use InfluxDB + Grafana to store and plot sensor values. We would like to detect when a given sensor returns a constant value, as this is typical of a faulty sensor.
I’m setting a daily alert in Grafana using an InfluxQL query to check the last day of data.
My first intent is to use difference or derivative function, then either sum the absolute values or set a threshold to detect if it is a constant zero.
Looks like those functions don’t work as I expect because they require an aggregation method, while I want to operate on the raw values.
Should I be using mean anyway? Or last? I performed a few tests in Grafana explore mode, and it is a bit unclear to me what the aggreg method does when combined with difference.
SELECT difference(mean("value")) FROM "device_frmpayload_data_temperature" WHERE $timeFilter GROUP BY time($__interval)
and this
SELECT difference("value") FROM "device_frmpayload_data_temperature" WHERE $timeFilter GROUP BY time($__interval)
fails with
aggregate function required inside the call to difference
I want to operate on raw data, not mean, and I don’t understand the need for the aggregation, and I couldn’t find the docs for the InfluxQL functions, only the Flux ones.