File tree Expand file tree Collapse file tree 4 files changed +6
-0
lines changed
environments/common/files/filebeat Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 3
3
# filebeat_config_path: undefined # REQUIRED. Path to filebeat.yml configuration file template
4
4
filebeat_podman_user : " {{ ansible_user }}" # User that runs the filebeat container
5
5
filebeat_version : 7.12.1 # latest usable with opensearch - see https://opensearch.org/docs/2.4/tools/index/#compatibility-matrix-for-beats
6
+ filebeat_debug : false
Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ opensearch_data_path: /usr/share/opensearch/data
9
9
opensearch_state : started # will be restarted if required
10
10
opensearch_systemd_service_enabled : true
11
11
opensearch_certs_duration : " {{ 365 * 10 }}" # days validity for self-signed certs
12
+ opensearch_debug : false
Original file line number Diff line number Diff line change @@ -32,3 +32,5 @@ plugins.security.system_indices.enabled: true
32
32
33
33
# Fake version for filebeat: https://opensearch.org/docs/2.4/tools/index/#agents-and-ingestion-tools
34
34
compatibility.override_main_response_version: true
35
+
36
+ {% if opensearch_debug | default (false ) | bool %} logger.level: debug{% endif %}
Original file line number Diff line number Diff line change @@ -54,3 +54,5 @@ output.elasticsearch:
54
54
ssl.verification_mode : none
55
55
username : " admin"
56
56
password : " {{ vault_elasticsearch_admin_password }}"
57
+
58
+ {% if filebeat_debug | default(false) | bool %}logging.level: debug{% endif %}
You can’t perform that action at this time.
0 commit comments