We couldn't activate monitoring in kibbana

I have increase size of my disk. after that i am seeing this and my files are not loading in elastisearch.
error

Hi @osamaikhlas,

Can you run this query in the dev tools and paste the response?

POST .monitoring-es-6-*/_search
{
  "size": 1,
  "query": {
    "bool": {
      "filter": {
        "range": {
          "timestamp": {
            "gte": "now-1h",
            "lte": "now"
          }
        }
      }
    }
  },
  "sort": [
    {
      "timestamp": {
        "order": "desc"
      }
    }
  ], 
  "aggs": {
    "clusters": {
      "terms": {
        "field": "cluster_uuid",
        "size": 10
      }
    }
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.