From 5564e7a9cb3a85eeb7af242bc810ccabd6dd5bcf Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Tue, 24 Jul 2018 09:35:53 -0500 Subject: [PATCH] Correct retention days There was an error where the rention days was 2x greater than it was supposed to be. Change-Id: I9e9451e4381a32c0b2857eb75689561d3517b8d7 Signed-off-by: Kevin Carter --- elk_metrics_6x/templates/curator-actions.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elk_metrics_6x/templates/curator-actions.yml.j2 b/elk_metrics_6x/templates/curator-actions.yml.j2 index 42667be5..097e7fcf 100644 --- a/elk_metrics_6x/templates/curator-actions.yml.j2 +++ b/elk_metrics_6x/templates/curator-actions.yml.j2 @@ -21,7 +21,7 @@ {% set _ = delete_indices.update( { 'action': 'delete_indices', - 'description': 'Prune indices for ' + key + ' after ' ~ ((index_retention | int) * 2) ~ ' days.', + 'description': 'Prune indices for ' + key + ' after ' ~ (index_retention | int) ~ ' days.', 'options': { 'ignore_empty_list': true, 'disable_action': false