diff --git a/grafana_webhook_to_matrix.py b/grafana_webhook_to_matrix.py index 6331621..04ea2a8 100644 --- a/grafana_webhook_to_matrix.py +++ b/grafana_webhook_to_matrix.py @@ -43,6 +43,7 @@ async def handle_alert(request): body = await request.json() title = body['title'] status = body['status'] + print(body) await send_message(f'[{status}] {title}') return web.Response(text='Ok')