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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...