blob: e35806e6cddff86403062004c5805630cb5adce9 (
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 else ''
if 'message' in obj:
return f'{obj["title"]} - {obj["message"]}{evalMatchesStr}'
else:
return f'{obj["title"]}{evalMatchesStr}'
|