e1a9b9a96a
Change upgrades the monasca-notification to leverage the capabilities of both oslo.log and oslo.conf: - configuration of logging separated from application settings - ability to enforce data types for application settings - ability to use oslo.config-generator capabilities - automatic configuration parsing done by oslo.cfg That change will bring it closer to the rest of monasca components where such transition has happened already. However, in the rest of monasca, oslo.cfg was partially or fully implemented whereas monasca-notification has been relying on YAML based configuration file. Therefore backward compatybility for such format will be kept for now. Story: 2000959 Task: 4093 Task: 4092 Change-Id: Ia75c3b60d0fada854178f21ca5ccb9e6a880f37f
104 lines
3.7 KiB
Python
104 lines
3.7 KiB
Python
# (C) Copyright 2016 Hewlett Packard Enterprise Development LP
|
|
# Copyright 2017 Fujitsu LIMITED
|
|
#
|
|
# 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 json
|
|
import time
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from monasca_common.kafka import consumer
|
|
from monasca_common.kafka import producer
|
|
from monasca_notification.common.repositories import exceptions
|
|
from monasca_notification.common.utils import construct_notification_object
|
|
from monasca_notification.common.utils import get_db_repo
|
|
from monasca_notification.common.utils import get_statsd_client
|
|
from monasca_notification.processors import notification_processor
|
|
|
|
log = logging.getLogger(__name__)
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class PeriodicEngine(object):
|
|
def __init__(self, period):
|
|
self._topic_name = CONF.kafka.periodic[period]
|
|
|
|
self._statsd = get_statsd_client()
|
|
|
|
zookeeper_path = CONF.zookeeper.periodic_path[period]
|
|
self._consumer = consumer.KafkaConsumer(CONF.kafka.url,
|
|
','.join(CONF.zookeeper.url),
|
|
zookeeper_path,
|
|
CONF.kafka.group,
|
|
self._topic_name)
|
|
|
|
self._producer = producer.KafkaProducer(CONF.kafka.url)
|
|
|
|
self._notifier = notification_processor.NotificationProcessor()
|
|
self._db_repo = get_db_repo()
|
|
self._period = period
|
|
|
|
def _keep_sending(self, alarm_id, original_state, type, period):
|
|
try:
|
|
current_state = self._db_repo.get_alarm_current_state(alarm_id)
|
|
except exceptions.DatabaseException:
|
|
log.debug('Database Error. Attempting reconnect')
|
|
current_state = self._db_repo.get_alarm_current_state(alarm_id)
|
|
|
|
# Alarm was deleted
|
|
if current_state is None:
|
|
return False
|
|
# Alarm state changed
|
|
if current_state != original_state:
|
|
return False
|
|
# Period changed
|
|
if period != self._period:
|
|
return False
|
|
if type != "webhook":
|
|
return False
|
|
|
|
return True
|
|
|
|
def run(self):
|
|
for raw_notification in self._consumer:
|
|
message = raw_notification[1].message.value
|
|
notification_data = json.loads(message)
|
|
|
|
notification = construct_notification_object(self._db_repo, notification_data)
|
|
|
|
if notification is None:
|
|
self._consumer.commit()
|
|
continue
|
|
|
|
if self._keep_sending(notification.alarm_id,
|
|
notification.state,
|
|
notification.type,
|
|
notification.period):
|
|
|
|
wait_duration = notification.period - (
|
|
time.time() - notification_data['notification_timestamp'])
|
|
|
|
if wait_duration > 0:
|
|
time.sleep(wait_duration)
|
|
|
|
notification.notification_timestamp = time.time()
|
|
|
|
self._notifier.send([notification])
|
|
self._producer.publish(self._topic_name,
|
|
[notification.to_json()])
|
|
|
|
self._consumer.commit()
|