zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    VMware搭建VMware ESXi 6.7
    77. Combinations
    47. Permutations II
    system design
    37. Sudoku Solver
    12月9日学习日志
    12月8日学习日志
    12月7日学习日志
    12月6日学习日志
    12月5日学习日志
  • 原文地址:https://www.cnblogs.com/qiu-hua/p/14198887.html
Copyright © 2011-2022 走看看