2223d14005
- Combined commonalities from the aodh and common sender classes - Updated all of the relevant tests for each class - Included a reno Change-Id: I78fcdb075661e125b0e9f16bdee626cd811ad78e Closes-bug: #1668210
64 lines
2.3 KiB
Python
64 lines
2.3 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 implementation."""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from collectd_ceilometer.aodh import sender as aodh_sender
|
|
|
|
import datetime
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class Notifier(object):
|
|
"""Aodh notifier."""
|
|
|
|
def __init__(self, meters, config):
|
|
"""Initialize Notifier."""
|
|
self._meters = meters
|
|
self._sender = aodh_sender.Sender()
|
|
self._config = config
|
|
|
|
def notify(self, vl, data):
|
|
"""Collect data from collectd."""
|
|
# take the plugin (specialized or default) for parsing the data
|
|
notification = self._meters.get(vl.plugin)
|
|
# prepare all data related to the sample
|
|
metername = notification.meter_name(vl)
|
|
message = notification.message(vl)
|
|
severity = notification.collectd_severity(vl)
|
|
resource_id = notification.resource_id(vl)
|
|
timestamp = datetime.datetime.utcfromtimestamp(vl.time).isoformat()
|
|
if notification.alarm_severity(metername) in \
|
|
('critical', 'moderate', 'low'):
|
|
alarm_severity = notification.alarm_severity(metername)
|
|
else:
|
|
alarm_severity = 'moderate'
|
|
|
|
LOGGER.debug(
|
|
'Writing: plugin="%s", message="%s", severity="%s", time="%s',
|
|
vl.plugin, message, severity, timestamp)
|
|
|
|
self._send_data(metername, severity, resource_id, alarm_severity)
|
|
|
|
def _send_data(self, metername, severity, resource_id, alarm_severity):
|
|
"""Send data to Aodh."""
|
|
LOGGER.debug('Sending alarm for %s', metername)
|
|
self._sender.send(metername, None, severity=severity,
|
|
resource_id=resource_id,
|
|
alarm_severity=alarm_severity)
|