host-metrics/configs/opensearch/retention-policy.json
2026-09-17 22:31:35 +02:00

38 lines
701 B
JSON

{
"policy": {
"description": "Delete host metric daily indices after 14 days; applies only to host-metrics-v1-*.",
"default_state": "hot",
"states": [
{
"name": "hot",
"actions": [],
"transitions": [
{
"state_name": "delete",
"conditions": {
"min_index_age": "14d"
}
}
]
},
{
"name": "delete",
"actions": [
{
"delete": {}
}
],
"transitions": []
}
],
"ism_template": [
{
"index_patterns": [
"host-metrics-v1-*"
],
"priority": 200
}
]
}
}