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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...