forked from ansible-collection/filebeat
修复 multiline 属性不存在的bug
This commit is contained in:
parent
156f4012e3
commit
45ff4f4930
|
@ -10,7 +10,7 @@ filebeat.inputs:
|
|||
{% if "exclude_files" in logs[log_type] -%}
|
||||
exclude_files: {{ logs[log_type]['exclude_files'] }}
|
||||
{% endif -%}
|
||||
{% if logs[log_type]['multiline'] -%}
|
||||
{% if 'multiline' in logs[log_type] and logs[log_type]['multiline'] -%}
|
||||
multiline.type: pattern
|
||||
multiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2}'
|
||||
multiline.negate: true
|
||||
|
|
Loading…
Reference in New Issue