ElasticSearch 클러스터 상태 보기 명령 전체(회전)

6629 단어
원문 주소:https://blog.csdn.net/pilihaotian/article/details/52460747
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


모든 명령은 사용을 지원합니까?자세한 정보를 표시하는 매개 변수:
$ 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

 
다음으로 전송:https://www.cnblogs.com/loveyouyou616/p/11540167.html

좋은 웹페이지 즐겨찾기