# Partial Legacy Monitoring

**URL:** https://discuss.elastic.co/t/partial-legacy-monitoring/290967
**Category:** Kibana
**Tags:** elastic-stack-monitoring
**Created:** [December 4, 2021, 10:40pm UTC](https://discuss.elastic.co/t/partial-legacy-monitoring/290967 "2021-12-04T22:40:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![gimpastic](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/gimpastic/32/98233_2.png) [@gimpastic](https://discuss.elastic.co/u/gimpastic)
#### Post date: [December 4, 2021, 10:40pm UTC](https://discuss.elastic.co/t/partial-legacy-monitoring/290967/1 "2021-12-04T22:40:13Z")

</div>

I'm getting the notification window "Partial Legacy Monitoring " each time when I open [https://kibana.x.com/app/monitoring](https://kibana.x.com/app/monitoring)  
I'm using metricbeats\filebeats to monitor the stack

```nohighlight
Partial Legacy Monitoring Detected

It appears you are using both Metricbeat and "Legacy Collection" for Stack Monitoring. In 8.0.0, you must use Metricbeat to collect monitoring data. Please follow the steps in setup mode to migrate the rest of the monitoring to Metricbeat.

```

Elasticsearch.yml

```auto
xpack:
  monitoring:
    elasticsearch:
      collection:
        enabled: false
    enabled: false
    collection:
      enabled: false
  security:
    enabled: true
    audit:
      enabled: false

```

Any ideas how to disable Legacy Monitoring ?

---

<div class="post-metadata">

### Author: ![Sandra](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/sandra/32/79183_2.png) [@Sandra](https://discuss.elastic.co/u/Sandra)
#### Post date: [December 8, 2021, 2:56pm UTC](https://discuss.elastic.co/t/partial-legacy-monitoring/290967/2 "2021-12-08T14:56:42Z")

</div>

If your nodes are already started and you want to persist the setting use the cluster API:

```auto
PUT _cluster/settings
{
  "persistent": {
    "xpack.monitoring.elasticsearch.collection.enabled": false
  }
}

```

The messaging for partial legacy monitoring should stop within a minute.

> **[Configuring Elasticsearch | Elasticsearch Guide \[7.16\] | Elastic](https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html)**

---

<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: [January 5, 2022, 2:57pm UTC](https://discuss.elastic.co/t/partial-legacy-monitoring/290967/3 "2022-01-05T14:57:01Z")

</div>

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