Alerting

Alert when sum of values is greater than 25% of sum of other values

kelseycasco
New Member

I would like to make an alert that is triggered when the sum of some values is greater than 25% of the sum of another set of values. Basically, I would like to alert the user when the quantity of scrap produced is greater than 25% of however much quantity is produced. Right now I have the following in a search:

index=wipscrap OR index=componentscrap
| stats sum(Scrap) AS totalscrap sum("Qty Good") AS totalqty
| eval scrapallowed=totalqty*.25

This gives me a table with three columns and the sum of the values for each column. Do I need more information in my search for this alert to work? What would my custom trigger be to make this work?

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi kelseycasco,
you could add at the end of your search

| where totalscrap>scrapallowed

in this way, if you have results alert is triggered otherwise it's ok.
So you can set an alert when results are greather than zero.

Bye.
Giuseppe

0 Karma

Sukisen1981
Champion

just add a where condition
index=wipscrap OR index=componentscrap
| stats sum(Scrap) AS totalscrap sum("Qty Good") AS totalqty
| eval scrapallowed=totalqty*.25 |where totalscrap >scrapallowed
Trigger alert if results are more than 0 should do it

0 Karma
Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...