Splunk Search

How to get duration from start and time two different events and different index based on the common filed?

Sekhar
Explorer

I have two events one is 

Index=x source type= xx "String" extacted fields s like manid,actionid,batch I'd

2nd event 

Index=y source type=y " string recived" extacted fields like manid ,actionid

 

Calculate the time from 2nd event -1 event . 

While calculating the time mandid should same 

 

Labels (1)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

Something like

(index=x source type= xx "String") OR (index=y source type=y " string recived")
| stats values(_time) as time values(actionid) as actionid values(batchid) as batchid by manid
| eval duration = max(time) - min(time)

View solution in original post

Tags (1)
0 Karma

yuanliu
SplunkTrust
SplunkTrust

Something like

(index=x source type= xx "String") OR (index=y source type=y " string recived")
| stats values(_time) as time values(actionid) as actionid values(batchid) as batchid by manid
| eval duration = max(time) - min(time)
Tags (1)
0 Karma

Sekhar
Explorer

Result getting fine but want based on the below condition 

Calculate the diffe bw start event and end event grouped by manid. And count number mandate exceeding different above 30 seconds 

 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Then you add calculation based on duration.

| eval excessive = if(duration > 30, duration, null())
| stats count(excessive) as excess_count avg(excessive) as excess_avg by manid
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 ...