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
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...