Splunk Search

How to change the source value in my search when I change the date time range?

sfatnass
Contributor

hi

I want to change the source on my request when the timechange.

I'll explain:
I have a lot of directories named by date and I use this as the source.

Example:

index=my_index source="20160513"

When I change the date, I need to change the source value.
So, if the earliest time search equals 20160522, then my search will be:

index=myindex source="20160522"

My test is:

index=myindex |addinfo | eval time1=strftime(info_min_time, "%Y%m%d")  |where source=time1 |table field1 field2 ......

but this doesn't work for me and I don't know how I can do this.

if any body have a solution thx

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

index=myindex [| gentimes start=-1 | addinfo | eval source=strftime(info_min_time, "%Y%m%d") | table source ] | rest of your search

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

index=myindex [| gentimes start=-1 | addinfo | eval source=strftime(info_min_time, "%Y%m%d") | table source ] | rest of your search
0 Karma

sfatnass
Contributor

It works very well.
What about if I want to search one day ago?
I tried this, but it does not work:

index=myindex [| gentimes start=-1 | addinfo | eval source=relative_time(strftime(info_min_time,"-1d@d"), "%Y%m%d") | table source ]
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...