Elasticsearch- 叢集狀態查詢
阿新 • • 發佈:2019-01-08
1. 檢視ES叢集健康狀態
curl -XGET 'http://localhost:8200/_cluster/health?pretty'
結果:
{ "cluster_name" : "if2c", "status" : "yellow", //叢集的狀態紅綠燈,綠:健康,黃:亞健康,紅:病態 "timed_out" : false, "number_of_nodes" : 1, //節點數 "number_of_data_nodes" : 1, //資料節點數 "active_primary_shards" : 3, //分片數,3個Index庫 "active_shards" : 3, "relocating_shards" : 0, "initializing_shards" : 0, "unassigned_shards" : 3 //未指定節點,配置了複本,僅使用一臺機器部署會出現這種情況 }
也可以對具體Index庫(一個或者多個庫)進行檢視健康狀態
curl -XGET 'http://localhost:8200/_cluster/health/zh?pretty' 一個index庫
curl -XGET 'http://localhost:8200/_cluster/health/zh,west?pretty' 多個index庫
也可以附加一些引數顯示更加具體的內容
level=indices, shards, cluster
curl -XGET 'http://localhost:8200/_cluster/health?level=indices&pretty'
curl -XGET 'http://localhost:8200/_cluster/health?level=shards&pretty'