Splunk Search

How to Summarize (stats) Output.

albyva
Communicator

Right now I have a search which outputs the following:

| stats latest(bps_out) AS CurrentBPS BY Gateway,Hub,Interface,MaxSpeed

Gateway Hub Interface MaxSpeed CurrentBPS

router1.boston Boston so-0/0/0.0 10000000000 3843026418

router2.boston Boston so-0/0/1.0 10000000000 3813472541

What I'm trying to do is sum up this data by Hub so that it looks like:

Hub MaxSpeed CurrentBPS

Boston 20000000000 7656498959

The end result being a culmination of data per Hub. I tried using bucket and transaction, but just couldn't get it to work right. Maybe eval will work, but I wasn't skilled enough to get that working either. Any suggestions are greatly appreciated.

Thanks,

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Something like this?

<search> | stats latest(bps_out) AS CurrentBPS BY Gateway,Hub,Interface,MaxSpeed | stats sum(MaxSpeed) sum(CurrentBPS) by Hub

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

Something like this?

<search> | stats latest(bps_out) AS CurrentBPS BY Gateway,Hub,Interface,MaxSpeed | stats sum(MaxSpeed) sum(CurrentBPS) by Hub

albyva
Communicator

It's always the simple things that get you. 🙂
Thanks, that did it.

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