List or View Indexes That Are Frozen

How would one go about determining or viewing which indexes are frozen?

See https://www.elastic.co/guide/en/elasticsearch/reference/7.3/monitoring_frozen_indices.html

GET /_cat/indices?v&h=i,sth lists all the indexes with the status flag, but is there a way to only show\list the frozen ones?

I tried GET /_cat/indices?v&h=i,sth=true, but it still seems to list all the indexes.

indeed, the filtering only works on index name, not no attributes, you would need to filter that out on the client side.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.