Dashboards & Visualizations

How to find percentage and count using stats and eval?

POR160893
Builder

Hi,

I have a field "IT_Managed" and its values are "Yes" or "No".
I need the count AND percentage of events with "YES".
It appears I am not using the stats and eval commands correctly.
Here is my code:

POR160893_0-1648648876973.png

 



Can you please help?
Thanks

Labels (1)
Tags (3)
0 Karma

POR160893
Builder

 I am trying to use a subsearch to find the TOTAL value:

POR160893_0-1648729131688.png

But I am now getting the following error:

POR160893_1-1648729173251.png

 


Can you please help?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Don't do it that way!

| loadjob savedsearch="andrew_nelson:renbe:Asset Registry - Security Agent Mapping" events=false
| stats count(eval(IT_Managed="Yes")) as COMP count as TOTAL
| eval percentage=100*COMP/TOTAL
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
your search
| stats count(eval(IT_Managed="Yes")) as COMP count as TOTAL
| eval percentage=100*COMP/TOTAL
0 Karma

Marco_Develops
Path Finder

Try the following:

 

|base search ...
|stats count(IT_Managed) as TOTAL
|eval IT_Managed= if(IT_Managed == "Yes" , 1,0)
|stats sum(IT_Managed) count as COMP
|eval percentage = COMP/TOTAL* 100
|table COMP percentage

 

 -Marco

POR160893
Builder

Thanks.

I ran your query and this is what I got:

POR160893_0-1648653261202.png


I am not sure .....

Tags (1)
0 Karma

Marco_Develops
Path Finder

Yes, I forgot a space in the second stats command. After taking a second look I believe that using 1 stats command will work fine. I modified the search

| baseSearch ...
|eval IT_Managed= if(IT_Managed == "Yes" , 1,0)
|stats sum(IT_Managed) count as COMP count(IT_Managed) as TOTAL
|eval percentage = COMP/TOTAL* 100
|table COMP percentage

 

-Marco

POR160893
Builder

Thanks but the percentage is incorrect:

POR160893_0-1648656030136.png

 

0 Karma

Marco_Develops
Path Finder

Try the following: 

| baseSearch ...
|eval IT_Managed= if(IT_Managed == "Yes" , 1,0)
|stats sum(IT_Managed) count as COMP count(IT_Managed) as TOTAL
|eval percentage = (COMP/TOTAL) * 100
|table COMP percentage

 

If this helped, please accept as solution 🙂 

-Marco 

0 Karma

POR160893
Builder

No, still outputting just 100. I think the first eval is incorrect ...

0 Karma
Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...