Splunk Search

Why is this "earliest" not working?

zachsisinst
Explorer

index=myindex 
| eval createdepoch = strptime(created, "%Y-%m-%d")
| eval _time = createdepoch
| search earliest=-90d@d 
| table _time

This returns no results,  Can anyone tell me why this wouldn't work?  

Labels (1)
0 Karma

somesoni2
Revered Legend

The time range filters (earliest/latest/_index_earliest/_index_latest etc) work on base search (portion before first pipe, for both main search and subsearch) only. Unless there is a field called "earliest" returned by your base search, your query will always fail.

Assuming you want to filter result based on newly calculated _time field, try something like this:

index=myindex 
| eval createdepoch = strptime(created, "%Y-%m-%d")
| eval _time = createdepoch
| where _time>=relative_time(now(),"-90d@d")
| table _time
Get Updates on the Splunk Community!

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...