前言

  • 本文对 Elasticsearch 7.17 有效

查看集群信息

  • 查看集群整体状态

    GET _cluster/health

查看节点信息

  • 查看所有节点的 热线程

    GET _nodes/hot_threads
  • 查看单个节点的 热线程

    GET _nodes/node717/hot_threads
  • 查看所有节点的 线程池

    GET _cat/thread_pool?v
    # OR
    GET _nodes/stats/thread_pool
  • 查看单个节点的 线程池

    # _cat/thread_pool 无法过滤节点,只能排序
    GET _cat/thread_pool?v&s=node_name:asc
    # OR
    GET _nodes/node717/stats/thread_pool
  • 查看所有节点的 task

    GET _tasks
    # OR
    GET _tasks?nodes=*
  • 查看单个节点的 task

    GET _tasks?nodes=node717

节点 CPU 占用高<案例>

  • 查看节点 热线程

    GET _nodes/node717/hot_threads

    image.png

  • 查看高 CPU 占用任务(search)的线程池状况

    GET _nodes/node717/stats/thread_pool?filter_path=nodes.*.name,nodes.*.thread_pool.search

    image.png

本文出自 qbit snap

qbit
268 声望279 粉丝