Hi,
I'm trying to delete my old indexes with curator, however because of my index format I'm having trouble.
The format of my indices is sg-YYYY-WW but the weeks start at sg-2017-1 not sg-2017-01. This is causing my trouble with the curator age filter. Below is my config but it misses any indices with a single digit week number. Any advice on this?
actions:
1:
action: delete_indices
description: >-
Delete indices older than 45 days (based on index name), for logstash-
prefixed indices. Ignore the error if the filter does not result in an
actionable list of indices (ignore_empty_list) and exit cleanly.
options:
ignore_empty_list: True
timeout_override:
continue_if_exception: False
filters:
- filtertype: pattern
kind: prefix
value: sg-
exclude:
- filtertype: age
source: name
direction: older
timestring: '%Y-%-W'
unit: weeks
unit_count: 4
exclude:
Thanks,
Ross