Add missing setting

Original commit: elastic/x-pack-elasticsearch@59db7b52fd
This commit is contained in:
Simon Willnauer 2016-02-03 14:09:42 +01:00
parent 610bd8c820
commit 11d4e69267
1 changed files with 1 additions and 0 deletions

View File

@ -139,6 +139,7 @@ public class MarvelPlugin extends Plugin {
module.registerSetting(INDEX_MARVEL_TEMPLATE_VERSION_SETTING);
// TODO convert these settings to where they belong
module.registerSetting(Setting.simpleString("marvel.agent.exporter.es.ssl.truststore.password", false, Setting.Scope.CLUSTER));
module.registerSetting(Setting.simpleString("marvel.agent.exporter.es.ssl.truststore.path", false, Setting.Scope.CLUSTER));
module.registerSetting(Setting.boolSetting("marvel.enabled", false, false, Setting.Scope.CLUSTER));
}
}