Migrates POL code from MON repo
[osm/POL.git] / osm_policy_module / common / mon_client.py
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
21 # For those usages not covered by the Apache License, Version 2.0 please
22 # contact: bdiaz@whitestack.com or glavado@whitestack.com
23 ##
24 import json
25 import logging
26 import random
27 import uuid
28
29 from kafka import KafkaProducer, KafkaConsumer
30
31 from osm_policy_module.core.config import Config
32
33 log = logging.getLogger(__name__)
34
35
36 class MonClient:
37 def __init__(self):
38 cfg = Config.instance()
39 self.kafka_server = '{}:{}'.format(cfg.OSMPOL_MESSAGE_HOST,
40 cfg.OSMPOL_MESSAGE_PORT)
41 self.producer = KafkaProducer(bootstrap_servers=self.kafka_server,
42 key_serializer=str.encode,
43 value_serializer=str.encode)
44
45 def create_alarm(self, metric_name: str, ns_id: str, vdu_name: str, vnf_member_index: int, threshold: int,
46 statistic: str, operation: str):
47 cor_id = random.randint(1, 1000000)
48 msg = self._create_alarm_payload(cor_id, metric_name, ns_id, vdu_name, vnf_member_index, threshold, statistic,
49 operation)
50 log.info("Sending create_alarm_request %s", msg)
51 self.producer.send(topic='alarm_request', key='create_alarm_request', value=json.dumps(msg))
52 self.producer.flush()
53 consumer = KafkaConsumer(bootstrap_servers=self.kafka_server,
54 key_deserializer=bytes.decode,
55 value_deserializer=bytes.decode,
56 consumer_timeout_ms=10000)
57 consumer.subscribe(['alarm_response'])
58 for message in consumer:
59 if message.key == 'create_alarm_response':
60 content = json.loads(message.value)
61 log.info("Received create_alarm_response %s", content)
62 if self._is_alarm_response_correlation_id_eq(cor_id, content):
63 alarm_uuid = content['alarm_create_response']['alarm_uuid']
64 # TODO Handle error response
65 return alarm_uuid
66
67 raise ValueError('Timeout: No alarm creation response from MON. Is MON up?')
68
69 def _create_alarm_payload(self, cor_id: int, metric_name: str, ns_id: str, vdu_name: str, vnf_member_index: int,
70 threshold: int, statistic: str, operation: str):
71 alarm_create_request = {
72 'correlation_id': cor_id,
73 'alarm_name': str(uuid.uuid4()),
74 'metric_name': metric_name,
75 'ns_id': ns_id,
76 'vdu_name': vdu_name,
77 'vnf_member_index': vnf_member_index,
78 'operation': operation,
79 'severity': 'critical',
80 'threshold_value': threshold,
81 'statistic': statistic
82 }
83 msg = {
84 'alarm_create_request': alarm_create_request,
85 }
86 return msg
87
88 def _is_alarm_response_correlation_id_eq(self, cor_id, message_content):
89 return message_content['alarm_create_response']['correlation_id'] == cor_id