handlers.py 847 B

1234567891011121314151617181920212223242526272829303132
  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. super().__init__()
  14. #import pdb; pdb.set_trace()
  15. self.conn = stomp.Connection([(conf['host'], conf['port'])])
  16. self.conn.start()
  17. self.conn.connect(conf['username'], conf['password'], wait=True)
  18. def emit(self, record):
  19. '''
  20. Send the message to the destination endpoint.
  21. '''
  22. self.conn.send('/topic/fcrepo', self.format(record))