Snapshot create elasticsearch
Create a snapshot to the registered repository
curl -X PUT http://localhost:9200/_snapshot/<repo>/<snapshot>
more elasticsearch
all 19 commands →
ILM explain index
curl -s 'http://localhost:9200/<index>/_ilm/explain' | jq '.indices | to_entries[] | {index:.key, phase:.value.phase, action:.value.action}'
Check cluster health
curl -s http://es:9200/_cluster/health?pretty
List indices with size
curl -s 'http://es:9200/_cat/indices?v&s=store.size:desc'
Delete old index
curl -X DELETE http://es:9200/logs-2024.01.01
Search with query DSL
curl -X GET 'http://es:9200/logs-*/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"level":"error"}},"size":5}'