aboutsummaryrefslogtreecommitdiff
path: root/contrib/modules/grafana.py
blob: 75025ce13f37e1c0725bef14f5877a75e033c45c (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 and obj['evalMatches'] else ''
	if 'message' in obj:
		return f'{obj["title"]} - {obj["message"]}{evalMatchesStr}'
	else:
		return f'{obj["title"]}{evalMatchesStr}'