From 03641b8be6ce9873ef1eb703d7d2e0f7a28f1939 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 4 Mar 2015 08:04:49 -0800 Subject: [PATCH] Add note about checking ES cluster health Change-Id: If0659025d076f43fbf5e97ae1d0ee955713f74e6 --- doc/source/logstash.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/source/logstash.rst b/doc/source/logstash.rst index 6d2a6a7c4b..fa78776469 100644 --- a/doc/source/logstash.rst +++ b/doc/source/logstash.rst @@ -195,6 +195,10 @@ redundancy to distribute disk utilization and provide high availability. Each replica is broken into multiple shards providing inceased indexing and search throughput as each shard is essentially a valid mini index. +To check on the cluster health, run this command on any es.* node:: + + curl -XGET 'http://localhost:9200/_cluster/health?pretty=true' + Kibana ------