# Kibana monitor data display nothing

**URL:** https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760
**Category:** Kibana
**Tags:** elastic-stack-monitoring
**Created:** [April 6, 2022, 1:16pm UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760 "2022-04-06T13:16:08Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![GaiserChan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/gaiserchan/32/104043_2.png) [@GaiserChan](https://discuss.elastic.co/u/GaiserChan)
#### Post date: [April 6, 2022, 1:16pm UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/1 "2022-04-06T13:16:08Z")

</div>

i have these index data such as ".monitoring-es-7\*" ".monitoring-kibana-7\*"...  
but kibana monitoring show message "we couldn`t activate monitoring"  
i check F12 in chrome found /api/monitoring/v1/clusters response empty cluster info

 ![5d6ded154946462ae2c79fd669f09c1a](https://us1.discourse-cdn.com/elastic/original/3X/9/b/9b40b42600962d55d0285eeff249446d3539d168.jpeg)

---

<div class="post-metadata">

### Author: ![zx8086](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/zx8086/32/94917_2.png) [@zx8086](https://discuss.elastic.co/u/zx8086)
#### Post date: [April 6, 2022, 1:48pm UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/2 "2022-04-06T13:48:40Z")

</div>

Hi @GaiserChan, Welcome to the forum!

This is a common problem posted various times on this board. A quick search should find your particular solution.

---

<div class="post-metadata">

### Author: ![GaiserChan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/gaiserchan/32/104043_2.png) [@GaiserChan](https://discuss.elastic.co/u/GaiserChan)
#### Post date: [April 6, 2022, 3:39pm UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/3 "2022-04-06T15:39:46Z")

</div>

> [@zx8086](#):
>
> your

thanks for your reply. I search this problem on this board, and I found this reply

> [@Kibana monitoring gaps when data node is replaced](https://discuss.elastic.co/t/kibana-monitoring-gaps-when-data-node-is-replaced/211432):
>
> Hi, I am using ES 7.2.0 on AWS spot instances. Cluster is comprised of 5 Master nodes, 8 Data nodes and 2 Coordinators. I noticed that whenever a data node is replaced (due to spot replacement), there are monitoring gaps in the whole cluster During the gaps I tested GET .monitoring-es-7-/\_search\* and it returned valid information. The gap usually starts when the node goes up, until the EBS was warmed up and it's read latency is reduced (usually takes ~20-30 mins). Note that the cluste…

but I don`t know what should I do for my cluster. should I Post the same query DSL to cluster?

---

<div class="post-metadata">

### Author: ![zx8086](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/zx8086/32/94917_2.png) [@zx8086](https://discuss.elastic.co/u/zx8086)
#### Post date: [April 6, 2022, 4:00pm UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/4 "2022-04-06T16:00:47Z")

</div>

Can you share more info on your setup? Version, deployment, is it a fresh install or a upgrade ?

---

<div class="post-metadata">

### Author: ![GaiserChan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/gaiserchan/32/104043_2.png) [@GaiserChan](https://discuss.elastic.co/u/GaiserChan)
#### Post date: [April 7, 2022, 2:43am UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/5 "2022-04-07T02:43:28Z")

</div>

ES version:7.5.1  
kibana version:7.4.2  
I restarted after repairing the master node and found that the monitoring data was gone.  
The operation steps are:  
1.PUT /\_cluster/settings { "transient" : { "cluster.routing.allocation.enable" : "none" } }  
2. kill $pid  
3.Repair node machine failure  
4. /bin/Elasticsearch -d  
5.PUT /\_cluster/settings { "transient" : { "cluster.routing.allocation.enable" : "all" } }

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [April 7, 2022, 3:52am UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/6 "2022-04-07T03:52:42Z")

</div>

> [@GaiserChan](#):
>
> ES version:7.5.1  
> kibana version:7.4.2

Both of these are [EOL](https://www.elastic.co/support/eol) and you need to upgrade please 🙂

Also, you should really be running Elasticsearch and Kibana at the same minor version, not mixed ones. Different patch levels are ok.

---

<div class="post-metadata">

### Author: ![GaiserChan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/gaiserchan/32/104043_2.png) [@GaiserChan](https://discuss.elastic.co/u/GaiserChan)
#### Post date: [April 7, 2022, 9:28am UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/7 "2022-04-07T09:28:55Z")

</div>

But I can retrieve the corresponding monitoring data through the query, and the monitoring dashboard has always had data before.

```json
POST .monitoring-es-*/_search
{
  "query": {
    "bool": {
      "filter": [
        {
          "term": {
            "cluster_uuid": "<cluster_uuid>"
          }
        },
        {
          "range": {
            "timestamp": {
              "gte": "2022-04-06T00:00:00.000Z",
              "lte": "2022-04-06T10:00:00.000Z"
            }
          }
        }
      ]
    }
  },
  "aggs": {
    "check": {
      "date_histogram": {
        "field": "timestamp",
        "fixed_interval": "1m"
      },
      "aggs": {
        "metric": {
          "max": {
            "field": "indices_stats._all.total.search.query_total"
          }
        },
        "metric_deriv": {
          "derivative": {
            "buckets_path": "metric",
            "gap_policy": "skip",
            "unit": "1m"
          }
        }
      }
    }
  }
}

```

 ![wecom-temp-fdc92a884fa58116424bbfc734ef0651](https://us1.discourse-cdn.com/elastic/original/3X/d/9/d97cec117bed46165ebe7d11ae915e64876c1662.jpeg)

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [April 7, 2022, 9:51am UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/8 "2022-04-07T09:51:09Z")

</div>

7.5 is no longer supported sorry.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [May 5, 2022, 9:51am UTC](https://discuss.elastic.co/t/kibana-monitor-data-display-nothing/301760/9 "2022-05-05T09:51:22Z")

</div>

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