1cc7087af1
The new evaluator service will be added to handle 'event' type alarms only. Existing evaluator have to exclude those 'event' type alarms from their targets which will be evaluated periodically. Change-Id: Ia501771ee8d3dcd424c7e415d8aeb3d41a8e8de0 Implements: blueprint event-alarm-evaluator
269 lines
9.4 KiB
Python
269 lines
9.4 KiB
Python
#
|
|
# Copyright 2013 eNovance <licensing@enovance.com>
|
|
#
|
|
# Authors: Mehdi Abaakouk <mehdi.abaakouk@enovance.com>
|
|
#
|
|
# 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.
|
|
|
|
|
|
import abc
|
|
import datetime
|
|
import json
|
|
|
|
import croniter
|
|
from oslo_config import cfg
|
|
from oslo_context import context
|
|
from oslo_log import log
|
|
from oslo_service import service as os_service
|
|
from oslo_utils import timeutils
|
|
import pytz
|
|
import six
|
|
from stevedore import extension
|
|
import uuid
|
|
|
|
import aodh
|
|
from aodh import coordination
|
|
from aodh.i18n import _
|
|
from aodh import keystone_client
|
|
from aodh import messaging
|
|
from aodh import rpc
|
|
from aodh import storage
|
|
from aodh.storage import models
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
UNKNOWN = 'insufficient data'
|
|
OK = 'ok'
|
|
ALARM = 'alarm'
|
|
|
|
|
|
OPTS = [
|
|
cfg.BoolOpt('record_history',
|
|
default=True,
|
|
deprecated_group="alarm",
|
|
help='Record alarm change events.'
|
|
),
|
|
]
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
class Evaluator(object):
|
|
"""Base class for alarm rule evaluator plugins."""
|
|
|
|
def __init__(self, conf, notifier):
|
|
self.conf = conf
|
|
self.notifier = notifier
|
|
self.storage_conn = None
|
|
self._ks_client = None
|
|
self._alarm_change_notifier = None
|
|
|
|
@property
|
|
def ks_client(self):
|
|
if self._ks_client is None:
|
|
self._ks_client = keystone_client.get_client(self.conf)
|
|
return self._ks_client
|
|
|
|
@property
|
|
def _storage_conn(self):
|
|
if not self.storage_conn:
|
|
self.storage_conn = storage.get_connection_from_config(self.conf)
|
|
return self.storage_conn
|
|
|
|
def _record_change(self, alarm):
|
|
if not self.conf.record_history:
|
|
return
|
|
type = models.AlarmChange.STATE_TRANSITION
|
|
detail = json.dumps({'state': alarm.state})
|
|
user_id, project_id = self.ks_client.user_id, self.ks_client.project_id
|
|
on_behalf_of = alarm.project_id
|
|
now = timeutils.utcnow()
|
|
payload = dict(event_id=str(uuid.uuid4()),
|
|
alarm_id=alarm.alarm_id,
|
|
type=type,
|
|
detail=detail,
|
|
user_id=user_id,
|
|
project_id=project_id,
|
|
on_behalf_of=on_behalf_of,
|
|
timestamp=now)
|
|
|
|
try:
|
|
self._storage_conn.record_alarm_change(payload)
|
|
except aodh.NotImplementedError:
|
|
pass
|
|
if not self._alarm_change_notifier:
|
|
transport = messaging.get_transport(self.conf)
|
|
self._alarm_change_notifier = messaging.get_notifier(
|
|
transport, publisher_id="aodh.evaluator")
|
|
notification = "alarm.state_transition"
|
|
self._alarm_change_notifier.info(context.RequestContext(),
|
|
notification, payload)
|
|
|
|
def _refresh(self, alarm, state, reason, reason_data):
|
|
"""Refresh alarm state."""
|
|
try:
|
|
previous = alarm.state
|
|
alarm.state = state
|
|
if previous != state:
|
|
LOG.info(_('alarm %(id)s transitioning to %(state)s because '
|
|
'%(reason)s') % {'id': alarm.alarm_id,
|
|
'state': state,
|
|
'reason': reason})
|
|
|
|
self._storage_conn.update_alarm(alarm)
|
|
self._record_change(alarm)
|
|
if self.notifier:
|
|
self.notifier.notify(alarm, previous, reason, reason_data)
|
|
except Exception:
|
|
# retry will occur naturally on the next evaluation
|
|
# cycle (unless alarm state reverts in the meantime)
|
|
LOG.exception(_('alarm state update failed'))
|
|
|
|
@classmethod
|
|
def within_time_constraint(cls, alarm):
|
|
"""Check whether the alarm is within at least one of its time limits.
|
|
|
|
If there are none, then the answer is yes.
|
|
"""
|
|
if not alarm.time_constraints:
|
|
return True
|
|
|
|
now_utc = timeutils.utcnow().replace(tzinfo=pytz.utc)
|
|
for tc in alarm.time_constraints:
|
|
tz = pytz.timezone(tc['timezone']) if tc['timezone'] else None
|
|
now_tz = now_utc.astimezone(tz) if tz else now_utc
|
|
start_cron = croniter.croniter(tc['start'], now_tz)
|
|
if cls._is_exact_match(start_cron, now_tz):
|
|
return True
|
|
# start_cron.cur has changed in _is_exact_match(),
|
|
# croniter cannot recover properly in some corner case.
|
|
start_cron = croniter.croniter(tc['start'], now_tz)
|
|
latest_start = start_cron.get_prev(datetime.datetime)
|
|
duration = datetime.timedelta(seconds=tc['duration'])
|
|
if latest_start <= now_tz <= latest_start + duration:
|
|
return True
|
|
return False
|
|
|
|
@staticmethod
|
|
def _is_exact_match(cron, ts):
|
|
"""Handle edge in case when both parameters are equal.
|
|
|
|
Handle edge case where if the timestamp is the same as the
|
|
cron point in time to the minute, croniter returns the previous
|
|
start, not the current. We can check this by first going one
|
|
step back and then one step forward and check if we are
|
|
at the original point in time.
|
|
"""
|
|
cron.get_prev()
|
|
diff = timeutils.total_seconds(ts - cron.get_next(datetime.datetime))
|
|
return abs(diff) < 60 # minute precision
|
|
|
|
@abc.abstractmethod
|
|
def evaluate(self, alarm):
|
|
"""Interface definition.
|
|
|
|
evaluate an alarm
|
|
alarm Alarm: an instance of the Alarm
|
|
"""
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
class AlarmService(object):
|
|
EVALUATOR_EXTENSIONS_NAMESPACE = "aodh.evaluator"
|
|
|
|
def __init__(self, conf):
|
|
super(AlarmService, self).__init__()
|
|
self.conf = conf
|
|
self.storage_conn = None
|
|
self._load_evaluators()
|
|
|
|
@property
|
|
def _storage_conn(self):
|
|
if not self.storage_conn:
|
|
self.storage_conn = storage.get_connection_from_config(self.conf)
|
|
return self.storage_conn
|
|
|
|
def _load_evaluators(self):
|
|
self.evaluators = extension.ExtensionManager(
|
|
namespace=self.EVALUATOR_EXTENSIONS_NAMESPACE,
|
|
invoke_on_load=True,
|
|
invoke_args=(self.conf, rpc.RPCAlarmNotifier(self.conf),)
|
|
)
|
|
|
|
def _evaluate_assigned_alarms(self):
|
|
try:
|
|
alarms = self._assigned_alarms()
|
|
LOG.info(_('initiating evaluation cycle on %d alarms') %
|
|
len(alarms))
|
|
for alarm in alarms:
|
|
self._evaluate_alarm(alarm)
|
|
except Exception:
|
|
LOG.exception(_('alarm evaluation cycle failed'))
|
|
|
|
def _evaluate_alarm(self, alarm):
|
|
"""Evaluate the alarms assigned to this evaluator."""
|
|
if alarm.type not in self.evaluators:
|
|
LOG.debug('skipping alarm %s: type unsupported', alarm.alarm_id)
|
|
return
|
|
|
|
LOG.debug('evaluating alarm %s', alarm.alarm_id)
|
|
try:
|
|
self.evaluators[alarm.type].obj.evaluate(alarm)
|
|
except Exception:
|
|
LOG.exception(_('Failed to evaluate alarm %s'), alarm.alarm_id)
|
|
|
|
@abc.abstractmethod
|
|
def _assigned_alarms(self):
|
|
pass
|
|
|
|
|
|
class AlarmEvaluationService(AlarmService, os_service.Service):
|
|
|
|
PARTITIONING_GROUP_NAME = "alarm_evaluator"
|
|
|
|
def __init__(self, conf):
|
|
super(AlarmEvaluationService, self).__init__(conf)
|
|
self.partition_coordinator = coordination.PartitionCoordinator(
|
|
conf.coordination.backend_url)
|
|
|
|
def start(self):
|
|
super(AlarmEvaluationService, self).start()
|
|
self.storage_conn = storage.get_connection_from_config(self.conf)
|
|
self.partition_coordinator.start()
|
|
self.partition_coordinator.join_group(self.PARTITIONING_GROUP_NAME)
|
|
|
|
# allow time for coordination if necessary
|
|
delay_start = self.partition_coordinator.is_active()
|
|
|
|
if self.evaluators:
|
|
interval = self.conf.evaluation_interval
|
|
self.tg.add_timer(
|
|
interval,
|
|
self._evaluate_assigned_alarms,
|
|
initial_delay=interval if delay_start else None)
|
|
if self.partition_coordinator.is_active():
|
|
heartbeat_interval = min(self.conf.coordination.heartbeat,
|
|
self.conf.evaluation_interval / 4)
|
|
self.tg.add_timer(heartbeat_interval,
|
|
self.partition_coordinator.heartbeat)
|
|
# Add a dummy thread to have wait() working
|
|
self.tg.add_timer(604800, lambda: None)
|
|
|
|
def _assigned_alarms(self):
|
|
# NOTE(r-mibu): The 'event' type alarms will be evaluated by the
|
|
# event-driven alarm evaluator, so this periodical evaluator skips
|
|
# those alarms.
|
|
all_alarms = self._storage_conn.get_alarms(enabled=True,
|
|
exclude=dict(type='event'))
|
|
return self.partition_coordinator.extract_my_subset(
|
|
self.PARTITIONING_GROUP_NAME, all_alarms)
|