修复 pipeline 变量引用错误的bug #31

Merged
pengln merged 1 commits from pengln/filebeat:master into master 2021-12-07 10:14:52 +08:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 65a5016c77 - Show all commits

View File

@ -43,7 +43,7 @@ output.elasticsearch:
index: "{{ logs[log_type]['index_prefix'] }}-{{ instance_name }}-%{[sublog]}-%{+yyyy.MM.dd}" index: "{{ logs[log_type]['index_prefix'] }}-{{ instance_name }}-%{[sublog]}-%{+yyyy.MM.dd}"
{% endif -%} {% endif -%}
{% if 'pipeline' in logs[log_type] and logs[log_type]['pipeline'] -%} {% if 'pipeline' in logs[log_type] and logs[log_type]['pipeline'] -%}
pipeline: "logs[log_type]['pipeline']" pipeline: "{{ logs[log_type]['pipeline'] }}"
{% endif -%} {% endif -%}
{% if 'es_user' in logs[log_type] and 'es_passwd' in logs[log_type] -%} {% if 'es_user' in logs[log_type] and 'es_passwd' in logs[log_type] -%}
username: {{ logs[log_type]['es_user'] | default('') }} username: {{ logs[log_type]['es_user'] | default('') }}