Splunk Search

AddColTotal value in a new column

zacksoft
Contributor

I use addcoltotal for one of my columns .
But my result has a lot of rows, so I have to browse a lot of pages to find my sum result at the bottom.
Can we have the sum/result in a new column instead ?

Tags (1)
0 Karma
1 Solution

mayurr98
Super Champion

Hey @zacksoft

As per your comments you want total of third column in the new column right?
Let suppose your third column name is third_column

Then your query will be

Your base search with all 5 columns | eventstats sum(third_column) as total 

After this you will get the total which will be reflected at every line in the new column called total

Another solution is if you are just interested in total
Then try this

Your base search will all 5 columns | addcoltotals third_column | tail 1

Let me know if this helps you!

View solution in original post

0 Karma

mayurr98
Super Champion

Hey @zacksoft

As per your comments you want total of third column in the new column right?
Let suppose your third column name is third_column

Then your query will be

Your base search with all 5 columns | eventstats sum(third_column) as total 

After this you will get the total which will be reflected at every line in the new column called total

Another solution is if you are just interested in total
Then try this

Your base search will all 5 columns | addcoltotals third_column | tail 1

Let me know if this helps you!

0 Karma

mayurr98
Super Champion

hey, @zacksoft have you tried above two queries?

0 Karma

zacksoft
Contributor

I'm trying this now.

0 Karma

zacksoft
Contributor

Hi @mayurr98,

I tried both the queries , both works . I am more interested towards the first query.
The only thing is, it shows the sum of third row in a newly created column called total "in every row".
Is it possible to have the sum only in the first row ?

0 Karma

mayurr98
Super Champion

hey, you can show it using appendcols command but it will take longer to run.
Try this !

Your base search with all 5 columns | appendcols [Your base search with all 5 columns  | eventstats sum(third_column) as total | head 1]

otherwise, i do not think any other solution for this!
let me know if this helps you!

0 Karma

risgupta
Path Finder

you can try
| addtotals col=t row=f

Let me know if that helps you.

0 Karma

zacksoft
Contributor

I have 5 columns.
I need to calculate the total of the third column only.
And instead of seeing the total of it at the bottom of the result, I want to see it , say on the first row of a newly created sixth column called Sum_calculated.

0 Karma

risgupta
Path Finder

I think this answer can help your query
https://answers.splunk.com/answers/478795/how-to-append-columns-based-on-searches-and-row-va.html

Please check the same.

0 Karma

zacksoft
Contributor

I have 5 columns.
I need to calculate the total of the third column only.
And instead of seeing the total of it at the bottom of the result, I want to see it , say on the first row of a newly created sixth column called Sum_calculated.

0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...