Elastic Search: how to see the indexed data
Probably the easiest way to explore your ElasticSearch cluster is to use elasticsearch-head. You can install it by doing: cd elasticsearch/ ./bin/plugin -install mobz/elasticsearch-head Then (assuming ElasticSearch is already running on your local machine), open a browser window to: http://localhost:9200/_plugin/head/ Alternatively, you can just use curl from the command line, eg: Check the mapping for … Read more