blob: 2ba0625d58055a685827eafc2740e8a8027a52fd [file] [log] [blame]
Benjamin Diaza97bdb32019-04-10 15:22:22 -03001# -*- 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##
23import logging
24import multiprocessing
25from enum import Enum
26from typing import Tuple, List
27
Benjamin Diaza97bdb32019-04-10 15:22:22 -030028from osm_mon.core.common_db import CommonDbClient
29from osm_mon.core.config import Config
almagia1b7145f2019-11-30 03:56:04 +010030from osm_mon.core.models import Alarm
Benjamin Diaza97bdb32019-04-10 15:22:22 -030031from osm_mon.evaluator.backends.prometheus import PrometheusBackend
32
33log = logging.getLogger(__name__)
34
garciadeblas8e4179f2021-05-14 16:47:03 +020035BACKENDS = {"prometheus": PrometheusBackend}
Benjamin Diaza97bdb32019-04-10 15:22:22 -030036
37
38class AlarmStatus(Enum):
garciadeblas8e4179f2021-05-14 16:47:03 +020039 ALARM = "alarm"
40 OK = "ok"
41 INSUFFICIENT = "insufficient-data"
Benjamin Diaza97bdb32019-04-10 15:22:22 -030042
43
44class EvaluatorService:
Benjamin Diaza97bdb32019-04-10 15:22:22 -030045 def __init__(self, config: Config):
46 self.conf = config
47 self.common_db = CommonDbClient(self.conf)
48 self.queue = multiprocessing.Queue()
49
garciadeblas8e4179f2021-05-14 16:47:03 +020050 def _get_metric_value(self, metric_name: str, tags: dict):
51 return BACKENDS[self.conf.get("evaluator", "backend")](
52 self.conf
53 ).get_metric_value(metric_name, tags)
Benjamin Diaza97bdb32019-04-10 15:22:22 -030054
garciadeblas8e4179f2021-05-14 16:47:03 +020055 def _evaluate_metric(self, alarm: Alarm):
Benjamin Diaza97bdb32019-04-10 15:22:22 -030056 log.debug("_evaluate_metric")
almagia1b7145f2019-11-30 03:56:04 +010057 metric_value = self._get_metric_value(alarm.metric, alarm.tags)
Benjamin Diaza98b8542019-06-24 15:50:38 -030058 if metric_value is None:
almagia1b7145f2019-11-30 03:56:04 +010059 log.warning("No metric result for alarm %s", alarm.uuid)
Benjamin Diaza97bdb32019-04-10 15:22:22 -030060 self.queue.put((alarm, AlarmStatus.INSUFFICIENT))
61 else:
garciadeblas8e4179f2021-05-14 16:47:03 +020062 if alarm.operation.upper() == "GT":
Benjamin Diaza97bdb32019-04-10 15:22:22 -030063 if metric_value > alarm.threshold:
64 self.queue.put((alarm, AlarmStatus.ALARM))
65 else:
66 self.queue.put((alarm, AlarmStatus.OK))
garciadeblas8e4179f2021-05-14 16:47:03 +020067 elif alarm.operation.upper() == "LT":
Benjamin Diaza97bdb32019-04-10 15:22:22 -030068 if metric_value < alarm.threshold:
69 self.queue.put((alarm, AlarmStatus.ALARM))
70 else:
71 self.queue.put((alarm, AlarmStatus.OK))
72
73 def evaluate_alarms(self) -> List[Tuple[Alarm, AlarmStatus]]:
garciadeblas8e4179f2021-05-14 16:47:03 +020074 log.debug("evaluate_alarms")
Benjamin Diaza97bdb32019-04-10 15:22:22 -030075 processes = []
almagia1b7145f2019-11-30 03:56:04 +010076 for alarm in self.common_db.get_alarms():
garciadeblas8e4179f2021-05-14 16:47:03 +020077 p = multiprocessing.Process(target=self._evaluate_metric, args=(alarm,))
almagia1b7145f2019-11-30 03:56:04 +010078 processes.append(p)
79 p.start()
Benjamin Diaza97bdb32019-04-10 15:22:22 -030080
almagia1b7145f2019-11-30 03:56:04 +010081 for process in processes:
82 process.join(timeout=10)
83 alarms_tuples = []
84 while not self.queue.empty():
85 alarms_tuples.append(self.queue.get())
86 return alarms_tuples