Alerting

Why are alert conditions unable to use the output of the search results?

Hal0n
New Member

The alert condition I want is based off of math comparing a potential maximum to actual usage. The result is dynamic, so a simple condition of X matches in X time is not applicable.

index=rtreport_summary source=rtreport extapp_type=LSAPI orig_host=us-portal*| stats min(jobs) AS min max(jobs) AS max mean(jobs) AS mean median(jobs) AS median p95(jobs) AS p95 stdev(jobs) AS stdev max(config_max_conn) AS config_max_conn max(req_total) AS req_total count(_raw) as samples by extapp_type hnum orig_host extapp_vhost _time| lookup host-cluster host AS orig_host| rename orig_host AS host| table _time cluster host hnum extapp_vhost min max mean median p95 stdev config_max_conn req_total samples | timechart  span=1m  sum(max) AS JobsInSystem  sum(config_max_conn) AS MaxWorkers | eval WorkersAvailable=(MaxWorkers - JobsInSystem)

I want to alert when WorkersAvailable < 5.

0 Karma
1 Solution

somesoni2
Revered Legend

How about adding a where clause " | where WorkersAvailable < 5" in the end of the search and set your alert go off when number of events by the search greater than 0?

View solution in original post

0 Karma

somesoni2
Revered Legend

How about adding a where clause " | where WorkersAvailable < 5" in the end of the search and set your alert go off when number of events by the search greater than 0?

0 Karma

Hal0n
New Member

Beautiful! That works properly. Please excuse my ignorance, I've got a lot to learn about this software.

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...