Collectd has different data source types like Gauge, Derive, Counter and Absolute.
Lets take derive data source type. It basically gives rate of change. i.e (new_value - old_value ) / (new_time - old_time). All I am interested is only in the numerator part. I want to know the (new_value - old_value) without having the time factor in the denominator. IS there anyway I can achieve this through collectd?
Thanks