Splunk Search

How to modify query to tabulate error codes and percent failure?

9jamie
Explorer

I am trying to create a query that returns a table showing counts of different error codes and percentage of transactions that are failing (error != 0) for each service. 

service 0 3100 2000 1200 % Failure
Foo 1000 12 0 0 1.2%
Bar 100 0 3 2 5.0%

 

My query which returns the above table is: 

index=my_index | where error=0 OR error!=0 | chart count by service, error | eval "% Failure"  = round(('3100'+'2000'+'1200')/('3100'+'2000'+'1200'+'0'),2)."%"

 

How can I modify this query so that I don't need to hardcode each error code into the last part of the query, as error codes may vary?

Labels (2)
Tags (1)
0 Karma
1 Solution

johnhuang
Motivator
index=my_index error=*
| chart count by service, error
| addtotals fieldname="event_total"
| eval "% Failure"=round((event_total-'0')/(event_total)*100, 2)."%"

View solution in original post

johnhuang
Motivator
index=my_index error=*
| chart count by service, error
| addtotals fieldname="event_total"
| eval "% Failure"=round((event_total-'0')/(event_total)*100, 2)."%"
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

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

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...