Splunk Search

How to generate a search that displays a cumulative percentage column?

kualo
Explorer

Hi I have the log below.

           score
1              10     
2              22
3              33
4              36
5              55

Each event has a score range from 0~50
I want to have a cumulative percentage column showing that

greater or equal 40 : 20% 
greater or equal 30 : 60%
greater or equal 20 : 80%
greater or equal 10 : 100%
greater or equal  0 : 100%
0 Karma

sundareshr
Legend

Try this

... | bin span=10 score | stats count by score | eventstats sum(count) as total | eval percentage=round(count/total, 0)*100 | eval percentage=tostring(percentage, "commas")."%" | replace * WITH "greater or equal to "* IN score | table score percentage
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 ...