Splunk Search

Facing issue with my Serach

Amit79
Loves-to-Learn Everything

Hello All,

Below is my alert script, and I dont want to have any alerts during night 11:50 to 00:25 midnight, however I am getting them and its triggering alert to the support team. this is the daily restart window for interfaces and no need of alerts during this time.

index=XXX sourcetype=XXX  punct="--_::.,_=\"\""
| rex field=_raw "\d*-\d*-\d*\s(?<hour>\d*:\d*):\d*\S\d*\S"
| search hour!=23:50
| search hour!=00:15
| table _time SITE

Appreciate help on this.

 

Below is the sample event

2024-03-20 06:32:08.046, SITE="UU3"
Tags (1)
0 Karma

sjringo
Contributor

Find out what the current time is then compare to you window times:

| eval timeNow = strftime(now(), "%H%M")

| where (timeNow < 2350 AND timeNow > 0015)   ```Outside of main. window```

 

0 Karma

Amit79
Loves-to-Learn Everything

correction : no need of alerts during 23:50 to 00:15

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...