修复monitor丢失用户名和密码配置的问题 #25

Merged
pengln merged 1 commits from pengln/filebeat:master into master 2021-12-06 16:41:47 +08:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 63ad661e6c - Show all commits

View File

@ -2,6 +2,10 @@ project_id: {{ instance_name }}
sublog: {{ log_type }} sublog: {{ log_type }}
elastic_hosts: {{ filebeat_logs[log_type]['es_hosts'] }} elastic_hosts: {{ filebeat_logs[log_type]['es_hosts'] }}
elastic_indice_name: {{ filebeat_logs[log_type]['index_prefix'] }}-{{ instance_name }}-* elastic_indice_name: {{ filebeat_logs[log_type]['index_prefix'] }}-{{ instance_name }}-*
{%- if filebeat_logs[log_type]['es_user'] and filebeat_logs[log_type]['es_passwd'] -%}
elastic_username: {{ filebeat_logs[log_type]['es_user'] }}
elastic_password: {{ filebeat_logs[log_type]['es_passwd'] }}
{%- endif -%}
elastic_search_lifecycle: {{ filebeat_monitor_lifecycle | default(30) }} elastic_search_lifecycle: {{ filebeat_monitor_lifecycle | default(30) }}
http_unix_sock: {{ filebeat_monitor_sock | default('./filebeat_monitor.sock') }} http_unix_sock: {{ filebeat_monitor_sock | default('./filebeat_monitor.sock') }}
prometheus_push_gateway_url: {{ filebeat_monitor_push_gateway | default('') }} prometheus_push_gateway_url: {{ filebeat_monitor_push_gateway | default('') }}