bugfix: prometheus scrape jobs populate function called before mongoDB was ready...
[osm/MON.git] / osm_mon / server / service.py
index 584a42f..d1b408b 100755 (executable)
@@ -60,7 +60,8 @@ class ServerService:
     def populate_prometheus(self):
         # This method can be executed infinite number of times
         # without side-effects.
-        self.common_db.common_db.set_one(
+        log.info("Setting up MON Exporter in prometheus")
+        result = self.common_db.common_db.set_one(
             "prometheus_jobs", {"job_name": "mon_exporter"}, {
                 "job_name": "mon_exporter",
                 "static_configs": [
@@ -74,3 +75,4 @@ class ServerService:
             fail_on_empty=False,
             upsert=True
         )
+        log.info("Prometheus Jobs added > {}".format(result))