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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...