1. 程式人生 > >ElasticSearch檢視叢集狀態

ElasticSearch檢視叢集狀態

Elasticsearch中資訊很多,同時ES也有很多資訊檢視命令,可以幫助開發者快速查詢Elasticsearch的相關資訊。

_cat

$ curl localhost:9200/_cat
=^.^=
/_cat/allocation
/_cat/shards
/_cat/shards/{index}
/_cat/master
/_cat/nodes
/_cat/indices
/_cat/indices/{index}
/_cat/segments
/_cat/segments/{index}
/_cat/count
/_cat/count/{index}
/_cat/recovery
/_cat/recovery/{index}
/_cat/health
/_cat/pending_tasks
/_cat/aliases
/_cat/aliases/{alias}
/_cat/thread_pool
/_cat/plugins
/_cat/fielddata
/_cat/fielddata/{fields}
/_cat/nodeattrs
/_cat/repositories
/_cat/snapshots/{repository}

verbose

每個命令都支援使用?v引數,來顯示詳細的資訊:

$ curl localhost:9200/_cat/master?v
id                     host      ip        node
yBet3cYzQbC68FRzLZDmFg 127.0.0.1 127.0.0.1 lihao

help

每個命令都支援使用help引數,來輸出可以顯示的列:

$ curl localhost:9200/_cat/master?help
id   |   | node id
host | h | host name
ip   |   | ip address
node | n | node name

headers

通過h引數,可以指定輸出的欄位:

$ curl localhost:9200/_cat/master?v
id                     host      ip        node
yBet3cYzQbC68FRzLZDmFg  127.0.0.1 127.0.0.1 lihao

$ curl localhost:9200/_cat/master?h=ip,node
127.0.0.1 lihao

數字型別的格式化

很多的命令都支援返回可讀性的大小數字,比如使用mb或者kb來表示。

$ curl localhost:9200/_cat/indices?v
health status index                   pri rep docs.count docs.deleted store.size pri.store.size
yellow open   aaa                       5   1          2            0      7.2kb          7.2kb
yellow open   logstash-eos-2016.09.01   5   1        297            0    202.3kb        202.3kb
yellow open   bank                      5   1       1001            1    451.6kb        451.6kb
yellow open   website                   5   1          2            0      7.8kb          7.8kb
yellow open   .kibana                   1   1          5            1     26.6kb         26.6kb
yellow open   logstash-eos-2016.09.02   5   1         11            0     33.9kb         33.9kb
yellow open   test-2016.09.01           5   1          1            0      3.9kb          3.9kb
yellow open   testst_index              5   1          0            0       795b           795b

相關推薦

ElasticSearch檢視叢集狀態

Elasticsearch中資訊很多,同時ES也有很多資訊檢視命令,可以幫助開發者快速查詢Elasticsearch的相關資訊。_cat$ curl localhost:9200/_cat =^.^= /_cat/allocation /_cat/shards /_cat/s

zookeeper在啟動的時候遇到啟動無法檢視叢集狀態的問題-------已解決

zookeeper完成配置(zookeeper安裝目錄為/root/work/): 1、vim /etc/hosts配置 192.168.242.134 centos 192.168.242.135 centostuxing

elasticsearch 檢視節點狀態資訊

有時候我們需要命令查詢ES叢集節點狀態 curl http://localhost:8200/_cluster/nodes?pretty 結果:  { "ok" : true, // 叢集狀態 "cluster_name" : "if2c", //叢集名稱

ELK介紹、安裝es、測試(檢視叢集狀態)、總結

ELK介紹、安裝es、測試(檢視叢集狀態)、總結          

Elasticsearch叢集狀態檢視命令

_cat$ curl localhost:9200/_cat=^.^=/_cat/allocation/_cat/shards/_cat/shards/{index}/_cat/master/_cat/nodes/_cat/indices/_cat/indices/{index}/_cat/segments/

ElasticSearch叢集狀態檢視命令大全 && 刨根問底 | Elasticsearch 5.X叢集多節點角色配置深入詳解

https://blog.csdn.net/pilihaotian/article/details/52460747 Elasticsearch中資訊很多,同時ES也有很多資訊檢視命令,可以幫助開發者快速查詢Elasticsearch的相關資訊。 _cat $ cu

ElasticSearch叢集狀態檢視命令大全 && 刨根問底 | Elasticsearch 5.X叢集多節點角色配置深入詳解

