Disable monitoring in ML multinode tests (#55461)

Removing the deprecated "xpack.monitoring.enabled" setting introduced
log spam and potentially some failures in ML tests. It's possible to use
a different, non-deprecated setting to disable monitoring, so we do that
here.
This commit is contained in:
William Brafford 2020-04-20 10:37:19 -04:00 committed by William Brafford
parent 99409e8c95
commit 7817948926
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ testClusters.integTest {
testDistribution = 'DEFAULT'
numberOfNodes = 3
setting 'xpack.security.enabled', 'false'
setting 'xpack.monitoring.elasticsearch.collection.enabled', 'false'
setting 'xpack.watcher.enabled', 'false'
setting 'xpack.ml.enabled', 'true'
setting 'xpack.license.self_generated.type', 'trial'

View File

@ -40,6 +40,7 @@ testClusters.integTest {
testDistribution = 'DEFAULT'
setting 'xpack.security.enabled', 'true'
setting 'xpack.monitoring.elasticsearch.collection.enabled', 'false'
setting 'xpack.ml.enabled', 'true'
setting 'xpack.watcher.enabled', 'false'
setting 'xpack.security.authc.token.enabled', 'true'