From b2251c75990e644207aba4a2ef23c7923037e532 Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Tue, 28 Nov 2023 15:03:04 +0100 Subject: [PATCH] fix(chalice): changed alert's notification (#1721) --- ee/api/chalicelib/core/alerts_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/api/chalicelib/core/alerts_processor.py b/ee/api/chalicelib/core/alerts_processor.py index 59e7831d3..e44282846 100644 --- a/ee/api/chalicelib/core/alerts_processor.py +++ b/ee/api/chalicelib/core/alerts_processor.py @@ -242,7 +242,7 @@ def generate_notification(alert, result): "alertId": alert["alertId"], "tenantId": alert["tenantId"], "title": alert["name"], - "description": f"has been triggered, {alert['seriesName']} = {left} ({alert['query']['operator']} {right}).", + "description": f"{alert['seriesName']} = {left} ({alert['query']['operator']} {right}).", "buttonText": "Check metrics for more details", "buttonUrl": f"/{alert['projectId']}/metrics", "imageUrl": None,