I have created a template containing my ILM policy as follows:
PUT _template/rollup_template
{
"index_patterns": ["rollup*"],
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1,
"index.lifecycle.name": "rollup_policy_1",
"index.lifecycle.rollover_alias": "rollup"
}
}
My two indices names are rollup_services and rollup_process.
When doing an _ilm/explain, the response says managed: false
I am trying to understand my error in why the template is not mapping the ILM policy to these indices.