소스 검색

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}'

불러오는 중...
취소
저장