I'm working on upgrading curator in our environment and running in to an issue using the newer curator.
Using the snapshot with a regex fails:
/usr/bin/curator --logfile /var/log/curator.log --loglevel INFO --logformat default --host foo --port 9200 snapshot --repository eslog_backups indices --time-unit days --older-than 4 --timestring '\%Y.\%m.\%d' --regex '^logstash-\d{4}\.\d{2}\.\d{2}$'
No indices matched provided args.
However if I use the same regex on a show indices I get matches
/usr/bin/curator --logfile /var/log/curator.log --loglevel INFO --logformat default --host foo --port 9200 show indices --regex '^logstash-\d{4}\.\d{2}\.\d{2}$'
logstash-2015.08.10
logstash-2015.08.11
logstash-2015.08.12
logstash-2015.08.13
logstash-2015.08.14
logstash-2015.08.17
logstash-2015.08.18
logstash-2015.08.19
Does the regex selection not work on the snapshot creation?