Splunk Search

How to subtract times for different events

xvxt006
Contributor

Hi,

i have multiple events for each order and i want to subtract start and end events for each order. So i have created a filed called "action" and which gives whether it is a start or end event. So the value for "action" field would be start or end. i have converted time to numeral number but i am not sure how to get times for start and end and then subtract for each order to calculate the latency. i have used the query below. but not sure how to move forward. Any suggestions please.

| convert mktime(_time) as T1 | eval Type=if(action=start,"start","end") | stats values(T1) as Time by Type, Order | eval Latency = ("Time: start" - "Time: end") |

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this (assuming the value of the field Type is either 'start' or 'end')

your base search | chart first(_time) over action by OMSOrder | eval latency=end-start

View solution in original post

somesoni2
Revered Legend

Try this (assuming the value of the field Type is either 'start' or 'end')

your base search | chart first(_time) over action by OMSOrder | eval latency=end-start

xvxt006
Contributor

i got it. i have used | convert dur2sec(Latency)

somesoni2
Revered Legend

The latency calculated here will be seconds already (as end and start are epoch time). You want to format the latency value to any specify format? If you want to format it as duration, your can use this in the search.

after chart command | eval latency=tostring(end-start,"duration")

0 Karma

xvxt006
Contributor

One question is, i get the latency and when i use strftime i am getting the actual time but not the duration in secs or millli seconds. is there any function for that

0 Karma

xvxt006
Contributor

Awesome..Simple is better

0 Karma

strive
Influencer

Since start occurs first and end in the last, can you try this simple approach...
Your search... | stats max(_time) as End, min(_time) as Start by OMSOrder | eval Latency = End - Start

strive
Influencer

_time is already in epoch format right? why do you need to convert?

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