• ES基础(六十四)监控 Elasticsearch 集群


     

     

     

    课程demo

    # Node Stats:
    GET _nodes/stats
    
    #Cluster Stats:
    GET _cluster/stats
    
    #Index Stats:
    GET kibana_sample_data_ecommerce/_stats
    
    #Pending Cluster Tasks API:
    GET _cluster/pending_tasks
    
    # 查看所有的 tasks,也支持 cancel task
    GET _tasks
    
    
    GET _nodes/thread_pool
    GET _nodes/stats/thread_pool
    GET _cat/thread_pool?v
    GET _nodes/hot_threads
    GET _nodes/stats/thread_pool
    
    
    # 设置 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"
        }
      }
    }
    
    GET my_index
    # Node Stats:
    GET _nodes/stats
    
    #Cluster Stats:
    GET _cluster/stats
    
    #Index Stats:
    GET kibana_sample_data_ecommerce/_stats
    
    #Pending Cluster Tasks API:
    GET _cluster/pending_tasks
    
    # 查看所有的 tasks,也支持 cancel task
    GET _tasks
    
    
    GET _nodes/thread_pool
    GET _nodes/stats/thread_pool
    GET _cat/thread_pool?v
    GET _nodes/hot_threads
    GET _nodes/stats/thread_pool
    
    
    # 设置 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"
        }
      }
    }
    
    GET my_index
  • 相关阅读:
    Go part 7 反射,反射类型对象,反射值对象
    activemq BytesMessage || TextMessage
    Go part 6 接口,接口排序,接口嵌套组合,接口与类型转换,接口断言
    mysql 查询表的字段名称,字段类型
    冒泡(bubblesort)、选择排序、插入排序、快速排序
    用 python 写一个模拟玩家移动的示例
    day 14(作业)
    day 13
    day 12
    day 11
  • 原文地址:https://www.cnblogs.com/qiu-hua/p/14198887.html
Copyright © 2020-2023  润新知