Manage elasticsearch logstash indices.

* modules/openstack_project/manifests/logstash.pp: Add two cron jobs.
One to delete indices that are a week old and a second to optimize the
previous days' index.

Change-Id: I14767b3a590c04fa60cdc5ec350e6f49c155050b
Reviewed-on: https://review.openstack.org/26642
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
This commit is contained in:
Clark Boylan 2013-04-10 10:18:35 -07:00 committed by Jenkins
parent bdb1066d0a
commit f6ae11e3b5

View File

@ -48,4 +48,20 @@ class openstack_project::logstash (
source => 'puppet:///modules/openstack_project/logstash/log-pusher.py',
require => Package['python3'],
}
cron { 'delete_old_es_indices':
user => 'root',
hour => '5',
minute => '0',
command => 'curl -XDELETE "http://localhost:9200/logstash-`date -d \'last week\' +%Y.%m.%d`/"',
environment => 'PATH=/usr/bin:/bin:/usr/sbin:/sbin',
}
cron { 'optimize_old_es_indices':
user => 'root',
hour => '5',
minute => '0',
command => 'curl -XPOST "http://localhost:9200/logstash-`date -d yesterday +%Y.%m.%d`/_optimize" -d \'max_num_segments=1\'',
environment => 'PATH=/usr/bin:/bin:/usr/sbin:/sbin',
}
}