147 lines
4.7 KiB
Python
Raw Normal View History

# (C) Copyright 2014-2017 Hewlett Packard Enterprise Development LP
# Copyright 2017 FUJITSU LIMITED
2014-02-27 16:55:07 -07:00
#
# 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.
2014-02-27 16:55:07 -07:00
""" Notification Engine
This engine reads alarms from Kafka and then notifies the customer using their configured notification method.
"""
import logging
import logging.config
import multiprocessing
import os
2014-02-27 16:55:07 -07:00
import signal
import sys
import time
2014-03-12 11:31:57 -06:00
import yaml
2014-02-27 16:55:07 -07:00
from monasca_notification.notification_engine import NotificationEngine
from monasca_notification.periodic_engine import PeriodicEngine
from monasca_notification.retry_engine import RetryEngine
2014-02-27 16:55:07 -07:00
log = logging.getLogger(__name__)
processors = [] # global list to facilitate clean signal handling
exiting = False
2014-02-27 16:55:07 -07:00
def clean_exit(signum, frame=None):
"""Exit all processes attempting to finish uncommitted active work before exit.
Can be called on an os signal or no zookeeper losing connection.
2014-02-27 16:55:07 -07:00
"""
global exiting
if exiting:
# Since this is set up as a handler for SIGCHLD when this kills one
# child it gets another signal, the global exiting avoids this running
# multiple times.
log.debug('Exit in progress clean_exit received additional signal %s' % signum)
return
log.info('Received signal %s, beginning graceful shutdown.' % signum)
exiting = True
wait_for_exit = False
for process in processors:
2014-03-17 15:05:17 -06:00
try:
if process.is_alive():
process.terminate() # Sends sigterm which any processes after a notification is sent attempt to handle
wait_for_exit = True
except Exception: # nosec
# There is really nothing to do if the kill fails, so just go on.
# The # nosec keeps bandit from reporting this as a security issue
pass
# wait for a couple seconds to give the subprocesses a chance to shut down correctly.
if wait_for_exit:
time.sleep(2)
# Kill everything, that didn't already die
for child in multiprocessing.active_children():
log.debug('Killing pid %s' % child.pid)
try:
os.kill(child.pid, signal.SIGKILL)
except Exception: # nosec
# There is really nothing to do if the kill fails, so just go on.
# The # nosec keeps bandit from reporting this as a security issue
2014-03-17 15:05:17 -06:00
pass
if signum == signal.SIGTERM:
sys.exit(0)
sys.exit(signum)
2014-02-27 16:55:07 -07:00
def start_process(process_type, config, *args):
log.info("start process: {}".format(process_type))
p = process_type(config, *args)
p.run()
2014-02-27 16:55:07 -07:00
def main(argv=None):
if argv is None:
argv = sys.argv
if len(argv) == 2:
config_file = argv[1]
elif len(argv) > 2:
print("Usage: " + argv[0] + " <config_file>")
print("Config file defaults to /etc/monasca/notification.yaml")
2014-02-27 16:55:07 -07:00
return 1
else:
config_file = '/etc/monasca/notification.yaml'
2014-02-27 16:55:07 -07:00
config = yaml.safe_load(open(config_file, 'rb'))
2014-02-27 16:55:07 -07:00
# Setup logging
try:
if config['logging']['raise_exceptions'] is True:
logging.raiseExceptions = True
else:
logging.raiseExceptions = False
except KeyError:
logging.raiseExceptions = False
pass
2014-03-17 11:26:34 -06:00
logging.config.dictConfig(config['logging'])
for proc in range(0, config['processors']['notification']['number']):
processors.append(multiprocessing.Process(
target=start_process, args=(NotificationEngine, config)))
processors.append(multiprocessing.Process(
target=start_process, args=(RetryEngine, config)))
2014-02-27 16:55:07 -07:00
if 60 in config['kafka']['periodic']:
processors.append(multiprocessing.Process(
target=start_process, args=(PeriodicEngine, config, 60)))
2014-02-27 16:55:07 -07:00
try:
log.info('Starting processes')
for process in processors:
process.start()
# The signal handlers must be added after the processes start otherwise
# they run on all processes
signal.signal(signal.SIGCHLD, clean_exit)
signal.signal(signal.SIGINT, clean_exit)
signal.signal(signal.SIGTERM, clean_exit)
while True:
time.sleep(10)
except Exception:
2014-03-20 14:55:41 -06:00
log.exception('Error! Exiting.')
clean_exit(signal.SIGKILL)
2014-02-27 16:55:07 -07:00
if __name__ == "__main__":
sys.exit(main())