ElasticSearch 클러스터 상태 보기 명령 전체 & & 캐묻기 | Elasticsearch 5.X 클러스터 다중 노드 역할 구성 세부 정보

5830 단어 Elasticsearch
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

    자세히 알아보기 | Elasticsearch 5.X 클러스터 다중 노드 역할 구성 세부 정보https://blog.csdn.net/laoyang360/article/details/78290484

    좋은 웹페이지 즐겨찾기