From: Atul Agarwal Date: Thu, 14 Oct 2021 06:23:48 +0000 (+0000) Subject: Resolved 1684 - MON fails to collect metrics from an OpenStack VIM with metrics suppo... X-Git-Tag: v10.0.3^0 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FMON.git;a=commitdiff_plain;h=bd57a7e92c55798cb0b5b74791b821593bc362ad Resolved 1684 - MON fails to collect metrics from an OpenStack VIM with metrics support if there is another OpenStack VIM without metrics support registered Change-Id: I3a0a737292975b8cbdfb0b3cb5d4549e56679334 Signed-off-by: Atul Agarwal --- diff --git a/osm_mon/collector/service.py b/osm_mon/collector/service.py index 005f844..132e9da 100644 --- a/osm_mon/collector/service.py +++ b/osm_mon/collector/service.py @@ -211,9 +211,9 @@ class CollectorService: ) metrics.extend(result) log.debug("result = %s" % (result)) - except keystoneauth1.exceptions.connection.ConnectTimeout as e: - log.info("Keystone connection timeout during metric collection") - log.debug("Keystone connection timeout exception %s" % (e)) + except keystoneauth1.exceptions.connection.ConnectionError as e: + log.info("Keystone connection error during metric collection") + log.debug("Keystone connection error exception %s" % (e)) except concurrent.futures.TimeoutError as e: # Some processes have not completed due to timeout error log.info(