Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 244 Bytes

elasticsearch.md

File metadata and controls

13 lines (10 loc) · 244 Bytes

Elasticsearch cheatsheets

Curl commands

GET to retrieve all indices

curl -X GET "http://localhost:9200/_cat/indices"

GET to retrive the mappings of an index

curl -X GET "http://localhost:9200/[index_name]/_mappings"