Elasticsearch 7.x 在 Kibana 中看不到監控信息(qbit)

  • 現象(We couldn't activate monitoring)

image.png

  • 排查
# 查看模板
GET _cat/templates/.monitoring*?v
# 查看是否有 .monitoring-es-* 的索引
GET _cat/indices/.monitoring-*
# 查看集羣配置
GET /_cluster/settings
  • 修改集羣配置
PUT _cluster/settings
{
  "persistent": {
    "xpack": {
      "monitoring": {
        "elasticsearch": {
          "collection": {
            "enabled": "true"
          }
        },
        "collection": {
          "enabled": "true"
        }
      }
    }
  }
}
  • 檢查集羣是否至少有一個具備ingest 身份的節點

image.png

本文出自 qbit snap
相關文章
相關標籤/搜索