Collect null project_ids as empty strings
[osm/MON.git] / osm_mon / collector / vnf_collectors / vio.py
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2016-2017 VMware Inc.
5 # This file is part of ETSI OSM
6 # All Rights Reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License"); you may
9 # not use this file except in compliance with the License. You may obtain
10 # a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17 # License for the specific language governing permissions and limitations
18 # under the License.
19 #
20 # For those usages not covered by the Apache License, Version 2.0 please
21 # contact: osslegalrouting@vmware.com
22 ##
23
24 import logging
25
26 from osm_mon.collector.vnf_collectors.base_vim import BaseVimCollector
27 from osm_mon.collector.vnf_collectors.vrops.vrops_helper import vROPS_Helper
28 from osm_mon.core.common_db import CommonDbClient
29 from osm_mon.core.config import Config
30
31 log = logging.getLogger(__name__)
32
33
34 class VIOCollector(BaseVimCollector):
35 def __init__(self, config: Config, vim_account_id: str):
36 super().__init__(config, vim_account_id)
37 self.common_db = CommonDbClient(config)
38 cfg = self.get_vim_account(vim_account_id)
39 self.vrops = vROPS_Helper(vrops_site=cfg['vrops_site'],
40 vrops_user=cfg['vrops_user'],
41 vrops_password=cfg['vrops_password'])
42
43 def get_vim_account(self, vim_account_id: str):
44 vim_account_info = self.common_db.get_vim_account(vim_account_id)
45 return vim_account_info['config']
46
47 def collect(self, vnfr: dict):
48 vnfd = self.common_db.get_vnfd(vnfr['vnfd-id'])
49 vdu_mappings = {}
50
51 # Populate extra tags for metrics
52 nsr_id = vnfr['nsr-id-ref']
53 tags = {}
54 tags['ns_name'] = self.common_db.get_nsr(nsr_id)['name']
55 if vnfr['_admin']['projects_read']:
56 tags['project_id'] = vnfr['_admin']['projects_read'][0]
57 else:
58 tags['project_id'] = ''
59
60 # Fetch the list of all known resources from vROPS.
61 resource_list = self.vrops.get_vm_resource_list_from_vrops()
62
63 for vdur in vnfr['vdur']:
64 # This avoids errors when vdur records have not been completely filled
65 if 'name' not in vdur:
66 continue
67
68 vdu = next(
69 filter(lambda vdu: vdu['id'] == vdur['vdu-id-ref'], vnfd['vdu'])
70 )
71 if 'monitoring-param' not in vdu:
72 continue
73
74 vim_id = vdur['vim-id']
75 vdu_mappings[vim_id] = {'name': vdur['name']}
76
77 # Map the vROPS instance id to the vim-id so we can look it up.
78 for resource in resource_list:
79 for resourceIdentifier in resource['resourceKey']['resourceIdentifiers']:
80 if resourceIdentifier['identifierType']['name'] == 'VMEntityInstanceUUID':
81 if resourceIdentifier['value'] != vim_id:
82 continue
83 vdu_mappings[vim_id]['vrops_id'] = resource['identifier']
84
85 if len(vdu_mappings) != 0:
86 return self.vrops.get_metrics(vdu_mappings=vdu_mappings,
87 monitoring_params=vdu['monitoring-param'],
88 vnfr=vnfr,
89 tags=tags
90 )
91 else:
92 return []