You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2020/07/07 07:15:00 UTC

[cloudstack] branch master updated: plugin: Set prometheus.exporter.enable as not dynamic (#4174)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
     new e8fe35b  plugin: Set prometheus.exporter.enable as not dynamic (#4174)
e8fe35b is described below

commit e8fe35bd59487fadf928867b5e6454cb2ad27d4d
Author: Filippo Projetto <fi...@gmail.com>
AuthorDate: Tue Jul 7 08:14:48 2020 +0100

    plugin: Set prometheus.exporter.enable as not dynamic (#4174)
    
    Fixes #4173
---
 .../java/org/apache/cloudstack/metrics/PrometheusExporterServer.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/integrations/prometheus/src/main/java/org/apache/cloudstack/metrics/PrometheusExporterServer.java b/plugins/integrations/prometheus/src/main/java/org/apache/cloudstack/metrics/PrometheusExporterServer.java
index e030352..12d513c 100644
--- a/plugins/integrations/prometheus/src/main/java/org/apache/cloudstack/metrics/PrometheusExporterServer.java
+++ b/plugins/integrations/prometheus/src/main/java/org/apache/cloudstack/metrics/PrometheusExporterServer.java
@@ -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);