Alerting

Why is Splunk not allowing me to specify the trigger condition "Threads > 1600" for my custom alert?

B83896
New Member

Hi,

I am using the following search for monitoring number of Threads on a server:

index=perfmon host=CCEVPSYCA01 sourcetype="Perfmon:System" counter=Threads| eval Date=strftime(_time, "%Y-%m-%d %H:%M") | rename Value AS Threads | table Date, Threads | SORT BY Date

and I want to set up an alert to be triggered when conditions are met (custom alert): Threads > 1600. But Splunk does not allow me to specify this condition in the alert "threads > 1600".

Could you please help me in resolving this? Thanks,

0 Karma
1 Solution

renjith_nair
Legend

Try providing the condition as search Threads > 1600 in the condition box.
Another way to do is including the condition in the search itself and alert when Number of Resultsis greater than '0'

ie

index=perfmon host=CCEVPSYCA01 sourcetype="Perfmon:System" counter=Threads| eval Date=strftime(_time, "%Y-%m-%d %H:%M") | rename Value AS Threads | table Date, Threads | SORT BY Date|search Threads > 1600

and then selecting the drop down Number of Results is greater than 0

---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

Try providing the condition as search Threads > 1600 in the condition box.
Another way to do is including the condition in the search itself and alert when Number of Resultsis greater than '0'

ie

index=perfmon host=CCEVPSYCA01 sourcetype="Perfmon:System" counter=Threads| eval Date=strftime(_time, "%Y-%m-%d %H:%M") | rename Value AS Threads | table Date, Threads | SORT BY Date|search Threads > 1600

and then selecting the drop down Number of Results is greater than 0

---
What goes around comes around. If it helps, hit it with Karma 🙂

B83896
New Member

Hello,
Great! Thanks - first option worked for me!

0 Karma

renjith_nair
Legend

Good to know. Please accept as answer so that the thread will be closed

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

B83896
New Member

Done, thank you!

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...