Splunk Search

using addcoltotals

dolj
Explorer

Can you leverage the total derived using the addcoltotals command to support other calculations? i.e. can you use it to calculate a percentage? 

| addcoltotals count labelfield="total"
| eval percent=((count/total)*100)
| table host count percent

 

 

Tags (1)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

You can't use the total calculated by addcoltotals as it's in a new row at the bottom of the table, however, as @richgalloway the typical way to calculate percentages is to use eventstats to add up all the counts, so that the total is added to _every_ row in your data set, which you can then calculate the percentages with.

Then discard that calculated total field if you no longer need it

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Yes, the output of the addcoltotals command can be used to perform calculations.  The sample code, however, won't work.  That's because the value of the "total" field created by addcoltotals is text (the label) rather than a number so the eval will fail.

Another way to get percentages is to use eventstats to compute the total then eval the percentage.

| eventstats sum(count) as total
| eval percent=((count/total)*100)
| table host count percent

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...