Description
Event to be produced by services to send logs to the slack channel.
class SlackNotificationEvent(BaseKafkaModel):
_topic = 'slack_notification_events'
def __init__(self, overview_text: str, title: str, message: str, thread_uuid: Optional[str] = None, **kwargs):
super(SlackNotificationEvent, self).__init__(**kwargs)
self.overview_text = overview_text
self.title = title
self.message = message
self.thread_uuid = thread_uuidLinks
- consumers: