Created
November 3, 2025 19:46
-
-
Save williamzujkowski/35c585bdda7f328093d18b40c29ccb22 to your computer and use it in GitHub Desktop.
Suricata Kibana dashboard visualization query for network traffic analysis alerts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "query": { | |
| "bool": { | |
| "must": [ | |
| {"match": {"event_type": "alert"}}, | |
| {"range": {"@timestamp": {"gte": "now-1h"}}} | |
| ] | |
| } | |
| }, | |
| "aggs": { | |
| "top_signatures": { | |
| "terms": { | |
| "field": "alert.signature.keyword", | |
| "size": 10 | |
| } | |
| }, | |
| "severity_breakdown": { | |
| "terms": { | |
| "field": "alert.severity", | |
| "size": 3 | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment