Alerting

Alert only if event has not been cleared within timeframe

berkdana
Engager

Looking to alert based on the following scenario:

Event 1: Device: XYZ, Status: Clear, SHA: 12345, Time: 12:30
Event 2: Device: XYZ, Status: Blocked, SHA: 12345, Time: 12:15
Event 3: Device: ZZZ, Status: Blocked, SHA: 34567, Time: 12:10
Event 4: Device CCC, Status: Blocked, SHA: 45678, Time: 12:00

Alert for Event 3 and 4, but not for Event 1 or 2 since the status changed from Blocked to Clear within a certain timeframe, say 30 min, and the Device and SHA match.

Any help appreciated!

Labels (1)
Tags (1)
0 Karma
1 Solution

manjunathmeti
Champion

Hi @berkdana,

Try this.

| eventstats max(Time) as maxTime by Device, SHA 
| where Time=maxTime AND Status=="Blocked"

Sample query:

| makeresults 
| eval _raw="Device,Status,SHA,Time
XYZ,Clear,12345,12:30
XYZ,Blocked,12345,12:15
ZZZ,Blocked,34567,12:10
CCC,Blocked,45678,12:00" 
| multikv forceheader=1 
| fields - _time, _raw, linecount 
| eventstats max(Time) as maxTime by Device, SHA 
| where Time=maxTime AND Status=="Blocked"

View solution in original post

manjunathmeti
Champion

Hi @berkdana,

Try this.

| eventstats max(Time) as maxTime by Device, SHA 
| where Time=maxTime AND Status=="Blocked"

Sample query:

| makeresults 
| eval _raw="Device,Status,SHA,Time
XYZ,Clear,12345,12:30
XYZ,Blocked,12345,12:15
ZZZ,Blocked,34567,12:10
CCC,Blocked,45678,12:00" 
| multikv forceheader=1 
| fields - _time, _raw, linecount 
| eventstats max(Time) as maxTime by Device, SHA 
| where Time=maxTime AND Status=="Blocked"

berkdana
Engager

This works as a general query, but not as a real time alert as it would alert the Blocked status ahead of the change to Cleared. Any advice on how to pause the search to allow, say fifteen minutes to see if a Cleared event pops up?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...