123 lines
3.7 KiB
Python
Raw Normal View History

2014-02-27 16:55:07 -07:00
#!/usr/bin/env python
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
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
2014-03-17 11:26:34 -06:00
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 notification_engine import NotificationEngine
from 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 uncommited 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
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
except Exception:
pass
# 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:
2014-03-17 15:05:17 -06:00
pass
sys.exit(0)
2014-02-27 16:55:07 -07:00
def start_process(proccess_type, config):
log.info("start process: {}".format(proccess_type))
p = proccess_type(config)
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.load(open(config_file, 'r'))
# Setup logging
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
# Start
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.')
2014-02-27 16:55:07 -07:00
for process in processors:
process.terminate()
if __name__ == "__main__":
sys.exit(main())