Splunk Search

How to trigger an alert if Event B doesn't occur within 30 minutes of Event A?

uksteve
Engager

Hi all,

I'm looking to trigger an alert if our DHCP server loses connection with its partner DHCP for more than 30 minutes.

When the server loses connectivity we get "EventCode=20255" in the logs.

This happens fairly often due to patching, but the server would always be back within 30 minutes, so we shouldn't get an alert in that case.

When the connection is restablished we get "EventCode=20254"

The question is, how would I trigger an alert if more than 30 minutes elapses before "EventCode=20254"? 

Tags (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Here's one way, although perhaps not the most performant.

index=foo (EventCode=20254 OR EventCode=20255)
| transaction startswith="EventCode=20255" endswith="EventCode=20254
| where duration > 1800

The transaction command looks for the events in the expected order and calculates how long it was between them, putting the result into the duration field.  The where command produces results only if the events are at least 1800 seconds (30 minutes) apart.  All that's left is to trigger the alert if the number of results is not zero.

---
If this reply helps you, Karma would be appreciated.

uksteve
Engager

Thanks. Will that still alert if "EventCode=20254" hasn't been triggered?

0 Karma

richgalloway
SplunkTrust
SplunkTrust

No, it won't.

Here's another query that should work better.  It looks for the most recent EventCode and triggers if it's Down event more than 30 minutes old.

index=foo (EventCode=20254 OR EventCode=20255)
| dedup EventCode
| where (EventCode=20255 AND (now() - _time) > 1800)

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Accelerating Observability as Code with the Splunk AI Assistant

We’ve seen in previous posts what Observability as Code (OaC) is and how it’s now essential for managing ...

Integrating Splunk Search API and Quarto to Create Reproducible Investigation ...

 Splunk is More Than Just the Web Console For Digital Forensics and Incident Response (DFIR) practitioners, ...

Congratulations to the 2025-2026 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...