blob: acc602e602a3e40a397b94f082234fd2cea995cb [file] [log] [blame]
lavado456d0f32019-11-15 17:04:02 -05001# -*- 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
bravof396648b2020-03-31 18:42:45 -030021# contact: glavado@whitestack.com or fbravo@whitestack.com
lavado456d0f32019-11-15 17:04:02 -050022##
23import logging
24import requests
bravof396648b2020-03-31 18:42:45 -030025import base64
26from osm_mon.core.config import Config
lavado456d0f32019-11-15 17:04:02 -050027
28log = logging.getLogger(__name__)
29
lavado456d0f32019-11-15 17:04:02 -050030
bravof396648b2020-03-31 18:42:45 -030031class GrafanaBackend:
32 def __init__(self, config: Config):
33 self.conf = config
34 self.url = config.get('grafana', 'url')
35 grafana_user = config.get("grafana", "user")
36 grafana_password = config.get("grafana", "password")
37 self.headers = {
38 'content-type': "application/json",
39 'authorization': "Basic %s" % base64.b64encode(
40 (grafana_user + ":" + grafana_password).encode("utf-8")).decode()
41 }
lavado456d0f32019-11-15 17:04:02 -050042
bravof396648b2020-03-31 18:42:45 -030043 def get_all_dashboard_uids(self):
44 # Gets only dashboards that were automated by OSM (with tag 'osm_automated')
45 response = requests.request("GET", self.url + "/api/search?tag=osm_automated", headers=self.headers)
46 dashboards = response.json()
47 dashboard_uids = []
48 for dashboard in dashboards:
49 dashboard_uids.append(dashboard['uid'])
50 log.debug("Searching for all dashboard uids: %s", dashboard_uids)
51 return dashboard_uids
lavado456d0f32019-11-15 17:04:02 -050052
bravof396648b2020-03-31 18:42:45 -030053 def get_dashboard_status(self, uid):
54 response = requests.request("GET", self.url + "/api/dashboards/uid/" + uid, headers=self.headers)
55 log.debug("Searching for dashboard result: %s", response.text)
56 return response
lavado456d0f32019-11-15 17:04:02 -050057
bravof396648b2020-03-31 18:42:45 -030058 def create_dashboard(self, uid, name, json_file):
59 with open(json_file) as f:
60 dashboard_data = f.read()
lavado456d0f32019-11-15 17:04:02 -050061
bravof396648b2020-03-31 18:42:45 -030062 dashboard_data = dashboard_data.replace('OSM_ID', uid).replace('OSM_NAME', name)
lavado456d0f32019-11-15 17:04:02 -050063
bravof396648b2020-03-31 18:42:45 -030064 response = requests.request(
65 "POST", self.url + "/api/dashboards/db/", data=dashboard_data, headers=self.headers)
66 log.debug("Creating dashboard result: %s", response.text)
67 return response
lavado456d0f32019-11-15 17:04:02 -050068
bravof396648b2020-03-31 18:42:45 -030069 def delete_dashboard(self, uid):
70 response = requests.request("DELETE", self.url + "/api/dashboards/uid/" + uid, headers=self.headers)
71 log.debug("Delete dashboard result: %s", response.text)
72 return response