Partial Legacy Monitoring

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

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

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

Any ideas how to disable Legacy Monitoring ?

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

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

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

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