ea2e50507b6a8bee9c29831bac8210e8bac4b469
[osm/MON.git] / osm_mon / collector / infra_collectors / onos.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 logging
23 from typing import List
24
25 import requests
26 from requests.auth import HTTPBasicAuth
27
28 from osm_mon.collector.infra_collectors.base_sdnc import BaseSdncInfraCollector
29 from osm_mon.collector.metric import Metric
30 from osm_mon.core.common_db import CommonDbClient
31 from osm_mon.core.config import Config
32
33 log = logging.getLogger(__name__)
34
35
36 class OnosInfraCollector(BaseSdncInfraCollector):
37 def __init__(self, config: Config, sdnc_id: str):
38 super().__init__(config, sdnc_id)
39 self.common_db = CommonDbClient(config)
40 self.sdnc = self.common_db.get_sdnc(sdnc_id)
41
42 def collect(self) -> List[Metric]:
43 metrics = []
44 sdnc_status = self.is_sdnc_ok()
45 sdnc_status_metric = Metric({'sdnc_id': self.sdnc['_id']}, 'sdnc_status', sdnc_status)
46 metrics.append(sdnc_status_metric)
47
48 return metrics
49
50 def is_sdnc_ok(self) -> bool:
51 try:
52 ip = self.sdnc['ip']
53 port = self.sdnc['port']
54 user = self.sdnc['user']
55 password = self.common_db.decrypt_sdnc_password(self.sdnc['password'],
56 self.sdnc['schema_version'],
57 self.sdnc['_id'])
58 # TODO: Add support for https
59 url = 'http://{}:{}/onos/v1/devices'.format(ip, port)
60 requests.get(url, auth=HTTPBasicAuth(user, password))
61 return True
62 except Exception:
63 log.exception("SDNC status is not OK!")
64 return False