From f84ca1daecfba935606b155651161f9a86f9980d Mon Sep 17 00:00:00 2001 From: Waqar Khan Date: Wed, 8 Mar 2023 17:50:55 +0000 Subject: [PATCH 1/2] add ttl config for filebeat --- config/templates/etc/filebeat/filebeat.yml.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/templates/etc/filebeat/filebeat.yml.j2 b/config/templates/etc/filebeat/filebeat.yml.j2 index a0c47f60..cb216b1d 100644 --- a/config/templates/etc/filebeat/filebeat.yml.j2 +++ b/config/templates/etc/filebeat/filebeat.yml.j2 @@ -189,6 +189,8 @@ output.logstash: # "beats_target_hosts" below refers to a previous Clusterverse release variable, it will be deprecated in Clusterverse 4.0 hosts: {{ beats_config.filebeat.output_logstash_hosts | default(beats_target_hosts) }} {% endif %} + ttl: 300s + pipelining: 0 # Optional SSL. By default is off. # List of root certificates for HTTPS server verifications #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] From a631392e029c69cb59aca759aa0b5e43c6eac17f Mon Sep 17 00:00:00 2001 From: Waqar Khan Date: Thu, 9 Mar 2023 16:48:52 +0000 Subject: [PATCH 2/2] ttl for metricbeat --- config/templates/etc/metricbeat/metricbeat.yml.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/templates/etc/metricbeat/metricbeat.yml.j2 b/config/templates/etc/metricbeat/metricbeat.yml.j2 index f6ff563a..5974cab4 100644 --- a/config/templates/etc/metricbeat/metricbeat.yml.j2 +++ b/config/templates/etc/metricbeat/metricbeat.yml.j2 @@ -118,7 +118,8 @@ output.logstash: # "beats_target_hosts" below refers to a previous Clusterverse release variable, it will be deprecated in Clusterverse 4.0 hosts: {{ beats_config.metricbeat.output_logstash_hosts | default(beats_target_hosts) }} {% endif %} - + ttl: 300s + pipelining: 0 # Optional SSL. By default is off. # List of root certificates for HTTPS server verifications #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]