Splunk Search

How to edit my search to add a column with the total for each list(count) by a field?

rubeniturrieta
Communicator

Hi to everyone

I have this search:

sourcetype="cisco:asa" | stats count by src_ip,dest_ip | sort -count |  stats list(dest_ip),list(count) by src_ip

With this output:

alt text

I need to add a column with the total count by src_ip (sum of all the count for each list(count) value)

Does someone knows how to do this?

regards

0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

 sourcetype="cisco:asa" | stats count by src_ip,dest_ip | sort -count | eventstats sum(count) as Total by src_ip |  stats list(dest_ip),list(count) values(Total) as Total by src_ip

View solution in original post

somesoni2
Revered Legend

Try something like this

 sourcetype="cisco:asa" | stats count by src_ip,dest_ip | sort -count | eventstats sum(count) as Total by src_ip |  stats list(dest_ip),list(count) values(Total) as Total by src_ip

rubeniturrieta
Communicator

Very well, it's working, thanks you very much!

0 Karma
Get Updates on the Splunk Community!

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...