Files
vitrage/vitrage/notifier/plugins/aodh/aodh_notifier.py
Eyal cbf1b32498 Add a new zaqar notifier
also did some minor refactorings to the other
notifiers

Story: 2002681
Task: 22499
Change-Id: I06dfae2b67d1966eed472123f5bb6627d4cb19d0
2019-01-13 09:19:36 +02:00

102 lines
3.7 KiB
Python

# Copyright 2016 - Nokia
#
# 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.
from oslo_log import log as logging
from vitrage.common.constants import NotifierEventTypes
from vitrage.common.constants import VertexProperties as VProps
from vitrage.datasources.aodh import AODH_DATASOURCE
from vitrage.datasources.aodh.properties import AodhState
from vitrage.entity_graph.mappings.operational_alarm_severity import \
OperationalAlarmSeverity
from vitrage.notifier.plugins.base import NotifierBase
from vitrage import os_clients
LOG = logging.getLogger(__name__)
severity_translation = {
OperationalAlarmSeverity.CRITICAL: 'critical',
OperationalAlarmSeverity.SEVERE: 'moderate',
OperationalAlarmSeverity.WARNING: 'low',
}
class AodhNotifier(NotifierBase):
@staticmethod
def get_notifier_name():
return AODH_DATASOURCE
def __init__(self, conf):
super(AodhNotifier, self).__init__(conf)
self.client = os_clients.aodh_client(conf)
def process_event(self, data, event_type):
response = None
if event_type == NotifierEventTypes.ACTIVATE_DEDUCED_ALARM_EVENT:
if not data.get(VProps.ID):
response = self._create_aodh_alarm(data, AodhState.ALARM)
else:
response = self._update_aodh_alarm(data, AodhState.ALARM)
elif event_type == NotifierEventTypes.DEACTIVATE_DEDUCED_ALARM_EVENT:
response = self._update_aodh_alarm(data, AodhState.OK)
if response and response.alarm_id:
LOG.info('Aodh Alarm id %s: ', response.alarm_id)
else:
LOG.error('Failed to %s Aodh Alarm \n%s', event_type, data)
def _create_aodh_alarm(self, alarm, state):
alarm_request = _alarm_request(alarm, state)
try:
LOG.info('Aodh Alarm - Activate: ' + alarm_request)
return self.client.alarm.create(alarm_request)
except Exception:
LOG.exception('Failed to activate Aodh Alarm. Got Exception.')
def _update_aodh_alarm(self, alarm, state):
aodh_id = alarm.get(VProps.ID)
try:
LOG.info('Aodh Alarm $%s update state %s', aodh_id, state)
alarm_update = {AodhState: state}
return self.client.alarm.update(alarm_id=aodh_id,
alarm_update=alarm_update)
except Exception:
LOG.exception('Failed to update Aodh Alarm. Got Exception.')
def _alarm_request(data, state):
affected_resource_id = data.get(VProps.RESOURCE, {}).get(VProps.ID, '')
alarm_name = data.get(VProps.NAME)
aodh_alarm_name = '_'.join([alarm_name, affected_resource_id])
severity = severity_translation.get(data.get(VProps.SEVERITY), 'low')
return dict(
name=aodh_alarm_name,
description=u'Vitrage deduced alarm',
event_rule=dict(query=[
dict(
field=u'resource_id',
type='',
op=u'eq',
value=affected_resource_id),
dict(
field=u'vitrage_id',
type='',
op=u'eq',
value=data.get(VProps.VITRAGE_ID))]),
severity=severity,
state=state,
type=u'event')