Sum Size of All Index

Hi All,

I am trying to find the sum of all the index, i got the query which displays the size of all indexes in Elasticsearch.

I want to sum up the size of all the index, how could i achieve it ?

curl 'localhost:9200/_cat/indices?v'

1 Like

curl -s http://:9200/_cat/indices?bytes=m|cut -f8 -d" "|awk '{s+=$1} END {print s}'

where: bytes=m => Megabytes

and -f8 => primary + replicas