Alerting

to set an alert if event B doesn't happen post happening of event A

trackvk
New Member

I would like to set up an alert when a HeartBeat MISSED event happens in a log file but HeartBeat REACQUIRED event doesn't happen max within 1min span indicating an issue.

so wanted my search to alert i tried

...|rex "HEARTBEAT\s+(?\S+).*?(?MISSED|REACQUIRED)" | stats latest(_time) AS time latest(action) AS action BY hb | eval age=now()-time | where age>(1*60) AND action=MISSED

Labels (1)
Tags (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Perhaps this will help. It uses dedup to find the most recent action for each hb then keeps only the MISSED actions. Finally, only events older than a minute are kept.

... | rex "HEARTBEAT\s+\S+.*?(?<action>MISSED|REAQUIRED)" 
| dedup hb
| where action="MISSED"
| eval age = now() - _time
| where age > 60
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Fall Into Learning with New Splunk Education Courses

Every month, Splunk Education releases new courses to help you branch out, strengthen your data science roots, ...

Super Optimize your Splunk Stats Searches: Unlocking the Power of tstats, TERM, and ...

By Martin Hettervik, Senior Consultant and Team Leader at Accelerate at Iver, Splunk MVPThe stats command is ...

How Splunk Observability Cloud Prevented a Major Payment Crisis in Minutes

Your bank's payment processing system is humming along during a busy afternoon, handling millions in hourly ...