| Benjamin Diaz | 416a753 | 2019-07-29 12:00:38 -0300 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | # Copyright 2018 Whitestack, LLC |
| 4 | # ************************************************************* |
| 5 | |
| 6 | # This file is part of OSM Monitoring module |
| 7 | # All Rights Reserved to Whitestack, LLC |
| 8 | |
| 9 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 10 | # not use this file except in compliance with the License. You may obtain |
| 11 | # a copy of the License at |
| 12 | |
| 13 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | # Unless required by applicable law or agreed to in writing, software |
| 16 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 18 | # License for the specific language governing permissions and limitations |
| 19 | # under the License. |
| 20 | # For those usages not covered by the Apache License, Version 2.0 please |
| 21 | # contact: bdiaz@whitestack.com or glavado@whitestack.com |
| 22 | ## |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 23 | |
| 24 | # This version uses a ProcessThreadPoolExecutor to limit the number of processes launched |
| 25 | |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 26 | import logging |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 27 | from typing import List |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 28 | import concurrent.futures |
| 29 | import time |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 30 | |
| 31 | from osm_mon.collector.infra_collectors.onos import OnosInfraCollector |
| 32 | from osm_mon.collector.infra_collectors.openstack import OpenstackInfraCollector |
| kasar | e82c062 | 2019-05-09 00:55:30 -0700 | [diff] [blame] | 33 | from osm_mon.collector.infra_collectors.vio import VIOInfraCollector |
| Benjamin Diaz | 416a753 | 2019-07-29 12:00:38 -0300 | [diff] [blame] | 34 | from osm_mon.collector.infra_collectors.vmware import VMwareInfraCollector |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 35 | from osm_mon.collector.metric import Metric |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 36 | from osm_mon.collector.vnf_collectors.juju import VCACollector |
| 37 | from osm_mon.collector.vnf_collectors.openstack import OpenstackCollector |
| 38 | from osm_mon.collector.vnf_collectors.vio import VIOCollector |
| 39 | from osm_mon.collector.vnf_collectors.vmware import VMwareCollector |
| 40 | from osm_mon.core.common_db import CommonDbClient |
| 41 | from osm_mon.core.config import Config |
| 42 | |
| 43 | log = logging.getLogger(__name__) |
| 44 | |
| 45 | VIM_COLLECTORS = { |
| 46 | "openstack": OpenstackCollector, |
| 47 | "vmware": VMwareCollector, |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 48 | "vio": VIOCollector, |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 49 | } |
| 50 | VIM_INFRA_COLLECTORS = { |
| kasar | f840f69 | 2019-04-19 03:57:58 -0700 | [diff] [blame] | 51 | "openstack": OpenstackInfraCollector, |
| kasar | e82c062 | 2019-05-09 00:55:30 -0700 | [diff] [blame] | 52 | "vmware": VMwareInfraCollector, |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 53 | "vio": VIOInfraCollector, |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 54 | } |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 55 | SDN_INFRA_COLLECTORS = {"onosof": OnosInfraCollector, "onos_vpls": OnosInfraCollector} |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 56 | |
| 57 | |
| 58 | class CollectorService: |
| 59 | def __init__(self, config: Config): |
| 60 | self.conf = config |
| 61 | self.common_db = CommonDbClient(self.conf) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 62 | return |
| Benjamin Diaz | a97bdb3 | 2019-04-10 15:22:22 -0300 | [diff] [blame] | 63 | |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 64 | # static methods to be executed in the Processes |
| 65 | @staticmethod |
| 66 | def _get_vim_type(conf: Config, vim_account_id: str) -> str: |
| 67 | common_db = CommonDbClient(conf) |
| Benjamin Diaz | 4de60c5 | 2019-08-27 17:49:59 -0300 | [diff] [blame] | 68 | vim_account = common_db.get_vim_account(vim_account_id) |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 69 | vim_type = vim_account["vim_type"] |
| 70 | if "config" in vim_account and "vim_type" in vim_account["config"]: |
| 71 | vim_type = vim_account["config"]["vim_type"].lower() |
| 72 | if vim_type == "vio" and "vrops_site" not in vim_account["config"]: |
| 73 | vim_type = "openstack" |
| Benjamin Diaz | 4de60c5 | 2019-08-27 17:49:59 -0300 | [diff] [blame] | 74 | return vim_type |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 75 | |
| 76 | @staticmethod |
| 77 | def _collect_vim_metrics(conf: Config, vnfr: dict, vim_account_id: str): |
| 78 | # TODO(diazb) Add support for aws |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 79 | metrics = [] |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 80 | vim_type = CollectorService._get_vim_type(conf, vim_account_id) |
| 81 | log.debug("vim type.....{}".format(vim_type)) |
| 82 | if vim_type in VIM_COLLECTORS: |
| 83 | collector = VIM_COLLECTORS[vim_type](conf, vim_account_id) |
| 84 | metrics = collector.collect(vnfr) |
| 85 | log.debug("Collecting vim metrics.....{}".format(metrics)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 86 | else: |
| 87 | log.debug("vimtype %s is not supported.", vim_type) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 88 | return metrics |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 89 | |
| 90 | @staticmethod |
| 91 | def _collect_vca_metrics(conf: Config, vnfr: dict): |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 92 | metrics = [] |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 93 | vca_collector = VCACollector(conf) |
| 94 | metrics = vca_collector.collect(vnfr) |
| 95 | log.debug("Collecting vca metrics.....{}".format(metrics)) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 96 | return metrics |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 97 | |
| 98 | @staticmethod |
| 99 | def _collect_vim_infra_metrics(conf: Config, vim_account_id: str): |
| 100 | log.info("Collecting vim infra metrics") |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 101 | metrics = [] |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 102 | vim_type = CollectorService._get_vim_type(conf, vim_account_id) |
| 103 | if vim_type in VIM_INFRA_COLLECTORS: |
| 104 | collector = VIM_INFRA_COLLECTORS[vim_type](conf, vim_account_id) |
| 105 | metrics = collector.collect() |
| 106 | log.debug("Collecting vim infra metrics.....{}".format(metrics)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 107 | else: |
| 108 | log.debug("vimtype %s is not supported.", vim_type) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 109 | return metrics |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 110 | |
| 111 | @staticmethod |
| 112 | def _collect_sdnc_infra_metrics(conf: Config, sdnc_id: str): |
| 113 | log.info("Collecting sdnc metrics") |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 114 | metrics = [] |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 115 | common_db = CommonDbClient(conf) |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 116 | sdn_type = common_db.get_sdnc(sdnc_id)["type"] |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 117 | if sdn_type in SDN_INFRA_COLLECTORS: |
| 118 | collector = SDN_INFRA_COLLECTORS[sdn_type](conf, sdnc_id) |
| 119 | metrics = collector.collect() |
| 120 | log.debug("Collecting sdnc metrics.....{}".format(metrics)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 121 | else: |
| 122 | log.debug("sdn_type %s is not supported.", sdn_type) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 123 | return metrics |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 124 | |
| 125 | @staticmethod |
| 126 | def _stop_process_pool(executor): |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 127 | log.info("Shutting down process pool") |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 128 | try: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 129 | log.debug("Stopping residual processes in the process pool") |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 130 | for pid, process in executor._processes.items(): |
| 131 | if process.is_alive(): |
| 132 | process.terminate() |
| 133 | except Exception as e: |
| 134 | log.info("Exception during process termination") |
| 135 | log.debug("Exception %s" % (e)) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 136 | |
| 137 | try: |
| 138 | # Shutting down executor |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 139 | log.debug("Shutting down process pool executor") |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 140 | executor.shutdown() |
| 141 | except RuntimeError as e: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 142 | log.info("RuntimeError in shutting down executer") |
| 143 | log.debug("RuntimeError %s" % (e)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 144 | return |
| 145 | |
| 146 | def collect_metrics(self) -> List[Metric]: |
| 147 | vnfrs = self.common_db.get_vnfrs() |
| 148 | metrics = [] |
| 149 | |
| 150 | start_time = time.time() |
| 151 | # Starting executor pool with pool size process_pool_size. Default process_pool_size is 20 |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 152 | with concurrent.futures.ProcessPoolExecutor( |
| 153 | self.conf.get("collector", "process_pool_size") |
| 154 | ) as executor: |
| 155 | log.info( |
| 156 | "Started metric collector process pool with pool size %s" |
| 157 | % (self.conf.get("collector", "process_pool_size")) |
| 158 | ) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 159 | futures = [] |
| 160 | for vnfr in vnfrs: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 161 | nsr_id = vnfr["nsr-id-ref"] |
| 162 | vnf_member_index = vnfr["member-vnf-index-ref"] |
| 163 | vim_account_id = self.common_db.get_vim_account_id( |
| 164 | nsr_id, vnf_member_index |
| 165 | ) |
| 166 | futures.append( |
| 167 | executor.submit( |
| 168 | CollectorService._collect_vim_metrics, |
| 169 | self.conf, |
| 170 | vnfr, |
| 171 | vim_account_id, |
| 172 | ) |
| 173 | ) |
| 174 | futures.append( |
| 175 | executor.submit( |
| 176 | CollectorService._collect_vca_metrics, self.conf, vnfr |
| 177 | ) |
| 178 | ) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 179 | |
| 180 | vims = self.common_db.get_vim_accounts() |
| 181 | for vim in vims: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 182 | futures.append( |
| 183 | executor.submit( |
| 184 | CollectorService._collect_vim_infra_metrics, |
| 185 | self.conf, |
| 186 | vim["_id"], |
| 187 | ) |
| 188 | ) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 189 | |
| 190 | sdncs = self.common_db.get_sdncs() |
| 191 | for sdnc in sdncs: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 192 | futures.append( |
| 193 | executor.submit( |
| 194 | CollectorService._collect_sdnc_infra_metrics, |
| 195 | self.conf, |
| 196 | sdnc["_id"], |
| 197 | ) |
| 198 | ) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 199 | |
| 200 | try: |
| 201 | # Wait for future calls to complete till process_execution_timeout. Default is 50 seconds |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 202 | for future in concurrent.futures.as_completed( |
| 203 | futures, self.conf.get("collector", "process_execution_timeout") |
| 204 | ): |
| 205 | result = future.result( |
| 206 | timeout=int( |
| 207 | self.conf.get("collector", "process_execution_timeout") |
| 208 | ) |
| 209 | ) |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 210 | metrics.extend(result) |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 211 | log.debug("result = %s" % (result)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 212 | except concurrent.futures.TimeoutError as e: |
| 213 | # Some processes have not completed due to timeout error |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 214 | log.info( |
| 215 | "Some processes have not finished due to TimeoutError exception" |
| 216 | ) |
| 217 | log.debug("concurrent.futures.TimeoutError exception %s" % (e)) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 218 | |
| palsus | e57f2f1 | 2021-03-01 19:59:41 +0000 | [diff] [blame] | 219 | # Shutting down process pool executor |
| 220 | CollectorService._stop_process_pool(executor) |
| palsus | 9a77332 | 2021-01-20 18:26:13 +0000 | [diff] [blame] | 221 | |
| 222 | end_time = time.time() |
| 223 | log.info("Collection completed in %s seconds", end_time - start_time) |
| 224 | |
| 225 | return metrics |