kibana We couldn't activate monitoring

调节一下监控状态查询的时间范围,有时候,刚启动监控,数据没有生成。把”last 1 hour“改成 具体有数据的时间

 

用如下语句查看,监控日志在不断生成。重启kibana后正常有监控画面了。

GET /.monitoring-es-6-*/_search
{
  "size": 0,
  "query": {
    "term": {
      "type": "cluster_stats"
    }
  },
  "aggs": {
    "group_by_day": {
      "date_histogram": {
        "field": "timestamp",
        "interval": "hour"
      }
    }
  }
}

 

 

posted @ 2019-08-26 15:06  Bigben  阅读(2123)  评论(0编辑  收藏  举报