修复monitor丢失用户名和密码配置的问题
This commit is contained in:
parent
9b89f40bc0
commit
63ad661e6c
|
@ -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('') }}
|
||||||
|
|
Loading…
Reference in New Issue