Merge "Added VIO metrics collector for vROPs"
[osm/MON.git] / osm_mon / core / database.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
25 import logging
26 import os
27 import uuid
28 import json
29
30 from peewee import CharField, TextField, FloatField, Model, AutoField, Proxy
31 from peewee_migrate import Router
32 from playhouse.db_url import connect
33
34 from osm_mon import migrations
35 from osm_mon.core.config import Config
36
37 log = logging.getLogger(__name__)
38
39 db = Proxy()
40
41
42 class BaseModel(Model):
43 id = AutoField(primary_key=True)
44
45 class Meta:
46 database = db
47
48
49 class VimCredentials(BaseModel):
50 uuid = CharField(unique=True)
51 name = CharField()
52 type = CharField()
53 url = CharField()
54 user = CharField()
55 password = CharField()
56 tenant_name = CharField()
57 config = TextField()
58
59
60 class Alarm(BaseModel):
61 uuid = CharField(unique=True)
62 name = CharField()
63 severity = CharField()
64 threshold = FloatField()
65 operation = CharField()
66 statistic = CharField()
67 monitoring_param = CharField()
68 vdur_name = CharField()
69 vnf_member_index = CharField()
70 nsr_id = CharField()
71
72
73 class DatabaseManager:
74 def __init__(self, config: Config):
75 db.initialize(connect(config.get('sql', 'database_uri')))
76
77 def create_tables(self) -> None:
78 with db.atomic():
79 router = Router(db, os.path.dirname(migrations.__file__))
80 router.run()
81
82 def get_credentials(self, vim_uuid: str = None) -> VimCredentials:
83 with db.atomic():
84 return VimCredentials.get_or_none(VimCredentials.uuid == vim_uuid)
85
86 def save_credentials(self, vim_credentials) -> VimCredentials:
87 """Saves vim credentials. If a record with same uuid exists, overwrite it."""
88 with db.atomic():
89 exists = VimCredentials.get_or_none(VimCredentials.uuid == vim_credentials.uuid)
90 if exists:
91 vim_credentials.id = exists.id
92 vim_credentials.save()
93 return vim_credentials
94
95 def get_alarm(self, alarm_id) -> Alarm:
96 with db.atomic():
97 alarm = (Alarm.select()
98 .where(Alarm.alarm_id == alarm_id)
99 .get())
100 return alarm
101
102 def save_alarm(self, name, threshold, operation, severity, statistic, metric_name, vdur_name,
103 vnf_member_index, nsr_id) -> Alarm:
104 """Saves alarm."""
105 # TODO: Add uuid optional param and check if exists to handle updates (see self.save_credentials)
106 with db.atomic():
107 alarm = Alarm()
108 alarm.uuid = str(uuid.uuid4())
109 alarm.name = name
110 alarm.threshold = threshold
111 alarm.operation = operation
112 alarm.severity = severity
113 alarm.statistic = statistic
114 alarm.monitoring_param = metric_name
115 alarm.vdur_name = vdur_name
116 alarm.vnf_member_index = vnf_member_index
117 alarm.nsr_id = nsr_id
118 alarm.save()
119 return alarm
120
121 def delete_alarm(self, alarm_uuid) -> None:
122 with db.atomic():
123 alarm = (Alarm.select()
124 .where(Alarm.uuid == alarm_uuid)
125 .get())
126 alarm.delete_instance()
127
128 def get_vim_type(self, vim_account_id) -> str:
129 """Get the vim type that is required by the message."""
130 vim_type = None
131 credentials = self.get_credentials(vim_account_id)
132 config = json.loads(credentials.config)
133 if 'vim_type' in config:
134 vim_type = config['vim_type']
135 return str(vim_type.lower())
136 else:
137 return str(credentials.type)