Merge pull request '修复monitor丢失用户名和密码配置的问题' (#25) from pengln/filebeat:master into master
Reviewed-on: https://app.huanyuantech.com:10301/gitea/ansible-collection/filebeat/pulls/25
This commit is contained in:
commit
767d454c72
|
@ -2,6 +2,10 @@ project_id: {{ instance_name }}
|
|||
sublog: {{ log_type }}
|
||||
elastic_hosts: {{ filebeat_logs[log_type]['es_hosts'] }}
|
||||
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) }}
|
||||
http_unix_sock: {{ filebeat_monitor_sock | default('./filebeat_monitor.sock') }}
|
||||
prometheus_push_gateway_url: {{ filebeat_monitor_push_gateway | default('') }}
|
||||
|
|
Loading…
Reference in New Issue