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
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...