Alerting

creating alert for alert

Puvi
New Member

hi,

i have a panel with all the alert details in it.
now i want to create a separate alert for that panel like (if alerts are triggering within 10 mins span)
can you help me in this?

Tags (3)
0 Karma

woodcock
Esteemed Legend

You can get a list of all non-expired alerts like this:

| rest/servicesNS/-/-alerts/fired_alerts/-
| table trigger_time author eai:acl.owner eai:acl.app savedsearch_name sid eai:acl.sharing digets_mode id published *
| rename eai:acl.* AS *
| where trigger_time >= relative_time(now(), "-10m@m")
0 Karma

arjunpkishore5
Motivator

This should help you get started

index=_audit action="alert_fired" 
| rename ss_name AS alert_name
| sort alert_name, _time
| delta _time as timediff
| streamstats count as rownum by alert_name reset_on_change=true
| eval timediff=if(rownum==1, null(), abs(timediff))
| where timediff<600

This will give you all alerts which triggered less than 10 mins apart.

hope this helps

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...