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!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...