Splunk Search

How to display data value in percentage

sebastiangohhy
Engager

Hi there,
Im trying to display the data values in percentage. How can i do it?
Thanks

alt text

Tags (1)
0 Karma
1 Solution

cmerriman
Super Champion

you want Correct to be %Correct=(Correct/(Correct+Wrong)) for example?

try this:

index="cyber_wellness" sourcetype="csv"|chart count over Stage by CorrectAns
|eval %Correct=round((Correct/(Correct+Wrong))*100,2)|eval %Wrong=round((Wrong/(Correct+Wrong))*100,2)
|fields Stage %Correct %Wrong

View solution in original post

cmerriman
Super Champion

you want Correct to be %Correct=(Correct/(Correct+Wrong)) for example?

try this:

index="cyber_wellness" sourcetype="csv"|chart count over Stage by CorrectAns
|eval %Correct=round((Correct/(Correct+Wrong))*100,2)|eval %Wrong=round((Wrong/(Correct+Wrong))*100,2)
|fields Stage %Correct %Wrong

sheamus69
Communicator

You may be able to achieve this using the eventstats command.

See https://answers.splunk.com/answers/9660/stats-count-as-a-percentage-as-the-total.html for an example.

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