Splunk Search

How do I get the failure status for that percentile?

karthi2809
Builder

i want to calculate failure status 404 for service name .when the status is reached 90% .I need to trigger email?

index=xxx* |eventstats count(eval(Proxy)) as "totcnt" count(eval(Status="404")) as "failurecnt" by Name |stats perc90(failurecnt) as perc90_avg by Name

Tags (2)
0 Karma

somesoni2
Revered Legend

Try this (not sure if need to use percentile, just percentage should do it)
Updated

index=xxx* 
|stats count(Proxy) as "totcnt" count(eval(Status="404")) as "failurecnt" by Name 
|eval failurepercent=failurecnt*100/totcnt | where failurepercent>90

micahkemp
Champion

Unless I'm missing something, count(eval(Proxy)) could be more simply written count(Proxy), which will give the count of values in the Proxy field.

somesoni2
Revered Legend

You're correct. Didn't look for that before. Corrected.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...