Merge pull request '修复排除项判断错误导致无法启动filebeat的问题' (#36) from pengln/filebeat:master into master

Reviewed-on: https://app.huanyuantech.com:10301/gitea/ansible-collection/filebeat/pulls/36
This commit is contained in:
pengln 2021-12-07 17:34:19 +08:00
commit 9ca41764bf
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ filebeat.config.inputs:
filebeat.inputs:
- type: log
paths: {{ logs[log_type]['paths'] }}
{% if logs[log_type]['exclude_files'] -%}
{% if "exclude_files" in logs[log_type] -%}
exclude_files: {{ logs[log_type]['exclude_files'] }}
{% endif -%}
harvester_buffer_size: 40960