Splunk Enterprise Security

Ratios based on field values in Stats

JeffBothel
Explorer

I am looking to get a ratio in something akin to the following method but this is throwing errors from Splunk ES:

eval(count(eval(if(action!="success",1,null())))/count(eval(if(action=="success",1,null()))))

Anyone have any suggestions as to what might be the problem?

0 Karma

mayurr98
Super Champion

Use this query as a reference to calculate ratio:

basesearch | stats count(eval(if(action!="success",1,null))) as count1 count(eval(if(action="success",1,null))) as count2 | eval ratio=round(count1/count2,2) | fields ratio

Let me know if it works!

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 ...