ILM Policy not showing in GUI

I am using open distro kibana version 1.8.0 and there are no ilm policy showing in UI, though they are created in elasticsearch and showing as output of command curl -X GET “http://localhost:9200/_ilm/policy?pretty”.

curl -X GET “http://localhost:9200/_ilm/policy?pretty
{
“K8s_events_policy” : {
“version” : 1,
“modified_date” : “2021-05-25T16:45:45.794Z”,
“policy” : {
“phases” : {
“hot” : {
“min_age” : “0ms”,
“actions” : {
“rollover” : {
“max_size” : “5gb”,
“max_age” : “30d”
},
“set_priority” : {
“priority” : 100
}
}
}
}
}
},
“ilm-history-ilm-policy” : {
“version” : 1,
“modified_date” : “2021-05-25T16:40:58.538Z”,
“policy” : {
“phases” : {
“hot” : {
“min_age” : “0ms”,
“actions” : {
“rollover” : {
“max_size” : “50gb”,
“max_age” : “30d”
}
}
},
“delete” : {
“min_age” : “90d”,
“actions” : {
“delete” : { }
}
}
}
}
}

Moving this to Index Management for higher visibility.

@rini the page shown in the screenshot calls ISM endpoint to fetch policies - GET localhost:9200/_opendistro/_ism/policies

You can see the available REST APIs related to ISM policies here

Just to clarify @rini you appear to have Elastic’s ILM policies which are not supported in our ISM UI. You must use ISM policies which is our Apache 2.0 licensed feature equivalent of Elastic’s ILM.