Hello, i want to delete some rows older that 10 days from my index with Elastic Curator with the following action
actions:
1:
action: delete_indices
description: >-
Delete indices older than 10 days based on apps-logs indices
options:
ignore_empty_list: True
disable_action: True
filters:
- filtertype: pattern
kind: prefix
value: apps-logs
- filtertype: age
source: creation_date
unit: days
unit_count: 10
direction: older
result : it delete the index
I want to know if it is possible to delete just certain rows from the index
Thank's
