Hello everyone,
can anyone help me with how I can get the difference to the previous value from a device that sends me the total kwh number in order to be able to calculate a consumption per specified time in the Splunk dashboard? Currently, I am only shown an ever-increasing value.
Thank you very much!
You have several options
1) The delta command to calculate the difference
2) The autoregress command to copy over value from previous result row and calculate difference manually
3) The streamstats command to do the same as 2) but in a more complicated way 😉
Ah, very good. Thank you!