Splunk Search

Stats StatusCode error Rate

dpdwibedy
Explorer

Hi There,

Need help to find the  status code error rate  where  status code is >400.

I have below Query to time chart the error rate  , which works fine...

index=apache_core  userAgent!="nginx/*" source="*access.log*"  requestURI!="/web/app*" NOT (requestURI="/api/xyz/*"  OR requestURI="/api/yyy/*"  AND statusCode=404) earliest=-30m latest=now | timechart span=5m limit=0 eval((count(eval(statusCode>=400)) / count()) * 100) as ErrorRate
 
But , to  create an alert , I don't want the time chart  , just the  error rate  in last 30 mins.
 
the stats count with the eval statement doesn't work.
 
Thanks,
DD

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Add | fields ErrorRate to the end of the query.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

For an alert, replace timechart with stats and eval.

index=apache_core  userAgent!="nginx/*" source="*access.log*"  requestURI!="/web/app*" NOT (requestURI="/api/xyz/*"  OR requestURI="/api/yyy/*"  AND statusCode=404) earliest=-30m latest=now 
| stats count(eval(statusCode>=400)) as errors, count as total
| eval ErrorRate = errors * 100 / total

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

dpdwibedy
Explorer

@richgalloway  ,

Thanks! for  the reply . It works , but I want only "ErrorRate" to be displayed.

Right now , it displays like this.

errors	total	ErrorRate
19056	679878	2.8028558064829276

 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Add | fields ErrorRate to the end of the query.

---
If this reply helps you, Karma would be appreciated.
0 Karma

dpdwibedy
Explorer

Thanks @richgalloway . Appreciated.

Regards,

DD

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...