Skip to content

Files

Latest commit

 

History

History

cheatsheet-elasticsearch-A4

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

1 Elasticsearch CheatSheet

linkedin
github
slack


PRs Welcome

File me Issues or star this repo.

1.1 Elasticsearch Summary

NameCommand
elasticsearch-head[1]A web tool: $es_ip:$es_port/_plugin/head/
elasticdumpImport and export tools
Get cluster health$es_ip:$es_port/_cluster/health?pretty
Get cluster setting$es_ip:$es_port/_cluster/settings?v
Get Index Setting$es_ip:$es_port/$es_name/_settings?v
List Nodes$es_ip:$es_port/_cat/nodes?v
List shards$es_ip:$es_port/_cat/shards?v
List indices$es_ip:$es_port/_cat/indices?v
Get allocation$es_ip:$es_port/_cat/allocation?v
Get Version$es_ip:$es_port
Version By CLIbin/elasticsearch --version
Indice Summary$es_ip:$es_port/$index/_count?pretty
Indice Stats$es_ip:$es_port/$index/_stats?pretty
Get all docs$es_ip:$es_port/$index/_search?pretty
Full Text Search$es_ip:$es_port/$index/_search?q=50
Search By field$es_ip:$es_port/$index/_search?q=f1:50
Search By 2 fields$es_ip:$es_port/$index/_search?q=”f1:v1&f2=v2”

1.2 More Resources

https://www.dennyzhang.com/query_elasticsearch

License: Code is licensed under MIT License.

linkedin github slack