GET _cat/indices?v&pretty health:当前服务器健康状态: green(集群完整) yellow(单点正常、集群不完整) red(单点不正常) status:索引打开、关闭状态 index:索引名 uuid:索引统一编号 pri:主分片数量 rep:副本数量 docs.count:可用文档数量 docs.deleted:文档删除状态(逻辑删除) store.size:主分片和副分片整体占...
docs.count 段中的文档数 docs.deleted 段中删除的文档数 size 段大小,以字节为单位 size.memory 段内存大小,以字节为单位 committed 段是否已提交 searchable 段是否可搜索 version 版本 compound compound模式 索引命令 以下是一些常用的ElasticSearch 索引命令: cat indices cat indices命令可以查看索引信息,包括索引...
返回结果主要包含两大部分:indices和nodes。 1.4、关键指标说明 二、节点级别 2.1、节点监控, 即node线程组状态 (GET _nodes/stats/thread_pool?pretty) curl -X GET 'http://127.0.0.1:9200/_nodes/stats/?pretty "indices": { "docs": { "count": 8111612, # 显示节点上有多少文档 "deleted": 16604 ...
rep:副分片数量 docs.count: Lucene 级别的文档数量 docs.deleted: 删除的文档 store.size:全部分片大小(包含副本) pri.store.size:主分片大小 查看索引,模糊匹配,比如匹配test: curl -XGET http://localhost:9200/_cat/indices/test_*?v
GET _cat/indices?v 示例输出: health status index uuid pri rep docs.count docs.deleted store.size pri.store.size green open .kibana_task_manager_1 C9SW_Y7cQ8-TJQGArKRcDA 1 0 2 0 31.8kb 31.8kb yellow open my_index 7V75Rtf1QBCslQvWWPOS2A 1 1 0 0 283b 283b ...
indices.shards.primaries:主分片数量。 docs.count:文档总数。 store.size_in_bytes:数据总存储容量。 segments.count:段总数。 nodes.count.total:总节点数。 nodes.count.data:数据节点数。 nodes. process. cpu.percent:节点CPU使用率。 fs.total_in_bytes:文件系统使用总容量。
elasticsearch_indices_get_missing_time_seconds counter 花费在文档丢失的GET请求上的总时间 8 elasticsearch_indices_get_exists_time_seconds counter 花费在文档存在的GET请求上的总时间 9 elasticsearch_indices_get_exists_total counter 存在的文件的GET请求总数 10 elasticsearch_indices_get_total counter GET请求总...
本文将继续介绍elasticsearch索引监控之Indices segments与Indices Shard storesapi。 Indices Segments 提供Lucene索引(分片级别)使用的segments(段信息)。 其对应的示例代码如下: 代码语言:javascript 复制 1publicstaticfinalvoidtest_Indices_segments(){2TransportClient client=EsClient.getTransportClient();3try{4Indices...
如果上述的 indices.docs.count 的值为 0,就表示转移已经完成。 重命名索引 另一个用例是重命名索引。 可以根据使用情况以多种方式完成此操作。 Aliasing 如果我们希望在不丢失任何数据的情况下重命名索引,则最常用的方法是别名。 例如,我们想将索引 “testindex” 重命名为 “testindex-1”。 我们可以为索引 “...
GET /_cat/indices?v 其中,表头信息解释如下(?v 参数是可选的,用于添加表头(列名)到输出中,使结果更容易阅读) health(健康状态):索引的健康状态,通常与集群的健康状态相关。status(状态):索引的状态,如 open(打开)或 close(关闭)。index(索引名):索引的名称。uuid(唯一标识符):索引的唯一标识符。pri(主分片...