Alerting

Trigger alert if value is above for a period of time

jbrolland
Engager

Hello

I would like to trigger an alert if value "pending" is above a value ( > 500) for a period of time (> 5 min).

If during those 5 minutes, the value go under 500 I don't want the alert to be triggered.

 

Here is the alert if above 500

index=my_index sourcetype=source:type "request(s) still pending"

| rex field=_raw "(?ms)^(?:[^ \\n]* ){7}(?P<pending>\\d+)" | where pending > 500

 

How can I add the alert only if value is above 500 for more than 5minutes?

 

Labels (1)
0 Karma
1 Solution

manjunathmeti
Champion

hi @jbrolland ,
You can schedule the alert every five minutes and in the search query check if the minimum pending value is greater than 500 in the last five minutes. If yes, then raise an alert.

index=my_index sourcetype=source:type "request(s) still pending"
| rex field=_raw "(?ms)^(?:[^ \\n]* ){7}(?P<pending>\\d+)" 
| stats min(pending) as min_pending_value
| where min_pending_value > 500

 

If this reply helps you, an upvote/like would be appreciated. 

View solution in original post

manjunathmeti
Champion

hi @jbrolland ,
You can schedule the alert every five minutes and in the search query check if the minimum pending value is greater than 500 in the last five minutes. If yes, then raise an alert.

index=my_index sourcetype=source:type "request(s) still pending"
| rex field=_raw "(?ms)^(?:[^ \\n]* ){7}(?P<pending>\\d+)" 
| stats min(pending) as min_pending_value
| where min_pending_value > 500

 

If this reply helps you, an upvote/like would be appreciated. 

jbrolland
Engager

Very smart, thanks!

0 Karma
Get Updates on the Splunk Community!

Index This | When is October more than just the tenth month?

October 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What’s New & Next in Splunk SOAR

 Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us for an ...