Splunk Search

How to exclude maintenance time from my query?

tchintam
Path Finder

Say suppose, I have a inputlookup which has start_date, end_date, start_time and end_time. This is my scheduled maintenance time. I want to include this in my main query to remove this time from this main query. How do I do that?

Tags (2)
0 Karma
1 Solution

tiagofbmm
Influencer

Use the following:

| inputlookup yourlookup
| eval earliest=strptime(End_Date + " " + End_Time,"%Y-%m-%d %H:%M:%S"), latest=strptime(Start_Date + " " + Start_Time,"%Y-%m-%d %H:%M:%S")
| return earliest, latest

That will give you the earliest and latest fields, and so you can pass them to your main query, like this:

Main query example

index=_internal [ 
 | inputlookup yourlookup
    | eval earliest=strptime(End_Date + " " + End_Time,"%Y-%m-%d %H:%M:%S"), latest=strptime(Start_Date + " " + Start_Time,"%Y-%m-%d %H:%M:%S")
    | return earliest, latest
]

View solution in original post

tiagofbmm
Influencer

Use the following:

| inputlookup yourlookup
| eval earliest=strptime(End_Date + " " + End_Time,"%Y-%m-%d %H:%M:%S"), latest=strptime(Start_Date + " " + Start_Time,"%Y-%m-%d %H:%M:%S")
| return earliest, latest

That will give you the earliest and latest fields, and so you can pass them to your main query, like this:

Main query example

index=_internal [ 
 | inputlookup yourlookup
    | eval earliest=strptime(End_Date + " " + End_Time,"%Y-%m-%d %H:%M:%S"), latest=strptime(Start_Date + " " + Start_Time,"%Y-%m-%d %H:%M:%S")
    | return earliest, latest
]

tiagofbmm
Influencer

Please let me know if the answer was useful for you. If it was, accept it and upvote. If not, give us more input so we can help you with that

0 Karma

tchintam
Path Finder

Thanks for this.

0 Karma

p_gurav
Champion

Is it possible to provide sample data for csv?

0 Karma

tchintam
Path Finder

I already have data in that lookup.

Say example:

Name End Date End Time Start Date Start Time

Dennis 2017-08-04 17:00:00 2017-07-04 06:00:00

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...