# Kibana dashboard for ES cluster monitoring

**URL:** https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036
**Category:** Elasticsearch
**Created:** [August 14, 2020, 3:21pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036 "2020-08-14T15:21:07Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![dominique.bejean](https://avatars.discourse-cdn.com/v4/letter/d/dc4da7/32.png) [@dominique.bejean](https://discuss.elastic.co/u/dominique.bejean)
#### Post date: [August 14, 2020, 3:21pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/1 "2020-08-14T15:21:07Z")

</div>

Hi,

I have 2 separate ES clusters. One is dedicated to monitoring. I followed these instructions  
[https://www.elastic.co/guide/en/elasticsearch/reference/current/monitoring-production.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/monitoring-production.html)

On the monitoring cluster I have "metricbeat-7.8.1-2020.08.14" indice populated by with data sent by metricbeats elasticsearch module.

I want to create a dashboard, but I can't find any elasticsearch dashboard template in the list.

With merticbeats, I have launch the command "./metricbeat setup --dashboards" with success, but still no dashboard for elasticsearch in the list.

Any suggestions ?

Regards

Dominique

---

<div class="post-metadata">

### Author: ![elasticforme](https://avatars.discourse-cdn.com/v4/letter/e/f05b48/32.png) [@elasticforme](https://discuss.elastic.co/u/elasticforme)
#### Post date: [August 14, 2020, 3:34pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/2 "2020-08-14T15:34:12Z")

</div>

I don't think it loads any special dashboard.

you need to go to "stack monitoring" it is heart looking icon on left pan.

[https://www.elastic.co/guide/en/kibana/7.8/monitoring-data.html](https://www.elastic.co/guide/en/kibana/7.8/monitoring-data.html)

---

<div class="post-metadata">

### Author: ![dominique.bejean](https://avatars.discourse-cdn.com/v4/letter/d/dc4da7/32.png) [@dominique.bejean](https://discuss.elastic.co/u/dominique.bejean)
#### Post date: [August 14, 2020, 3:53pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/3 "2020-08-14T15:53:55Z")

</div>

Sachin,

I tried this also.

I went in "Stack Monitoring" and I have the messsage " No monitoring data found".  
When I click on "Set up monitoring with Metricbeat", I have the following error message "Setup mode is not available. You do not have the necessary permissions to do this."

Elastic security features are disabled.

Dominique

---

<div class="post-metadata">

### Author: ![elasticforme](https://avatars.discourse-cdn.com/v4/letter/e/f05b48/32.png) [@elasticforme](https://discuss.elastic.co/u/elasticforme)
#### Post date: [August 14, 2020, 3:59pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/4 "2020-08-14T15:59:00Z")

</div>

> [@dominique.bejean](#):
>
> Setup mode is not available. You do not have the necessary permissions to do this

what is the user you logging in to as? elastic?

---

<div class="post-metadata">

### Author: ![dominique.bejean](https://avatars.discourse-cdn.com/v4/letter/d/dc4da7/32.png) [@dominique.bejean](https://discuss.elastic.co/u/dominique.bejean)
#### Post date: [August 14, 2020, 4:02pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/5 "2020-08-14T16:02:03Z")

</div>

None. I am not prompted for login.

I have these settings  
- xpack.license.self\_generated.type=basic  
- xpack.security.enabled=false

I don't want enable any not free feature.

Dominique

---

<div class="post-metadata">

### Author: ![elasticforme](https://avatars.discourse-cdn.com/v4/letter/e/f05b48/32.png) [@elasticforme](https://discuss.elastic.co/u/elasticforme)
#### Post date: [August 14, 2020, 4:13pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/6 "2020-08-14T16:13:02Z")

</div>

yes that is fine. but you should look in to it. basic license is free and has so many feature, like  
tenent-user setup which will be very useful.

anyway do you have enable metricbeat collection true and legacy monitor false? because you can use only one at a time

```
PUT _cluster/settings
{
  "persistent": {
    "xpack.monitoring.collection.enabled": true
  }
}

this one disables old style collection. 
PUT _cluster/settings
{
  "persistent": {
    "xpack.monitoring.elasticsearch.collection.enabled": false
  }
}

```

you can execute this from kibana developer tool

then stop start everything if you only on test systems. you can also put this on all elasticserach.yml file

---

<div class="post-metadata">

### Author: ![dominique.bejean](https://avatars.discourse-cdn.com/v4/letter/d/dc4da7/32.png) [@dominique.bejean](https://discuss.elastic.co/u/dominique.bejean)
#### Post date: [August 14, 2020, 4:41pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/7 "2020-08-14T16:41:54Z")

</div>

Sachin,

I just did this on the monitoring cluster and restart everything.  
Now, on the monitoring cluster I have acces to monitoring of my local monitoring cluster + 2 metricbeats but only with few system metrics. I still can't see any monitoring data related to my production elasticsearch cluster (event if the "metricbeat-7.8.1-2020.08.14" collection contains informations related to shards, docs, ... of the remote production cluster).

Anyway thank you for your help.

Dominique

---

<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: [August 16, 2020, 10:04pm UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/8 "2020-08-16T22:04:01Z")

</div>

Did you use this module - [https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-module-elasticsearch.html](https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-module-elasticsearch.html)?

---

<div class="post-metadata">

### Author: ![dominique.bejean](https://avatars.discourse-cdn.com/v4/letter/d/dc4da7/32.png) [@dominique.bejean](https://discuss.elastic.co/u/dominique.bejean)
#### Post date: [August 17, 2020, 8:13am UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/9 "2020-08-17T08:13:28Z")

</div>

Hi Warkolm,

Yes I did.

I work under Docker with docker-compose in order to implement this architecture :

- one production cluster without any monitoring (Kibana is used only for Stack Managment and Dev Tools)
  - 3 es container
  - 1 kibana container
  - 1 metricbeats container for es module
  - 1 metricbeats container for system module

- one monitoring cluster (monitor the production server)
  - 2 es container
  - 1 kibana container

Reference :

- [https://www.elastic.co/guide/en/elasticsearch/reference/current/monitoring-production.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/monitoring-production.html)
- [https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-metricbeat.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-metricbeat.html)

According to Sachin response, my question is not anymore about finding a Kibana dashboard for ES Cluster monitoring, but about correctly visualize production cluster monitoring informations under the "Stack Monitoring" of the monitoring cluster. I can't find ES metrics, but only few system metrics.

Everything is here : [https://github.com/bejean/docker-elasticsearch-cluster-monitoring](https://github.com/bejean/docker-elasticsearch-cluster-monitoring)

Regards

Dominique

---

<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: [September 14, 2020, 8:13am UTC](https://discuss.elastic.co/t/kibana-dashboard-for-es-cluster-monitoring/245036/10 "2020-09-14T08:13:34Z")

</div>

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