Splunk Search

Problems using delta function

jedatt01
Builder

I'm trying to get the delta between records on a particular field, but when I add the delta function to my search it comes back with results but the new delta field is not created. I suspect it has to do with my source field. It's an energy reading (ex. 1000 kWH). I've used the trim function to cut off the kWH and just leave the number, but it's not working. I tried to use delta on another field and it works fine. Also, when I do pick a field that shows the delta, it's always a negative value, since my field is a counter like an odometer, shouldn't it be a positive value?

sourcetype="Energy_Meter" | eval TE=rtrim(Total_Energy, "kWH") | delta TE p=5 AS delta

Tags (2)
0 Karma
1 Solution

kristian_kolb
Ultra Champion

Could this be related to the fact that events come back newest-first? If you have a reading from your power meter, it tends to increase over time, and thus the delta would be negative.

day    meter    delta
4      123  
3      111      -12
2      107      -4
1      101      -6
etc etc

Try reversing search results with reverse in that case.

EDIT: had days in the wrong order.... fixed it.

Hope this helps,

Kristian

View solution in original post

kristian_kolb
Ultra Champion

Could this be related to the fact that events come back newest-first? If you have a reading from your power meter, it tends to increase over time, and thus the delta would be negative.

day    meter    delta
4      123  
3      111      -12
2      107      -4
1      101      -6
etc etc

Try reversing search results with reverse in that case.

EDIT: had days in the wrong order.... fixed it.

Hope this helps,

Kristian

jedatt01
Builder

Turns out I was forgetting a space in my rtrim. It should have been eval TE=rtrim(Total_Energy, " kWH")
Thanks!

0 Karma

jedatt01
Builder

Half way fixed. The reverse worked. Any idea why I can't do a delta on the field that I used rtrim on?

eval TE=rtrim(Total_Energy, "kWH") | delta TE p=5 AS delta

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...