Splunk Search

How to specifiy two different dates in a single search?

chetanhonnavile
Explorer

I have to fetch results for an event happened on Sep. 1 and Sep. 6.

How do I specify two dates in single query?

Tags (2)
0 Karma

lfedak_splunk
Splunk Employee
Splunk Employee

Hey @chetanhonnavile, if they solved your problem, remember to "√Accept" an answer to award karma points 🙂

0 Karma

blacknight659
Explorer

Probably the best method is to use eval and strptime / strftime to make the time field you need. Then search against that.

Method:

  1. Base Search
  2. Eval Strftime
  3. Search date1 OR date2

Example:

index=ABC "error"
| eval date=strftime(_time, "%Y-%m-%d")
| search date="2017-09-01" OR date="2017-09-06"

Here are some pretty good links to help you out if you ever want to research / play. Also, you may want to use this against a time in your log rather than the default _time field.

http://www.foragoodstrftime.com/
https://answers.splunk.com/answers/56072/time-format-conversion-using-strptime.html

sbbadri
Motivator

@chetanhonnavile

try this below query. Just to show the results used head 1.

index=_internal earliest=1504238400 latest=1504324799 | head 1 | append [search index=_internal earliest=1504670400 latest=1504756799 | head 1]

MuS
Legend

Hi chetanhonnavile,

you can use multiple time modifiers in your search, just try this:

 your search here earliest="09/1/2017:00:00:00" latest="09/1/2017:23:59:59" OR earliest="09/6/2017:00:00:00" latest="09/6/2017:23:59:59"  

This will return the events from your base search on the 1. September or the 6. September. You can read more about the time modifiers here http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/SearchTimeModifiers

Hope this helps ...

cheers, MuS

blacknight659
Explorer

Does this produce a window of time? I think the user wants to see either X OR Y for date.

0 Karma

MuS
Legend

Just try it and you will see that it just gets events from either the 1. September OR the 6. September in the most efficient way 😉

cheers, MuS

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

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...