Splunk Search

Last 6 months search using new date field

utk123
Path Finder

Hello,

I am trying to use another field (LAST_FIXED_DATE) as _time in my log search. LAST_FIXED_DATE got dates from 2008, 2009.....2020.
But I just want to find data for LAST_FIXED_DATE value from last 6 months. (example: Nov 2019 till April 2020)

Below query is not working, and still shows me _time value from 2008.

My query:
main search ....
| eval _time=strptime(LAST_FIXED_DATE,"%Y-%m-%d")
| table _time

Results what I see:
2008-06-30
2008-06-01

I just want _time to show values for last 6 months, and not back to 2008.
I have tried adding earliest and latest, but then I get no results.

Tags (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The earliest and latest settings work with _time so they won't help. You'll have to constrain the results yourself using where.

main search ....
| eval _time=strptime(LAST_FIXED_DATE,"%Y-%m-%d")
| where _time > relative_time(now(), "-6mon")
| table _time
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The earliest and latest settings work with _time so they won't help. You'll have to constrain the results yourself using where.

main search ....
| eval _time=strptime(LAST_FIXED_DATE,"%Y-%m-%d")
| where _time > relative_time(now(), "-6mon")
| table _time
---
If this reply helps you, Karma would be appreciated.

Sfry1981
Communicator

try this

| eval _time = strptime(substr(LAST_FIXED_DATE,1,10), "%your%format%string%here%") | where (_time >= $info_min_time$ AND _time <= $info_max_time$)
Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...