X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Fcollector%2Finfra_collectors%2Fvmware.py;fp=osm_mon%2Fcollector%2Finfra_collectors%2Fvmware.py;h=6547ab8c0c3fb3ad0416a5a24df6e26b4b43a264;hb=918706d5a1c39dbb3edaf8e3cb1ef336fdb644dd;hp=65e739db1027321d7dd83d8b16dc844301aa551b;hpb=bc381800d690aed4052670808a93dd868fdd0297;p=osm%2FMON.git diff --git a/osm_mon/collector/infra_collectors/vmware.py b/osm_mon/collector/infra_collectors/vmware.py index 65e739d..6547ab8 100644 --- a/osm_mon/collector/infra_collectors/vmware.py +++ b/osm_mon/collector/infra_collectors/vmware.py @@ -194,35 +194,40 @@ class VMwareInfraCollector(BaseVimInfraCollector): vim_status_metric = Metric(vim_tags, "vim_status", vim_status) metrics.append(vim_status_metric) vnfrs = self.common_db.get_vnfrs(vim_account_id=vim_account_id) - for vnfr in vnfrs: - nsr_id = vnfr["nsr-id-ref"] - ns_name = self.common_db.get_nsr(nsr_id)["name"] - vnf_member_index = vnfr["member-vnf-index-ref"] - if vnfr["_admin"]["projects_read"]: - vnfr_project_id = vnfr["_admin"]["projects_read"][0] - else: - vnfr_project_id = "" - for vdur in vnfr["vdur"]: - resource_uuid = vdur["vim-id"] - tags = { - "vim_account_id": self.vim_account_id, - "resource_uuid": resource_uuid, - "nsr_id": nsr_id, - "ns_name": ns_name, - "vnf_member_index": vnf_member_index, - "vdur_name": vdur["name"], - "project_id": vnfr_project_id, - } - try: - vm_list = self.check_vm_status(resource_uuid) - for vm in vm_list: - if vm["status"] == "4" and vm["deployed"] == "true": - vm_status = 1 - else: - vm_status = 0 - vm_status_metric = Metric(tags, "vm_status", vm_status) - except Exception: - log.exception("VM status is not OK!") - vm_status_metric = Metric(tags, "vm_status", 0) - metrics.append(vm_status_metric) + if self.conf.get("collector", "vm_infra_metrics"): + vm_infra_metrics_enabled = str(self.conf.get("collector", "vm_infra_metrics")).lower() in ("yes", "true", "1") + else: + vm_infra_metrics_enabled = True + if vm_infra_metrics_enabled: + for vnfr in vnfrs: + nsr_id = vnfr["nsr-id-ref"] + ns_name = self.common_db.get_nsr(nsr_id)["name"] + vnf_member_index = vnfr["member-vnf-index-ref"] + if vnfr["_admin"]["projects_read"]: + vnfr_project_id = vnfr["_admin"]["projects_read"][0] + else: + vnfr_project_id = "" + for vdur in vnfr["vdur"]: + resource_uuid = vdur["vim-id"] + tags = { + "vim_account_id": self.vim_account_id, + "resource_uuid": resource_uuid, + "nsr_id": nsr_id, + "ns_name": ns_name, + "vnf_member_index": vnf_member_index, + "vdur_name": vdur["name"], + "project_id": vnfr_project_id, + } + try: + vm_list = self.check_vm_status(resource_uuid) + for vm in vm_list: + if vm["status"] == "4" and vm["deployed"] == "true": + vm_status = 1 + else: + vm_status = 0 + vm_status_metric = Metric(tags, "vm_status", vm_status) + except Exception: + log.exception("VM status is not OK!") + vm_status_metric = Metric(tags, "vm_status", 0) + metrics.append(vm_status_metric) return metrics