Splunk Search

How to eval time from timepicker and use it in search?

kimberlytrayson
Path Finder

I need to eval time in hours between now and earliest time from timepicker to use it in search.
e.g. if timepicker set to “last 24 hours” - evaluated time should be 24h, for “last 2 days” - 48h, etc. Thank you!

Tags (1)
0 Karma

woodcock
Esteemed Legend

Like this:

... | addinfo | eval hours_between_now_and_earliest = round(((now() - info_min_time) / 60 / 60), 2) | fields - info_*
0 Karma

kimberlytrayson
Path Finder

Thanks! Can you explain what this part is doing "| fields - info_*"?

0 Karma

woodcock
Esteemed Legend

There was a typo; I was using earliest when I should have been using info_min_time. I edited my answer and fixed it.

0 Karma

woodcock
Esteemed Legend

It is getting rid of the info_* fields that were added by the call to addinfo.

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@kimberlytrayson

You can try addinfo command.

info_min_time = The earliest time boundary for the search.
info_max_time = The latest time boundary for the search.

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/addinfo

0 Karma

kimberlytrayson
Path Finder

Sorry, it will be epoch time, right?

0 Karma
Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...