29-Elasticsearch 集群监控

Elasticsearch Stats 相关的 API

● Elasticsearch 提供了多个监控相关的 API

Node Stats: _nodes/stats

Cluster Stats: _cluster/stats

Index Stats: index_name/_stats

Elasticsearch Task API

● 查看 Task 相关的 API

Pending Cluster Tasks API: GET _cluster/pending_tasks

Task Management API:GET _tasks (可以用来 Cancel 一个 Task)

● 监控 Thread Pools

○ GET _nodes/thread_pool

○ GET _nodes/stats/thread_pool

○ GET _cat/thread_pool?v

○ GET _nodes/hot_threads

The Index & Query Slow Log

● 支持将分片上, Search 和 Fetch 阶段的慢 查询写入文件

● 支持为 Query 和 Fetch 分别定义阈值

● 索引级的动态设置,可以按需设置,或者通过Index Template 统一设定

● Slow log 文件通过 log4j2.properties 配 置

复制代码
# 设置 Index Slowlogs
# the first 1000 characters of the doc's source will be logged
PUT my_index/_settings
{
  "index.indexing.slowlog":{
    "threshold.index":{
      "warn":"10s",
      "info": "4s",
      "debug":"2s",
      "trace":"0s"
    },
    "level":"trace",
    "source":1000  
  }
}

# 设置查询
DELETE my_index
//"0" logs all queries
PUT my_index/
{
  "settings": {
    "index.search.slowlog.threshold": {
      "query.warn": "10s",
      "query.info": "3s",
      "query.debug": "2s",
      "query.trace": "0s",
      "fetch.warn": "1s",
      "fetch.info": "600ms",
      "fetch.debug": "400ms",
      "fetch.trace": "0s"
    }
  }
}
相关推荐
乐韵天城1 天前
SpringBoot3.x下如何使用es进行数据查询
elasticsearch
放学有种别跑、2 天前
GIT使用指南
大数据·linux·git·elasticsearch
越努力越幸运5082 天前
git工具的学习
大数据·elasticsearch·搜索引擎
不会写程序的未来程序员2 天前
详细的 Git 操作分步指南
大数据·git·elasticsearch
武子康2 天前
大数据-167 ELK Elastic Stack(ELK) 实战:架构要点、索引与排错清单
大数据·后端·elasticsearch
20岁30年经验的码农2 天前
Java Elasticsearch 实战指南
java·开发语言·elasticsearch
v***44672 天前
springboot之集成Elasticsearch
spring boot·后端·elasticsearch
h***67372 天前
SpringBoot整合easy-es
spring boot·后端·elasticsearch
ALex_zry2 天前
Git大型仓库推送失败问题完整解决方案
大数据·git·elasticsearch
二进制coder2 天前
Git Fork 开发全流程教程
大数据·git·elasticsearch