Reporting

Is it possible to configure alert emails to be sent out when state changes?

mloon
New Member

At the moment, we get alerts from Splunk when the state is warning/critical. These emails are sent every configured period. Is it possible to configure the alerts so that there is only an email sent when the state changes (eg from normal to warning, from warning to critical, from critical to normal, etc)?

Tags (3)
0 Karma

renjith_nair
Legend

@mloon,

If you have continuous state/status field, use streamstats to get the last status and compare it with the current one.
Try below sample SPL and lets know if it work for you.

|makeresults |eval status="normal,warning,critical,critical,normal,normal"| makemv status delim=","|mvexpand status
|eval _COMMENT="ALL ABOVE IS JUST TO CREATE DUMMY DATA AND NOTHING TO DO WITH ACTUAL SEARCH" 
|reverse|streamstats current=f window=1 last(status) as prev_status|reverse|eval send_alert=if(prev_status==status,0,1)

Based on this alert, you can decide whether you want to send the alert. For eg. |where send_alert==1

---
What goes around comes around. If it helps, hit it with Karma 🙂

horsefez
Motivator

Hi @mloon,

please give us some more information about the state changes you are talking about. Do the state changes happen in the eventdata?

We need some sample data before we can help you.

Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...