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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...