aboutsummaryrefslogtreecommitdiff
path: root/contrib/modules
diff options
context:
space:
mode:
authorGravatar JustAnotherArchivist2020-11-24 16:18:13 +0000
committerGravatar JustAnotherArchivist2020-11-24 16:18:13 +0000
commite4946a6b3ca1836a76bd07570fda1b8fc169d7cb (patch)
tree0bcd79f16d02854e2565c3da15057b0c7dad9647 /contrib/modules
parentInclude evalMatches in Grafana alerts if present (diff)
signature
Remove trailing colon on empty evalMatches
Diffstat (limited to 'contrib/modules')
-rw-r--r--contrib/modules/grafana.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/modules/grafana.py b/contrib/modules/grafana.py
index e35806e..75025ce 100644
--- a/contrib/modules/grafana.py
+++ b/contrib/modules/grafana.py
@@ -3,7 +3,7 @@ import json
async def process(request):
obj = json.loads(await request.text())
- evalMatchesStr = (': ' + ', '.join(f'{x["metric"]} = {x["value"]}' for x in obj['evalMatches'])) if 'evalMatches' in obj else ''
+ evalMatchesStr = (': ' + ', '.join(f'{x["metric"]} = {x["value"]}' for x in obj['evalMatches'])) if 'evalMatches' in obj and obj['evalMatches'] else ''
if 'message' in obj:
return f'{obj["title"]} - {obj["message"]}{evalMatchesStr}'
else: