8fe3b6b5741d5fb7d729a52f0881b7f747048fca
[osm/MON.git] / osm_mon / core / models.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 # For those usages not covered by the Apache License, Version 2.0 please
21 # contact: bdiaz@whitestack.com or glavado@whitestack.com
22 ##
23 import uuid
24
25
26 class Alarm:
27 def __init__(
28 self,
29 name: str = None,
30 severity: str = None,
31 threshold: float = None,
32 operation: str = None,
33 statistic: str = None,
34 metric: str = None,
35 tags: dict = {},
36 ):
37 self.uuid = str(uuid.uuid4())
38 self.name = name
39 self.severity = severity
40 self.threshold = threshold
41 self.operation = operation
42 self.statistic = statistic
43 self.metric = metric
44 self.tags = tags
45
46 def to_dict(self) -> dict:
47 alarm = {
48 "uuid": self.uuid,
49 "name": self.name,
50 "severity": self.severity,
51 "threshold": self.threshold,
52 "statistic": self.statistic,
53 "metric": self.metric,
54 "tags": self.tags,
55 "operation": self.operation,
56 }
57 return alarm
58
59 @staticmethod
60 def from_dict(data: dict):
61 alarm = Alarm()
62 alarm.uuid = data.get("uuid", str(uuid.uuid4()))
63 alarm.name = data.get("name")
64 alarm.severity = data.get("severity")
65 alarm.threshold = float(data.get("threshold"))
66 alarm.statistic = data.get("statistic")
67 alarm.metric = data.get("metric")
68 alarm.tags = data.get("tags")
69 alarm.operation = data.get("operation")
70 return alarm