Splunk Search

Calculate percentage of total and display as pie chart

balash1979
Path Finder

I have total of 7M users. My splunk query shows the count of completed users. I want to draw a pie chart showing completed users vs Total users. 

So far I have gotten this far 

    << my query>> | eval TotalMax=7000000 | stats count(Path) as completed | eval perc=(completed/TotalMax)/100 | table completed,perc

count(Path) which is same as completed comes out as 200000
But perc is not getting calculated.  Am I missing anything ?

--Sunray

Labels (1)
0 Karma
1 Solution

scelikok
SplunkTrust
SplunkTrust

Hi @balash1979,

After stats command only fields  that stats outputs are exist. On your case you are loosing TotalMax field, so perc cannot be calculated. Below should work;

    << my query>> 
| stats count(Path) as completed 
| eval TotalMax=7000000
| eval perc=(completed/TotalMax)/100 
| table completed,perc

OR

    << my query>> 
| eval TotalMax=7000000 
| stats count(Path) as completed values(TotalMax) as TotalMax
| eval perc=(completed/TotalMax)/100 
| table completed,perc

 

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.

View solution in original post

Tags (1)

balash1979
Path Finder

Thanks. If i add "table completed, perc" , i can get the correct data. 

How can i display this as a pie chart ? in the pie chart, i would like to see % completed out of the total. Thanks

0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @balash1979,

After stats command only fields  that stats outputs are exist. On your case you are loosing TotalMax field, so perc cannot be calculated. Below should work;

    << my query>> 
| stats count(Path) as completed 
| eval TotalMax=7000000
| eval perc=(completed/TotalMax)/100 
| table completed,perc

OR

    << my query>> 
| eval TotalMax=7000000 
| stats count(Path) as completed values(TotalMax) as TotalMax
| eval perc=(completed/TotalMax)/100 
| table completed,perc

 

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.
Tags (1)
Get Updates on the Splunk Community!

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...