Splunk Search

When calculating a percentage of status codes with the timechart command, how come the result doesn't sum to 100%?

Mohsin123
Path Finder

Hi ,

i am trying to calculate a percentage of status codes over time, but the calculation doesn't sum up to 100% .
Can anyone suggest what i am doing wrong here?

index=idxix_iod sourcetype IN ("prod") status IN(200,201,204,302,400,401,403,404,429,500) 
| chart useother=f span=1h count over _time by status 
| addtotals| timechart span=1h values(eval(200*100/Total)) AS 200 ,
    values(eval(201*100/Total)) AS 201, values(eval(204*100/Total)) AS 204,values(eval(302*100/Total)) AS 302,values(eval(400*100/Total)) AS 400,values(eval(401*100/Total)) AS 401,values(eval(403*100/Total)) AS 403,values(eval(404*100/Total)) AS 404,values(eval(429*100/Total)) AS 429,values(eval(500*100/Total)) AS 500
Tags (1)
0 Karma
1 Solution

maciep
Champion

I think splunk maybe just doing the math exactly as you have typed in the timerchart. Trying wrapping those fields in single quotes.

...| timechart span=1h values(eval('200'*100/Total)) AS 200 ,values(eval('201'*100/Total)) AS 201  .....

View solution in original post

0 Karma

maciep
Champion

I think splunk maybe just doing the math exactly as you have typed in the timerchart. Trying wrapping those fields in single quotes.

...| timechart span=1h values(eval('200'*100/Total)) AS 200 ,values(eval('201'*100/Total)) AS 201  .....
0 Karma

Mohsin123
Path Finder

thankyou so much

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...