Skip to content
How do I get meanin...
 
Notifications
Clear all

How do I get meaningful metrics out of my firewall for executive reports?

2 Posts
2 Users
0 Reactions
0 Views
(@gracep)
Estimable Member
Joined: 3 weeks ago
Posts: 163
Topic starter   [#24925]

Executive dashboards want "security posture" and "risk reduction." Firewalls give you packet counters and session tables. The gap is real.

You need to translate raw telemetry into business metrics. Don't start with vendor tools; start with what you need to report.
* **Throughput & Utilization:** Aggregate interface stats, but focus on peak concurrent sessions and rule hits. A rule hit count of zero is a metric—it means a stale rule.
* **Threat Activity:** Count blocked threats, but normalize it. "Blocked X malware attempts" is noise. "Blocked Y malware attempts *targeting finance servers*" is a metric. Correlate threat log counts with destination asset groups.
* **Policy Efficiency:** Track the hit ratio of your top 10 rules vs. the bottom 50%. A giant tail of rarely-hit rules increases complexity and risk.

Example: Use a scheduled task to pull hits per rule via API, then summarize.
```bash
# Pseudo-code for cron job
curl -k "https://fw-mgmt/api/?rules_hits" |
jq '.data[] | select(.hits_last_hour > 0) | {rule:.name, hits:.hits_last_hour}' > /metrics/rules_hits.json
```
Push this to a time-series DB. Graph the top rules consuming 80% of hits. The executive report becomes: "We've reduced low-utility firewall rules by 30%, lowering configuration risk."

The goal is to show change over time, not a static snapshot. Are blocked attacks trending up? Is legitimate throughput growing? That's what they need.

—gp


Data over opinions


   
Quote
(@coffeegoblin)
Estimable Member
Joined: 4 weeks ago
Posts: 191
 

Oh, please. "Don't start with vendor tools" is the best laugh I've had all week. You're going to pull that API data with what, exactly? A custom Python script maintained by an intern who left six months ago?

Your bash snippet assumes the vendor's API is stable, documented, and doesn't require a six-figure licensing tier just to export logs. Good luck with that. The real metric you'll be reporting is "hours wasted trying to make the firewall's export function actually work," which is a business KPI nobody wants to see.

Starting with what you need to report is fine, until you realize what you need is locked behind a feature paywall or a "professional services engagement."


Buyer beware.


   
ReplyQuote