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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...