handlers.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import logging
  2. import stomp
  3. class StompHandler(logging.Handler):
  4. """
  5. Send messages to a remote queue broker using the STOMP protocol.
  6. This module is named and configured separately from
  7. standard logging for clarity about its scope: while logging has an
  8. informational purpose, this module has a functional one.
  9. """
  10. def __init__(self, conf):
  11. self.conf = conf
  12. if self.conf['protocol'] == '11':
  13. conn_cls = stomp.Connection11
  14. elif self.conf['protocol'] == '12':
  15. conn_cls = stomp.Connection12
  16. else:
  17. conn_cls = stomp.Connection10
  18. self.conn = conn_cls([(self.conf['host'], self.conf['port'])])
  19. self.conn.start()
  20. self.conn.connect(
  21. username=self.conf['username'],
  22. passcode=self.conf['password'],
  23. wait=True
  24. )
  25. return super().__init__()
  26. def __del_(self):
  27. """Disconnect the client."""
  28. self.conn.disconnect()
  29. def emit(self, record):
  30. """Send the message to the destination endpoint."""
  31. self.conn.send(destination=self.conf['destination'],
  32. body=bytes(self.format(record), 'utf-8'))