Merge "Add override for Auditbeat socket dataset"

This commit is contained in:
Zuul 2020-05-28 15:42:35 +00:00 committed by Gerrit Code Review
commit ee92eeafa2
2 changed files with 6 additions and 1 deletions

View File

@ -32,3 +32,8 @@ processors: {}
# Logging level
# Available log levels are error, warning, info, debug
auditbeat_log_level: "{{ elastic_beat_log_level | default('info') }}"
# Override flag to ignore the system socket dataset. This can be resource-intensive,
# particularly when auditbeat is deployed to a container host, and largely overlaps
# with Packetbeat data
auditbeat_ignore_socket_data: false

View File

@ -141,7 +141,7 @@ auditbeat.modules:
- login # User logins, logouts, and system boots.
- package # Installed, updated, and removed packages
- process # Started and stopped processes
{% if not (containerised | default(false)) %}
{% if not (containerised | default(false)) and not auditbeat_ignore_socket_data %}
- socket # Opened and closed sockets
{% endif %}
- user # User information