I am trying to apply a policy to an index in OpenSearch
POST _opendistro/_ism/add/.kibana_1
{
"policy_id": "test"
}
.kibana_1 is an index that automatically got created even though I am not using Kibana. I wanted to write an auto delete policy using ISM to delete if this index gets over 20GB. But I get this error when i try to attach the policy to this index
{ "updated_indices" : 0, "failures" : true, "failed_indices" : [ { "index_name" : ".kibana_1", "index_uuid" : "someuuid", "reason" : "Matches restricted index pattern defined in the cluster setting" } ] }