From 9c6bca67a36b610cfab6bf89d9a12e1634bad628 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Tue, 4 May 2021 19:32:21 +0200 Subject: [PATCH] Fix bug 1246 Remove hardcoded hostname in dashboarder.py Additionally, I commented out two lines in osm_mon/collector/vnf_collectors/juju.py because flake8 was complaining about those two not being used Change-Id: I44c7b083fe99ee910eb4adc0da7d6a01aac5b979 Signed-off-by: David Garcia (cherry picked from commit 5269fc31c6ed52819996f85f15e740a97b5ad688) --- osm_mon/dashboarder/dashboarder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/osm_mon/dashboarder/dashboarder.py b/osm_mon/dashboarder/dashboarder.py index 8b16988..3b454b8 100644 --- a/osm_mon/dashboarder/dashboarder.py +++ b/osm_mon/dashboarder/dashboarder.py @@ -25,6 +25,7 @@ import logging import time import socket import asyncio +from urllib.parse import urlparse from osm_mon.dashboarder.service import DashboarderService from osm_mon.core.config import Config @@ -119,9 +120,10 @@ class Dashboarder: def dashboard_forever(self): log.debug('dashboard_forever') + grafana_parsed_uri = urlparse(self.conf.get('grafana', 'url')) while True: try: - socket.gethostbyname("grafana") + socket.gethostbyname(grafana_parsed_uri.hostname) log.debug("Dashboard backend is running") except socket.error: log.debug("Dashboard backend is not available") -- 2.25.1