Splunk Search

Alerting on a percentage of events

tmenagh
Explorer

I want to craft an alert that will get the number of errors:

sourcetype="my-thing" error | stats count

and the number of not errors:

sourcetype="my-thing" NOT error | stats count

then get the percentage of the first over the second

Tags (1)
0 Karma
1 Solution

tmenagh
Explorer

I think I got it:

sourcetype="my-thing" | eval err = if(searchmatch("error"), 1, 0) | eval notErr = if(searchmatch("NOT error"), 1, 0) | stats sum(err) as errNo sum(notErr) as notErrNo | eval errorPercentage = errNo/notErrNo*100

View solution in original post

tmenagh
Explorer

I think I got it:

sourcetype="my-thing" | eval err = if(searchmatch("error"), 1, 0) | eval notErr = if(searchmatch("NOT error"), 1, 0) | stats sum(err) as errNo sum(notErr) as notErrNo | eval errorPercentage = errNo/notErrNo*100

tmenagh
Explorer

Good call, Reed!

0 Karma

reed_kelly
Contributor

Looking good. I would have thought you want errNo/count*100. If you have only errors, you will get divide by zero error instead of 100%.

0 Karma
Get Updates on the Splunk Community!

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...