From 2ce4911ff5c1429e1abc716ca2d0e7e7bd708322 Mon Sep 17 00:00:00 2001 From: Rune Juhl Jacobsen Date: Sun, 19 Feb 2023 21:52:36 +0100 Subject: [PATCH] debug --- grafana_webhook_to_matrix.py | 1 + 1 file changed, 1 insertion(+) 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')