a73f1bbe24ed78243ef41f9d7e9a6005218bb08f
[osm/MON.git] / osm_mon / collector / vnf_collectors / juju.py
1 # Copyright 2018 Whitestack, LLC
2 # *************************************************************
3
4 # This file is part of OSM Monitoring module
5 # All Rights Reserved to Whitestack, LLC
6
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
10
11 # http://www.apache.org/licenses/LICENSE-2.0
12
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
17 # under the License.
18
19 # For those usages not covered by the Apache License, Version 2.0 please
20 # contact: bdiaz@whitestack.com or glavado@whitestack.com
21 ##
22 import asyncio
23 import logging
24 from typing import List
25
26 from n2vc.vnf import N2VC
27
28 from osm_mon.collector.metric import Metric
29 from osm_mon.collector.vnf_collectors.base import BaseCollector
30 from osm_mon.collector.vnf_metric import VnfMetric
31 from osm_mon.core.common_db import CommonDbClient
32 from osm_mon.core.config import Config
33 from osm_mon.core.exceptions import VcaDeploymentInfoNotFound
34
35 log = logging.getLogger(__name__)
36
37
38 class VCACollector(BaseCollector):
39 def __init__(self, config: Config):
40 super().__init__(config)
41 self.common_db = CommonDbClient(config)
42 self.loop = asyncio.get_event_loop()
43 self.n2vc = N2VC(server=config.get('vca', 'host'), user=config.get('vca', 'user'),
44 secret=config.get('vca', 'secret'))
45
46 def collect(self, vnfr: dict) -> List[Metric]:
47 nsr_id = vnfr['nsr-id-ref']
48 vnf_member_index = vnfr['member-vnf-index-ref']
49 vnfd = self.common_db.get_vnfd(vnfr['vnfd-id'])
50
51 # Populate extra tags for metrics
52 tags = {}
53 tags['ns_name'] = self.common_db.get_nsr(nsr_id)['name']
54 if vnfr['_admin']['projects_read']:
55 tags['project_id'] = vnfr['_admin']['projects_read'][0]
56 else:
57 tags['project_id'] = None
58
59 metrics = []
60 for vdur in vnfr['vdur']:
61 # This avoids errors when vdur records have not been completely filled
62 if 'name' not in vdur:
63 continue
64 vdu = next(
65 filter(lambda vdu: vdu['id'] == vdur['vdu-id-ref'], vnfd['vdu'])
66 )
67 if 'vdu-configuration' in vdu and 'metrics' in vdu['vdu-configuration']:
68 try:
69 vca_deployment_info = self.get_vca_deployment_info(nsr_id, vnf_member_index, vdur['vdu-id-ref'],
70 vdur['count-index'])
71 except VcaDeploymentInfoNotFound as e:
72 log.warning(repr(e))
73 continue
74 measures = self.loop.run_until_complete(self.n2vc.GetMetrics(vca_deployment_info['model'],
75 vca_deployment_info['application']))
76 log.debug('Measures: %s', measures)
77 for measure_list in measures.values():
78 for measure in measure_list:
79 log.debug("Measure: %s", measure)
80 metric = VnfMetric(nsr_id, vnf_member_index, vdur['name'], measure['key'],
81 float(measure['value'], tags))
82 metrics.append(metric)
83 if 'vnf-configuration' in vnfd and 'metrics' in vnfd['vnf-configuration']:
84 try:
85 vca_deployment_info = self.get_vca_deployment_info(nsr_id, vnf_member_index)
86 except VcaDeploymentInfoNotFound as e:
87 log.warning(repr(e))
88 return metrics
89 measures = self.loop.run_until_complete(self.n2vc.GetMetrics(vca_deployment_info['model'],
90 vca_deployment_info['application']))
91 log.debug('Measures: %s', measures)
92 for measure_list in measures.values():
93 for measure in measure_list:
94 log.debug("Measure: %s", measure)
95 metric = VnfMetric(nsr_id, vnf_member_index, '', measure['key'], float(measure['value'], tags))
96 metrics.append(metric)
97 return metrics
98
99 def get_vca_deployment_info(self, nsr_id, vnf_member_index, vdu_id=None, vdu_count=0):
100 nsr = self.common_db.get_nsr(nsr_id)
101 for vca_deployment in nsr["_admin"]["deployed"]["VCA"]:
102 if vca_deployment:
103 if vdu_id is None:
104 if vca_deployment['member-vnf-index'] == vnf_member_index and vca_deployment['vdu_id'] is None:
105 return vca_deployment
106 else:
107 if vca_deployment['member-vnf-index'] == vnf_member_index and \
108 vca_deployment['vdu_id'] == vdu_id and vca_deployment['vdu_count_index'] == vdu_count:
109 return vca_deployment
110 raise VcaDeploymentInfoNotFound(
111 "VCA deployment info for nsr_id {}, index {}, vdu_id {} and vdu_count_index {} not found.".format(
112 nsr_id,
113 vnf_member_index,
114 vdu_id,
115 vdu_count))