All Apps and Add-ons

Palo Alto App - Traffic Dashboard

rgaleone1
Path Finder

I have a question about a query within the Palo Alto App. As shipped the app displays total traffic grouped by egress and ingress interfaces. I just want to see the total egress traffic and the total ingress traffic.

How would I modify the query below (from Palo Alto App) in order to show just total traffic out of the PAN?

"search">|tstats sum(bytes) As sb FROM pan_traffic where log_subtype=end $action$ $src_ip$ $dst_ip$ $dst_port$ $src_user$ $app$ groupby egress_interface | eval sumBytes = sb/(1024*1024) | stats values(sumBytes) AS MegaBytes engress_interface

0 Karma
1 Solution

btorresgil
Builder

Hi rgaleone1,

To get the total bytes processed by the firewall, you can use a search like the one you mentioned, but without the 'groupby' part since you don't want to group by the egress interfaces. For example, this search will give you the total bytes across all interfaces:

|tstats sum(bytes) As sumOfBytes FROM pan_traffic where log_subtype=end

If you want it in megabytes, you can use this search:

|tstats sum(bytes) As sumOfBytes FROM pan_traffic where log_subtype=end | eval MegaBytes = sumOfBytes/(1024*1024)

Version 3.4 of the Splunk for Palo Alto Networks app supports NetFlow records which is also useful for this kind of statistic.

View solution in original post

0 Karma

btorresgil
Builder

Hi rgaleone1,

To get the total bytes processed by the firewall, you can use a search like the one you mentioned, but without the 'groupby' part since you don't want to group by the egress interfaces. For example, this search will give you the total bytes across all interfaces:

|tstats sum(bytes) As sumOfBytes FROM pan_traffic where log_subtype=end

If you want it in megabytes, you can use this search:

|tstats sum(bytes) As sumOfBytes FROM pan_traffic where log_subtype=end | eval MegaBytes = sumOfBytes/(1024*1024)

Version 3.4 of the Splunk for Palo Alto Networks app supports NetFlow records which is also useful for this kind of statistic.

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