forked from ansible-collection/filebeat
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:
commit
9ca41764bf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue