0%

Cat APIs

Cat APIs

可以通过_cat来查看支持哪些

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
GET _cat

结果
=^.^=
/_cat/allocation 每个节点分片的分配数量以及它们所使用的的硬盘空间大小
/_cat/shards 查看节点包含的分片信息,文档数量、占用字节数、节点所在位置等
/_cat/shards/{index}
/_cat/master 显示master节点的节点ID、绑定的ip和节点名
/_cat/nodes 查看集群拓扑结构
/_cat/tasks
/_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/thread_pool/{thread_pools}
/_cat/plugins 查看每一个节点所运行的插件的信息
/_cat/fielddata 查看当前集群中每个数据节点上被fielddata所使用的堆内存大小
/_cat/fielddata/{fields}
/_cat/nodeattrs 显示指定节点的属性信息
/_cat/repositories 显示集群中注册的快照库
/_cat/snapshots/{repository}
/_cat/templates 查看集群中的模板

使用_cat/indices?v来查看所有索引,v表示在结果中返回表头

欢迎关注我的其它发布渠道