Prevent curator to delete certain indices

Hello all,

we are using the curator to rotate logs ( curator delete indices --older-than XX ) but I was wondering if we could 'lock' certain indices from the automated deletion to allow RCA of an outage without risking to lose them due to the rotation.

Increasing the rotation period is not a nice option as it would increase too much the overall size of the cluster.

Thanks and regards,
Michael

you can exclude certain indices from the delete action e.g.:

  - filtertype: pattern
    kind: regex
    value: '<regex-that-matches-index-names>'
    exclude: True

the regex could be something like "^elk|syslog"

Thanks for your quick reply!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.