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!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...