Popular APIs
Index a document with a random ID
{
"title": "Your Name",
"year": "2016"
}
Index a document with a specific ID
PUT my-logs/_doc/1
{
"title": "Weathering with You",
"year": "2019"
}
Index several documents at once
POST _bulk
{ "index": { "_index": "my-logs", "_id": "2" } }
{ "title": "The Garden of Words", "year": 2013 }
{ "title": "5 Centimeters Per Second", "year": 2007 }
List all indices
GET _cat/indices?v&expand_wildcards=all
Open or close all indices that match a pattern
POST my-logs*/_open
POST my-logs*/_close
Create an index alias
PUT my-logs-2019-11-13/_alias/my-logs-today
List all aliases
Search an index or all indices that match a pattern
GET my-logs/_search?q=test
GET my-logs*/_search?q=test
Get cluster settings, including defaults
GET _cluster/settings?include_defaults=true
Change disk watermarks (or other cluster settings)
PUT _cluster/settings
{
"cluster.routing.allocation.disk.watermark.low": "80%",
"cluster.routing.allocation.disk.watermark.high": "85%"
}
}
List nodes in the cluster
GET _cat/nodes?v
Get node statistics
GET _nodes/stats
Get snapshots in a repository
GET _snapshot/my-repository/_all
Take a snapshot
PUT _snapshot/my-repository/my-snapshot
Restore a snapshot
POST _snapshot/my-repository/my-snapshot/_restore
{
"indices": "-.opendistro_security",
"include_global_state": false