Splunk Search

using eval to calculate time between events not working

Mike6960
Path Finder

I am trying to use eval to calculate the time between events. Those events have a unique ID.
This is the sarch that I have now:

 <my search> 
| eval Test =if(message.information=="some_data",_time,null()) 
| eval Test2=if(message.information="some_data_2" ,_time,null()) 
| eval Test3 = Test - Test2 
| table _time Test Test2 Test3

I am doing something wrong I guess because I only see values in the _time column, the rest is empty.
alt text

Tags (1)
0 Karma
1 Solution

MuS
Legend

Hi Mike6960,

you need to put your message.information fields in single quotes ' like this:

<my search> 
 | eval Test =if('message.information'=="some_data",_time,null()) 
 | eval Test2=if('message.information'="some_data_2" ,_time,null()) 
 | eval Test3 = Test - Test2 
 | table _time Test Test2 Test3

because they contain a . and this is a special case when using eval()

Take a look at this run everywhere SPL:

| makeresults 
| eval message.information="1", foo="2" 
| eval Test =if('message.information'=="1",now(),null()) 
| eval Test2=if('message.information'=="2" ,null(),relative_time(now(), "-1sec")) 
| eval Test3 = Test - Test2 
| table _time Test Test2 Test3

Hope this helps ...

cheers, MuS

View solution in original post

MuS
Legend

Hi Mike6960,

you need to put your message.information fields in single quotes ' like this:

<my search> 
 | eval Test =if('message.information'=="some_data",_time,null()) 
 | eval Test2=if('message.information'="some_data_2" ,_time,null()) 
 | eval Test3 = Test - Test2 
 | table _time Test Test2 Test3

because they contain a . and this is a special case when using eval()

Take a look at this run everywhere SPL:

| makeresults 
| eval message.information="1", foo="2" 
| eval Test =if('message.information'=="1",now(),null()) 
| eval Test2=if('message.information'=="2" ,null(),relative_time(now(), "-1sec")) 
| eval Test3 = Test - Test2 
| table _time Test Test2 Test3

Hope this helps ...

cheers, MuS

Mike6960
Path Finder

@MuS Thanks, this works. I now only have to convert to normal time, because I get a number as result. Is there a way to show one line per ID? What I mean is that in the example I gave there are always tow events per ID. Ik want one line per ID.

0 Karma

MuS
Legend

Sorry, but there is no id in this question and I also don't know what your events look like or your expected output looks like. This is really up to you to figure it out or accept this answer and post a new one with more details.

cheers, MuS

0 Karma

Mike6960
Path Finder

Ok, thank you for your help with my initial question

0 Karma

MuS
Legend

You're welcome 🙂

cheers, MuS

0 Karma

Mike6960
Path Finder

@MuS , also the field Test3 remains empty...

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 ...