Hi,
I was wondering If anyone can explain to me why and how I can avoid that issue, when I execute through curator an action to delete my old indices, it also delete(removes) automatically the Index patterns from my Kibana dashboard.
This is the content of curator action:
---
actions:
1:
action: delete_indices
description: >-
Delete indices older than 30 days
options:
timeout_override: 400
continue_if_exception: False
filters:
- filtertype: age
source: creation_date
direction: older
unit: days
unit_count: 30
How I can avoid that?
Thanks!