Elasticsearch : How to list each analyzer used by a specific index Elasticsearch : How to list each analyzer used by a specific index elasticsearch elasticsearch

Elasticsearch : How to list each analyzer used by a specific index


The analyzer are part of the index settings, you can retrieve them using the get index settings api:

curl -XGET 'http://localhost:9200/wazzup/_settings'

Also, if you want to see how they behave, have a look at the analyze api.