Hello Team,
I want to delete logs for 30 days and below is the actions.yml and I am using
curator --config curator.yml actions.yml
how to make sure that the data is deleted
actions:
1:
action: delete_indices
description: Delete indices with %Y.%m.%d in the name where that date is older than 30 days
options:
ignore_empty_list: True
filters:
- filtertype: age
source: name
timestring: '%Y.%m.%d'
unit: days
unit_count: 30