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!

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 ...