SQL to get change rate

i have a measurement that it’s a counter (always increasing) and instead of returning the actual value of the counter i want to get the change rate. i can’t do this at graph level, i need to do this at backend SQL-query level. what SQL query can i use to get the change rate?

Hello @vvilaplana,
To get the derivative or rate you can do something like:

SELECT time, (co_delta_v / delta_t_ns) * 1000000000 as co_rate, (temperature_delta_v / delta_t_ns) * 1000000000 as temperature_rate FROM
(SELECT (lag(co, 1) OVER (ORDER BY time))  - co  as co_delta_v,
  	      (lag(temperature, 1) OVER (ORDER BY time))  - temperature  as temperature_delta_v,
             (lag(cast(time as bigint), 1) OVER (ORDER BY time)) - cast (time as bigint) as delta_t_ns,
                time
FROM airSensors WHERE sensor_id='TML0100' AND time >= ('2023-02-01 18:35:31.000')::TIMESTAMP
) 
1 Like