aboutsummaryrefslogtreecommitdiff
path: root/contrib/modules/grafana.py
blob: 2fde817dc2e83bc1938faa5428ae967c4584dc14 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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:
		message = obj['message'].replace('\n', '  ')
		return f'{obj["title"]} - {message}{evalMatchesStr}'
	else:
		return f'{obj["title"]}{evalMatchesStr}'