1
curl -X GET "http://127.0.0.1:9201/_cat/indices?v&h=index,docs.count,store.size&s=store.size:desc&bytes=b"

v:verbose 有无标题
h:headers 返回的字段
s:排序
bytes:store.size 单位,数字格式输出,不带 mb,gb 等单位,方便在代码中计算
help:查看字段意思

官方文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-indices.html

或者 _stats,这个要比 _cat 慢很多

1
curl -X GET "http://127.0.0.1:9201/_all/_stats"