Elasticsearch中資訊很多,同時ES也有很多資訊檢視命令,可以幫助開發者快速查詢Elasticsearch的相關資訊。 _cat $ curl localhost:9200/_cat =^.^= /_cat/allocation /_c

ElasticSearch叢集狀態檢視命令大全

Elasticsearch中資訊很多,同時ES也有很多資訊檢視命令,可以幫助開發者快速查詢Elasticsearch的相關資訊。 _cat $ curl localhost:9200/_cat

elasticsearch原始碼分析——叢集狀態

現在的工程就是在原始碼的層面進行改動,之前因為一個問題出現了叢集假死的狀態。所以才深入的去分析了,原始碼的叢集同步的狀態。 簡述   首先需要明白,類似於solr使用的是zookeeper來進行叢集狀態的同步。等於是使用了三方件實現叢集狀態的維護。但

elasticsearch 叢集狀態資訊

 檢視ES叢集狀態資訊,也就是metadata資料 curl -XGET 'http://localhost:8200/_cluster/state?pretty'這個命令結果返回量較大,包括Index庫,settings,mappings,templete等很多資訊

ElasticSearch5.6.1監控叢集狀態檢視叢集資訊的一般操作方法

本文主要講述ElasticSearch5.6.1如何監控叢集狀態、檢視叢集資訊的一般操作方法。 關於ElasticSearch5.6.1的環境搭建,請參考我另一篇博文。 在使用ES的過程中,我們時常要關注著叢集的狀態。 ES檢視叢集的狀態實際上也是使用REST

Elasticsearch- 叢集狀態查詢

1. 檢視ES叢集健康狀態 curl -XGET 'http://localhost:8200/_cluster/health?pretty'結果: { "cluster_name" : "if2c", "status" : "yellow", //叢集的狀態紅

free 簡單命令檢視叢集記憶體使用狀態

[[email protected] ~]# ls a* -l;free;df-rw-------. 1 root root 1627 Dec 14 16:28 anaconda-ks.cfg-rw-------. 1 root root 2365 Dec 15 1

MongoDB叢集狀態檢視與重新配置

一、叢集狀態檢視: MongoDB的叢集分兩類:一類為副本叢集,用瀏覽器檢視狀況:    http://172.22.0.31:28001 注:28001為mongod啟動埠27001+1000    另一類為分片叢集,用下面方式檢視狀況:    登陸mongos:./bin/mongo --port4000

python 監控elasticsearch集群狀態並推送到openfalcon

python 監控elasticsear#!/usr/bin/python #! --*-- coding:utf-8 --*-- import requests import time import json import sys import commands ts = int(time.time()

樹莓派 vcgencmd 命令檢視硬體狀態

vcgencmd commands 顯示 vcgencmd 可接的指令 vcgencmd commands ~ $ vcgencmd commandscommands="vcos, ap_output_control, ap_output_post_processing, vchi_test_in

檢視叢集基本情況(重要)!! 檢視hadoop叢集有多少節點(hdfs fsck /)

[email protected]:~$ hdfs fsck /    Connecting to namenode via http://localhost:9870/fsck?ugi=liugen&path=%2F FSCK started by li

Elasticsearch集群狀態查看命令

eal 格式化 格式 表示 verbose bsp lds index sha _cat$ curl localhost:9200/_cat=^.^=/_cat/allocation/_cat/shards/_cat/shards/{index}/_cat/master/_

Linux檢視防火牆狀態及關閉或者重啟的命令(開機啟動或者開機禁用)

Linux檢視防火牆狀態及關閉或者重啟的命令 1.為什麼要寫這個? 2. Linux檢視防火牆狀態及關閉或者重啟的命令(CentOS7或者red hat) 2.思考,關閉防火牆是不是就是解決這種問題最好的方法? 1

nosql介紹、memrcached介紹、安裝memcached、檢視memcachedq狀態

1.nosql介紹 非關係型資料庫就是NoSQL,關係型資料庫代表MySQL對於關係型資料庫來說,是需要把資料儲存到庫、表、行、欄位裡,查詢的時候根據條件一行一行地去匹配,當量非常大的時候就很耗費時間和資源,尤其是資料是需要從磁盤裡去檢索NoSQL資料庫儲存原理非常簡單(典型的資料型別為k-v),不存在繁雜