# Collect NS IDs for periodical dashboard clean-up
osm_resource_uids.append(nsr_id)
# Check if the NSR's VNFDs contain metrics
- constituent_vnfds = nsr['nsd']['constituent-vnfd']
- for constituent_vnfd in constituent_vnfds:
+ # Only one DF at the moment, support for this feature is comming in the future
+ vnfds_profiles = nsr['nsd']["df"][0]['vnf-profile']
+ for vnf_profile in vnfds_profiles:
try:
- vnfd = self.common_db.get_vnfd_by_name(constituent_vnfd['vnfd-id-ref'])
+ vnfd = self.common_db.get_vnfd_by_id(vnf_profile['vnfd-id'])
# If there are metrics, create dashboard (if exists)
- if vnfd and 'monitoring-param' in vnfd:
+ if vnfd and 'monitoring-parameter' in vnfd:
if nsr_id not in dashboard_uids:
nsr_name = nsr['name']
project_id = nsr["_admin"]["projects_read"][0]