From 42e159434d7c6ea5154cbc6d530fe5d6af049a51 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 22 Nov 2017 08:31:02 -0800 Subject: [PATCH] Reduce elasticsearch retention to 7 days We were keeping 10 days of logs in elasticsearch but now that we've caught up on the job backlog that has filled the disks on our elasticsearch cluster. Address this by reducing log retention by 30%. Change-Id: I8b1e126e08eb4745d01534a63c558bf1494ac6bf --- modules/openstack_project/manifests/elasticsearch_node.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/elasticsearch_node.pp b/modules/openstack_project/manifests/elasticsearch_node.pp index 871e926af7..7eb287c126 100644 --- a/modules/openstack_project/manifests/elasticsearch_node.pp +++ b/modules/openstack_project/manifests/elasticsearch_node.pp @@ -50,7 +50,7 @@ class openstack_project::elasticsearch_node ( } class { 'logstash::curator': - keep_for_days => '10', + keep_for_days => '7', } }