1437e06bf1
- Enabled the user to configure the severity of alarms triggered by metrics/meters - Provided/Updated documentation for this changea - Included all of the necessary tests for this change - Included a reno for this change Change-Id: Icefe2edf7695c4a8b3d5838844e2514b9876967f
87 lines
2.9 KiB
Python
87 lines
2.9 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.
|
|
|
|
"""Default collectd meter."""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from collectd_ceilometer.common.settings import Config
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class Meter(object):
|
|
"""Default collectd meter."""
|
|
|
|
def __init__(self, collectd):
|
|
"""Instantiate meter instance."""
|
|
self._collectd = collectd
|
|
|
|
def meter_name(self, vl):
|
|
"""Return meter name."""
|
|
# pylint: disable=no-self-use
|
|
resources = [vl.plugin, vl.type]
|
|
return '.'.join([i for i in resources if i])
|
|
|
|
def hostname(self, vl):
|
|
"""Get host name."""
|
|
# pylint: disable=no-self-use
|
|
return vl.host
|
|
|
|
def resource_id(self, vl):
|
|
"""Get resource ID."""
|
|
resources = [self.hostname(vl), vl.plugin_instance, vl.type_instance]
|
|
return '-'.join([i for i in resources if i])
|
|
|
|
def unit(self, vl):
|
|
"""Get meter unit."""
|
|
# pylint: disable=no-self-use
|
|
return Config.instance().unit(vl.plugin, vl.type)
|
|
|
|
def sample_type(self, vl):
|
|
"""Translate from collectd counter type to Ceilometer type."""
|
|
types = {"gauge": "gauge",
|
|
"derive": "delta",
|
|
"absolute": "cumulative",
|
|
"counter": "cumulative"}
|
|
|
|
try:
|
|
# get_dataset -> [('value', 'derive', 0.0, None)]
|
|
collectd_type = self._collectd.get_dataset(str(vl.type))[0][1]
|
|
except Exception:
|
|
LOGGER.warning(
|
|
"Cannot map counter type '%s': using type 'gauge'.", vl.type,
|
|
exc_info=1)
|
|
collectd_type = "gauge"
|
|
|
|
return types[collectd_type]
|
|
|
|
def message(self, vl):
|
|
"""Get the notification message."""
|
|
return vl.message
|
|
|
|
def collectd_severity(self, vl):
|
|
"""Get the notification severity and translate to Aodh severity type."""
|
|
collectd_severity = {self._collectd.NOTIF_FAILURE: 'critical',
|
|
self._collectd.NOTIF_WARNING: 'moderate',
|
|
self._collectd.NOTIF_OKAY: 'low',
|
|
}.get(vl.severity)
|
|
return collectd_severity
|
|
|
|
def alarm_severity(self, meter_name):
|
|
"""Get the user-defined severity for the alarm, or use default."""
|
|
# pylint: disable=no-self-use
|
|
return Config.instance().alarm_severity(meter_name)
|