Splunk Search

How to use delta or another search command to find the difference between the most recent event and the event prior?

_dave_b
Communicator

Hello. I'm trying to find the time delta between the most recent event and the event prior to it. Delta sounds like it would do the job, but is giving me 'null' for the most recent event.

i.e.,

source="all_month.csv" host="keyw-h5pzdv1" sourcetype="csv" place=*California* | delta _time AS timeDeltaS p=1 | eval timeDeltaS=abs(timeDeltaS) | eval timeDelta=tostring(timeDeltaS, "duration")  | table timeDelta, _time

returns this:

                2015-11-10 10:08:13.220
00:34:58.310    2015-11-10 09:33:14.910

but I want it to return this:

00:34:58.310    2015-11-10 10:08:13.220
00:48:43.870    2015-11-10 09:33:14.910

So that it shows that the time between the latest event (at 10:08) and the one before it (at 9:33) is 34:58, and it lines up with the current event.

Is there a way I can use this with delta or some other command?

Thanks for your help

0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

source="all_month.csv" host="keyw-h5pzdv1" sourcetype="csv" place=*California* | reverse | streamstats current=f last(_time) AS prevTime | eval timeDelta = tostring(_time - prevTime, "duration") | table timeDelta, _time | reverse

View solution in original post

0 Karma

woodcock
Esteemed Legend

Like this:

source="all_month.csv" host="keyw-h5pzdv1" sourcetype="csv" place=*California* | reverse | streamstats current=f last(_time) AS prevTime | eval timeDelta = tostring(_time - prevTime, "duration") | table timeDelta, _time | reverse
0 Karma

jeffland
SplunkTrust
SplunkTrust

You'll have to specifically tell splunk to use the current time for the delta of your most recent event, something like

... | delta _time AS timeDeltaS p=1 | eval timeDeltaS=coalesce(abs(timeDeltaS),now()-_time) | eval timeDelta=tostring(timeDeltaS, "duration") | table timeDelta, _time
0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...