Include documentation and updates for MON manual installation.
[osm/MON.git] / plugins / OpenStack / Aodh / plugin_instance.py
1 # Copyright 2017 Intel Research and Development Ireland Limited
2 # *************************************************************
3
4 # This file is part of OSM Monitoring module
5 # All Rights Reserved to Intel Corporation
6
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
10
11 # http://www.apache.org/licenses/LICENSE-2.0
12
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
17 # under the License.
18
19 # For those usages not covered by the Apache License, Version 2.0 please
20 # contact: helena.mcgough@intel.com or adrian.hoban@intel.com
21 ##
22 """Aodh plugin for the OSM monitoring module."""
23
24 import logging
25 import sys
26
27 sys.path.append("MON/")
28
29 logging.basicConfig(filename='aodh_MON.log', format='%(asctime)s %(message)s',
30 datefmt='%m/%d/%Y %I:%M:%S %p', filemode='a',
31 level=logging.INFO)
32 log = logging.getLogger(__name__)
33
34
35 try:
36 import aodhclient
37 except ImportError:
38 log.warn("Failed to import the aodhclient")
39
40 from plugins.OpenStack.Aodh.alarming import Alarming
41 from plugins.OpenStack.settings import Config
42
43 __author__ = "Helena McGough"
44
45
46 def register_plugin():
47 """Register the plugin."""
48 # Initialize configuration and notifications
49 config = Config.instance()
50
51 # Intialize plugin
52 instance = Plugin(config=config)
53 instance.config()
54 instance.alarm()
55
56
57 class Plugin(object):
58 """Aodh plugin for OSM MON."""
59
60 def __init__(self, config):
61 """Plugin instance."""
62 log.info("Initialze the plugin instance.")
63 self._config = config
64 self._alarming = Alarming()
65
66 def config(self):
67 """Configure plugin."""
68 log.info("Configure the plugin instance.")
69 self._config.read_environ("aodh")
70
71 def alarm(self):
72 """Allow alarm info to be received from Aodh."""
73 log.info("Begin alarm functionality.")
74 self._alarming.alarming()
75
76 if aodhclient:
77 register_plugin()