Hi, we've just upgraded to Elastic Stack v6.6 and tried to enable monitoring (we didn't have it enabled before).
I've set the following parameters in elasticsearch.yml:
xpack.monitoring.enabled: true xpack.monitoring.collection.enabled: true xpack.monitoring.elasticsearch.collection.enabled: true
kibana.yml:
xpack.monitoring.enabled: true xpack.monitoring.kibana.collection.enabled: true xpack.monitoring.ui.container.elasticsearch.enabled: true
logstash.yml:
xpack.monitoring.enabled: true xpack.monitoring.elasticsearch.url: ["elasticsearch:9200"]
When going on the Monitoring tab in Kibana I get the following error:
When pressing the button I get the following error:
Upon checking the _cluster/settings endpoint I get the following:
{
"persistent": {
"archived": {
"xpack": {
"monitoring": {
"collection": {
"enabled": "true"
}
}
}
}
},
"transient": {
}
}
And I can't run the PUT request on the elastic guides on enabling monitoring because it gives me basically the same error that Kibana does.
Have I gone wrong somewhere or have things broken on the new release?