Elasticsearchでよく使うAPIのメモ
ちょろっとESのAPIをcurlとかで叩くときの個人的チートシート
日々の作業で出てきた技術メモの切れ端を置いておくページ
ちょろっとESのAPIをcurlとかで叩くときの個人的チートシート
個人的に頻出のやつ
GET /_cat/indices
indicesの綴りが何回やっても覚えられん
GET /<index>/_search
なにも渡さずに叩けば返ってくる
DELETE /<index>
echo <search template> | curl -X PUT
http://localhost:9200/_scripts/<index> -d @- -H 'Content-Type: application/json'
@-
というのは標準入力から受け取っているだけなのでよしなに
GET /_scripts/<script>
https://www.elastic.co/guide/en/elasticsearch/reference/current/search-template-api.html
GET /<index>/_search/template
これめちゃくちゃ忘れる