Splunk Enterprise Security

How can I compare the bandwidth usage of a specific category to the bandwidth usage of all categories combined?

digital_alchemy
Path Finder

For some reason I'm hitting a wall on the logic of this search. I'm working with Palo Alto logs and the fields i'm interested in are the bytes and category fields.

Essentially I would need to sum the total bytes for all categories over a 30 minute period and then sum bytes for the streaming category for the same period, then display a line chart showing the comparison for the bandwidth used for the streaming category to the bandwidth used by all categories combined by minute.

0 Karma

FrankVl
Ultra Champion

Try the following: create a timechart, then addtotals, then remove all the unwanted category columns:

...your base search...
| timechart sum(bytes) by category
| addtotals
| fields _time,streaming,Total
0 Karma

renjith_nair
Legend

Hi @digital_alchemy,

Try this,

your search |eventstats sum(bytes) as total|search category="streaming category"|timechart sum(bytes) as streaming_bytes,first(total) as total
Happy Splunking!
0 Karma

FrankVl
Ultra Champion

He mentions he is looking for a linechart over time. So your eventstats should be by _time. Also: your last stats command will drop the totals.

0 Karma

renjith_nair
Legend

thanks @FrankVI, forgot to add the total to the result

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

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

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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