handlers.py 884 B

123456789101112131415161718192021222324252627282930313233
  1. import logging
  2. from abc import ABCMeta, abstractmethod
  3. import stomp
  4. from flask import current_app
  5. class StompHandler(logging.Handler):
  6. '''
  7. Send messages to a remote queue broker using the STOMP protocol.
  8. This module is named and configured separately from
  9. standard logging for clarity about its scope: while logging has an
  10. informational purpose, this module has a functional one.
  11. '''
  12. def __init__(self, conf):
  13. self.conf = conf
  14. self.conn = stomp.Connection([(conf['host'], conf['port'])])
  15. self.conn.start()
  16. self.conn.connect(conf['username'], conf['password'], wait=True)
  17. return super().__init__()
  18. def emit(self, record):
  19. '''
  20. Send the message to the destination endpoint.
  21. '''
  22. self.conn.send(destination=self.conf['destination'],
  23. body=self.format(record))