Splunk Search

How to extract data from Splunk to get the allowed and blocked events count separately for each firewall

anshubathla
New Member

I have few firewall logs coming into the Splunk.
I need to extract the data from Splunk to get the allowed and blocked events count separately for each firewall.
Could you please help me with the search for this?

for example
**Firewall Allowed_count Blocked_count
A 98312 4565
B 123
221
C 72333 76876**

0 Karma

woodcock
Esteemed Legend

Like this:

| tstats count FROM datamodel=Network_Traffic.All_Traffic WHERE index=* BY All_Traffic.action
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@anshubathla

If there is a field Firewall and status with Allowed OR Blocked status then below search will work for you.

YOUR_SEARCH 
| stats count(eval(status="Allowed")) as Allowed_count count(eval(status="Blocked")) as Blocked_count by Firewall

Sample Search:

| makeresults count=10 
| eval Firewall="A",status="Allowed" 
| append 
    [| makeresults count=6 
    | eval Firewall="B",status="Blocked"] 

| stats count(eval(status="Allowed")) as Allowed_count count(eval(status="Blocked")) as Blocked_count by Firewall

Thanks

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...