plugin: Set prometheus.exporter.enable as not dynamic (#4174)

Fixes #4173
This commit is contained in:
Filippo Projetto 2020-07-07 08:14:48 +01:00 committed by GitHub
parent d66690fe82
commit e8fe35bd59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ import com.cloud.utils.component.Manager;
public interface PrometheusExporterServer extends Manager {
ConfigKey<Boolean> EnablePrometheusExporter = new ConfigKey<>("Advanced", Boolean.class, "prometheus.exporter.enable", "false",
"Enable the prometheus exporter plugin, management server restart needed.", true);
"Enable the prometheus exporter plugin, management server restart needed.", false);
ConfigKey<Integer> PrometheusExporterServerPort = new ConfigKey<>("Advanced", Integer.class, "prometheus.exporter.port", "9595",
"The prometheus exporter server port", true);