We have been attempting to use Curator in our elastic environment and are running into a wall. We have Curator installed, setup curator.yml file and an action file to delete indices. We've enabled log at the DEBUG level. Ultimately we aren't seeing indices getting deleted and have no console log telling us what is possibly the reason for this.
curator.yml
---
# Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"
client:
hosts:
- X.X.X.X
port: 9200
url_prefix:
use_ssl: True
certificate: 'E:\Certs\xxx.pem'
client_cert: 'E:\Certs\xxx.crt'
client_key: 'E:\Certs\xxx.key'
ssl_no_validate: False
http_auth: user:pass
timeout: 30
master_only: False
logging:
loglevel: DEBUG
logfile:
logformat: default
blacklist: []
actionfile.yml
---
actions:
1:
action: delete_indices
description: "description"
options:
ignore_empty_list: True
disable_action: True
continue_if_exception: True
timeout_override:
filters:
- filtertype: pattern
kind: prefix
value: 'monitoring-es-6-'
exclude: False
- filtertype: age
source: name
direction: older
timestring: '%Y.%m.%d'
unit: days
unit_count: 1
exclude: False
our command
./curator --config E:\Curator\Config\curator.yml E:\Curator\Config\actionfile.yml
we see no console logs telling us what could've possibly went right/wrong. We do not see anything happen on the elastic side either.
Any ideas/help would be much appreciated!
Thanks!
Mani