Alerting

Alert Recovery Notifications

keshengjie
Engager

I have a bunch of scheduled searches that occasionally trigger. Is there a way to have a recovery message sent if a subsequent scheduled search doesn't find any errors?

I need an easy way for our helpdesk to know if they should escalated these alerts.

Tags (1)
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi keshengjie

I recently had to create something similar, where it was needed to sent an up alert but only if there was down alert before. In my case I had a field named message which was used to determine if it is up or down - So this is what I did:

YourBaseSearch 
| eval isUp = if(message=="Normal","Yes","No") 
| chart latest(eval(if(isUp=="Yes",_time,null()))) as uptime earliest(eval(if(isUp=="No",_time,null()))) as downtime by domain 
| where (isnotnull(uptime) AND ( uptime >= downtime)) 
| rename domain AS Server 
| eval Status="Up again" 
| table Server Status

This saved search runs over a 2 minutes time range and sends out an alert email if in my case the checked domain is online again. Maybe this is not exactly what you asked for, but could give you a hint on how to create up alerts only if there was a down alert before.

cheers, MuS

View solution in original post

MuS
SplunkTrust
SplunkTrust

Hi keshengjie

I recently had to create something similar, where it was needed to sent an up alert but only if there was down alert before. In my case I had a field named message which was used to determine if it is up or down - So this is what I did:

YourBaseSearch 
| eval isUp = if(message=="Normal","Yes","No") 
| chart latest(eval(if(isUp=="Yes",_time,null()))) as uptime earliest(eval(if(isUp=="No",_time,null()))) as downtime by domain 
| where (isnotnull(uptime) AND ( uptime >= downtime)) 
| rename domain AS Server 
| eval Status="Up again" 
| table Server Status

This saved search runs over a 2 minutes time range and sends out an alert email if in my case the checked domain is online again. Maybe this is not exactly what you asked for, but could give you a hint on how to create up alerts only if there was a down alert before.

cheers, MuS

Get Updates on the Splunk Community!

Unlock Database Monitoring with Splunk Observability Cloud

  In today’s fast-paced digital landscape, even minor database slowdowns can disrupt user experiences and ...

Purpose in Action: How Splunk Is Helping Power an Inclusive Future for All

At Cisco, purpose isn’t a tagline—it’s a commitment. Cisco’s FY25 Purpose Report outlines how the company is ...

[Upcoming Webinar] Demo Day: Transforming IT Operations with Splunk

Join us for a live Demo Day at the Cisco Store on January 21st 10:00am - 11:00am PST In the fast-paced world ...