From 03d89fe3aba23ab7250e0f0bf07b23aba4d4b61f Mon Sep 17 00:00:00 2001 From: Vincent Royer Date: Mon, 16 Jul 2018 11:59:31 +0200 Subject: [PATCH] Add allocation alias --- distribution/src/main/resources/bin2/aliases.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/distribution/src/main/resources/bin2/aliases.sh b/distribution/src/main/resources/bin2/aliases.sh index dc395365e44..35d9a8b1481 100644 --- a/distribution/src/main/resources/bin2/aliases.sh +++ b/distribution/src/main/resources/bin2/aliases.sh @@ -137,6 +137,7 @@ alias metadata='curl -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cluster/state/me alias stats='curl -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_stats?pretty=true' alias shards='curl -s -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cat/shards?v | sort' alias indices='curl -s -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cat/indices?v | sort' +alias allocation='curl -s -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cat/allocation?v' alias fielddata='curl -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cat/fielddata/body,text?v' alias threads='curl -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_cat/thread_pool?v' alias hotthreads='curl -XGET $CREDENTIAL $PROTOCOL://$NODE:9200/_nodes/hot_threads'