Getting Data In

Using an earliest_time and latest_time parameter, can the output be the amount of time between these 2 events?

sumanssah
Communicator

Hi All
I want to extract result for period of co-relation rule i.e:

"dispatch.earliest_time" - "dispatch.latest_time"

Example :
dispatch.earliest_time = "63m@m"
dispatch.latest_time = "3m"

Required result is "63m@m" - "3m" = 60m

Thanks in advance.

0 Karma

DalJeanis
Legend

If you are doing it inside a search, you can do this to get the range in seconds between earliest and latest for the search.

| addinfo
| eval result = info_max_time - info_min_time 
| eval resultMin = round(result/60)

sumanssah
Communicator

Thanks for response.
I tried you suggestion, however getting below mentioned error

Error in 'eval' command: Typechecking failed. '-' only takes numbers.

0 Karma

DalJeanis
Legend

That's because you have no upper bound on the time, so info_max_time has a value that is represented as "+infinity". I've added makeresults onto the front for testing.

 | makeresults 
 | addinfo
 | eval result = if(isnum(info_max_time),info_max_time,now()) - info_min_time  
 | eval resultMin = round(result/60)

The above assumes there are no future-dated transactions in the results. If future-dated events are possible, then you can do something like this...

 | makeresults 
 | eval _time = relative_time(_time,"+2d@d")
 | rename COMMENT as "The above just creates test data with future dates."

 | rename COMMENT as "Get the highest event date/time, and get the time range from the search."
 | eventstats max(_time) as maxtime 
 | addinfo
 | rename COMMENT as "Calculate time range from the search (if not all time), using the maximum event _time if it is future , else use now()."
 | eval result = case(isnum(info_max_time),info_max_time,  maxtime>now(),maxtime,  true(),now()) - info_min_time  
 | eval resultMin = round(result/60)
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...