浏览代码

Include evalMatches in Grafana alerts if present

master
JustAnotherArchivist 3 年前
父节点
当前提交
ffddc27d91
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      contrib/modules/grafana.py

+ 3
- 2
contrib/modules/grafana.py 查看文件

@@ -3,7 +3,8 @@ 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 ''
if 'message' in obj:
return f'{obj["title"]} - {obj["message"]}'
return f'{obj["title"]} - {obj["message"]}{evalMatchesStr}'
else:
return obj['title']
return f'{obj["title"]}{evalMatchesStr}'

正在加载...
取消
保存