f903de3f10
Fix logging of debug, info and warning levels. Also configuration parameter VERBOSE is working again. fixes problems: * VERBOSE parameter can be changed at runtime * Initial log level was unset, then there was nothing logged lower than exception level. (for example configuration dump was not logged) * Initial VERBOSE was set to True, then it was too much verbose. And this flag was mean to be used for debugging problems. NOTE: real log level is driven by collectd configuration, not by plugin config. Change-Id: Ia7048ccb74f27a5d5885b9c0bda17d6fba603e9b Closes-Bug: #1664973
85 lines
2.5 KiB
Python
85 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""Aodh collectd plugin."""
|
|
|
|
import logging
|
|
|
|
try:
|
|
# pylint: disable=import-error
|
|
import collectd
|
|
# pylint: enable=import-error
|
|
except ImportError:
|
|
collectd = None # when running unit tests collectd is not avaliable
|
|
|
|
import collectd_ceilometer
|
|
from collectd_ceilometer.aodh.notifier import Notifier
|
|
from collectd_ceilometer.common.logger import CollectdLogHandler
|
|
from collectd_ceilometer.common.meters import MeterStorage
|
|
from collectd_ceilometer.common.settings import Config
|
|
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
ROOT_LOGGER = logging.getLogger(collectd_ceilometer.__name__)
|
|
|
|
|
|
def register_plugin(collectd):
|
|
"""Bind plugin hooks to collectd and viceversa."""
|
|
config = Config.instance()
|
|
|
|
# Setup loggging
|
|
log_handler = CollectdLogHandler(collectd=collectd, config=config)
|
|
ROOT_LOGGER.addHandler(log_handler)
|
|
ROOT_LOGGER.setLevel(logging.DEBUG)
|
|
|
|
# Creates collectd plugin instance
|
|
instance = Plugin(collectd=collectd, config=config)
|
|
|
|
# Register plugin callbacks
|
|
collectd.register_config(instance.config)
|
|
collectd.register_shutdown(instance.shutdown)
|
|
collectd.register_notification(instance.notify)
|
|
|
|
|
|
class Plugin(object):
|
|
"""Aodh plugin with collectd callbacks."""
|
|
|
|
# NOTE: this is a multithreaded class
|
|
|
|
def __init__(self, collectd, config):
|
|
"""Plugin instance."""
|
|
self._config = config
|
|
self._meters = MeterStorage(collectd=collectd)
|
|
self._notifier = Notifier(self._meters, config=config)
|
|
|
|
def config(self, cfg):
|
|
"""Configuration callback.
|
|
|
|
@param cfg configuration node provided by collectd
|
|
"""
|
|
self._config.read(cfg)
|
|
|
|
def notify(self, vl, data=None):
|
|
"""Notification callback."""
|
|
LOGGER.info("Notification")
|
|
self._notifier.notify(vl, data)
|
|
|
|
def shutdown(self):
|
|
"""Shutdown callback."""
|
|
LOGGER.info("SHUTDOWN")
|
|
|
|
|
|
if collectd:
|
|
register_plugin(collectd=collectd)
|