From 07f75f6ca195866376c74a001c846e0b34a82250 Mon Sep 17 00:00:00 2001 From: Cyril de Bourgues Date: Mon, 18 Oct 2021 10:09:47 +0200 Subject: [PATCH 1/2] ensure using 7.x Filebeat version & increase number of workers --- puppet/manifests/filebeat.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/puppet/manifests/filebeat.pp b/puppet/manifests/filebeat.pp index ce21fc13..d3aff4a9 100644 --- a/puppet/manifests/filebeat.pp +++ b/puppet/manifests/filebeat.pp @@ -97,12 +97,13 @@ qPDlGRlOgVTd9xUfHFkzB52c70E= class { 'filebeat': manage_repo => false, manage_apt => false, - major_version => '6', + major_version => '7', fields_under_root => $fields_under_root, outputs => { 'logstash' => { 'hosts' => $output_hosts, 'loadbalance' => true, + 'workers' => 4, }, }, logging => { -- GitLab From 09d691a8714d16d49d7b541de3538f7a7057ec9b Mon Sep 17 00:00:00 2001 From: Cyril de Bourgues Date: Mon, 18 Oct 2021 10:14:54 +0200 Subject: [PATCH 2/2] ensure Filebeat version is 7.x by default --- .../openstack-cluster-installer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/openstack-cluster-installer/openstack-cluster-installer.conf b/etc/openstack-cluster-installer/openstack-cluster-installer.conf index dd093eeb..971e5beb 100644 --- a/etc/openstack-cluster-installer/openstack-cluster-installer.conf +++ b/etc/openstack-cluster-installer/openstack-cluster-installer.conf @@ -295,4 +295,4 @@ auto_install_machines_num_of_discovery=15 [filebeat] # Repository URL for Filebeat. # Our mirror: http://apt.infomaniak.ch/artifacts.elastic.co/packages/6.x/apt -filebeat_repo=https://artifacts.elastic.co/packages/6.x/apt +filebeat_repo=https://artifacts.elastic.co/packages/7.x/apt -- GitLab