Splunk Search

I want to write a search that should give me certain values at certain time

Abha11
Explorer

Hi,

I am expecting an event at 7:15 and I want write a search that should give me results as below:

 

If event arrived at 7:15 — result -1 

If event not arrived at 7:15  result - 2

if event doesn’t arrive 30mins after 7:15 - result 3 

the moment I received the event result-1

 

thank you for your help in advance.

Labels (1)
0 Karma

alonsocaio
Contributor

Hi,

Maybe you can try using the query below as base for your need:

 

...
| eval expected_date = strftime(now(), "%m-%d-%Y 7:15")
| eval expected_timestamp= strptime(expected_date, "%m-%d-%Y %H:%M")
| eval event_date = strftime(_time, "%m-%d-%Y %H:%M")
| eval event_timestamp = strptime(event_date, "%m-%d-%Y %H:%M")
| eval diff = event_timestamp - expected_timestamp
| eval result = case(diff = 0, "1", diff >= 1800, "3", 1=1, "2")
| table _time, expected_date, event_date, diff, result

 

The output result was:

_timeexpected_dateevent_datediffresult
2020-06-11 07:45:0006-11-2020 7:1506-11-2020 07:451800.0000003
2020-06-11 07:50:0006-11-2020 7:1506-11-2020 07:502100.0000003
2020-06-11 07:00:0006-11-2020 7:1506-11-2020 07:00-900.0000002
2020-06-11 07:20:0006-11-2020 7:1506-11-2020 07:20300.0000002
2020-06-11 07:15:0006-11-2020 7:1506-11-2020 07:150.0000001
0 Karma
Get Updates on the Splunk Community!

Splunk Enterprise Security(ES) 7.3 is approaching the end of support. Get ready for ...

Hi friends!    At Splunk, your product success is our top priority. With Enterprise Security (ES), we're here ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk, and empower your SOC to reach new heights! Duration: 1 hour  Prepare to ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...