How to get the health status of a single index in elasticsearch?

I am using elasticsearch 5.6.16. I know about the cluster health and cat health APIs which come bundled with elasticsearch 5.6

I want to know the status of a particular index found inside my elasticsearch local instance. The issue with cluster health or cat health API is that they return the health status of all the indices present inside the elasticsearch instance and I only want to get the health status of a particular instance.

Is there a way by which I can the health status of a single index only?

5.6 is very much EOL and you need to upgrade as a matter of high urgency.

You can use _cat/indices/<indexname> if you want.

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