Created
November 2, 2025 22:17
-
-
Save williamzujkowski/ecaf4fb3899e4c9f153eaf4abdd1676b to your computer and use it in GitHub Desktop.
Container Security - Filebeat Log Aggregation (Wazuh Integration)
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
| # Filebeat configuration for container log aggregation | |
| # Ship container logs to Wazuh for centralized monitoring | |
| # Tags: container-security, logging, wazuh, filebeat | |
| filebeat.inputs: | |
| - type: container | |
| paths: | |
| - /var/lib/docker/containers/*/*.log | |
| processors: | |
| - add_docker_metadata: | |
| host: "unix:///var/run/docker.sock" | |
| output.logstash: | |
| hosts: ["wazuh:5044"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment