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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...