Splunk Search

Find time between first and second events grouped - efficiently

noambz
Explorer

Hi,

I am getting events in the form of:

__time, app_name, action,udid

"2013-04-11 23:26:32","nxTomo HK V0.9","game_start","1234"

I wish to group them by udid and find the time in seconds between the first and second event,
even if there are more than 2 events in an group.
The rest of the events should be ignored.

Can someone help me do this efficiently?

Tags (1)
0 Karma
1 Solution

noambz
Explorer

I tried this and it seems to work.

action=app_start | streamstats avg(_time) as prevendtime window=1 current=f global=false by udid | eval timegapsecs=abs(round(_time - prevendtime,0)) | reverse | dedup 1 udid

Can anyone comment on the efficiency or correctness of this?

View solution in original post

0 Karma

noambz
Explorer

I tried this and it seems to work.

action=app_start | streamstats avg(_time) as prevendtime window=1 current=f global=false by udid | eval timegapsecs=abs(round(_time - prevendtime,0)) | reverse | dedup 1 udid

Can anyone comment on the efficiency or correctness of this?

0 Karma

jcoates_splunk
Splunk Employee
Splunk Employee
0 Karma

noambz
Explorer

Not exactly.

Let's say I have 3 app starts. They will all be grouped together and the duration will measure the time between the 1st and 3rd.

If I use maxevents=2. Then the other event will be in a separate group which needs to be discarded somehow.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...