mirror of https://github.com/apache/cloudstack.git
plugin: Set prometheus.exporter.enable as not dynamic (#4174)
Fixes #4173
This commit is contained in:
parent
d66690fe82
commit
e8fe35bd59
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue