From d2ca1143b99c885ade0c63c5a0cadd9334071460 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Thu, 9 Nov 2023 08:49:03 +0000 Subject: [PATCH 1/1] Bug Fix - 2305: Automated scaling of Vnf is not happening through metrics collected by feature Service KPI of VNF using exporter endpoint Change-Id: I5e7049693ccdffbe263b44cb16b7e0a155886207 Signed-off-by: Rahul Kumar --- osm_mon/collector/vnf_collectors/openstack.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/osm_mon/collector/vnf_collectors/openstack.py b/osm_mon/collector/vnf_collectors/openstack.py index 514245b..6aedf88 100644 --- a/osm_mon/collector/vnf_collectors/openstack.py +++ b/osm_mon/collector/vnf_collectors/openstack.py @@ -148,7 +148,10 @@ class OpenstackCollector(BaseVimCollector): if type(self.backend) is PrometheusTSBDBackend: openstack_metric_name = self.backend.map_metric(metric_name) else: - openstack_metric_name = METRIC_MAPPINGS[metric_name] + try: + openstack_metric_name = METRIC_MAPPINGS[metric_name] + except KeyError: + continue metric_type = self._get_metric_type(metric_name) try: resource_id = self._get_resource_uuid( -- 2.25.1