mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
# Webhooks for external integrations.
|
|
from typing import Any, Dict, List
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import api_key_only_webhook_view
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
|
from zerver.models import UserProfile
|
|
|
|
|
|
@api_key_only_webhook_view('AlertManager')
|
|
@has_request_variables
|
|
def api_alertmanager_webhook(request: HttpRequest, user_profile: UserProfile,
|
|
payload: Dict[str, Any] = REQ(argument_type='body')) -> HttpResponse:
|
|
name_field = request.GET.get("name", "instance")
|
|
desc_field = request.GET.get("desc", "alertname")
|
|
topics: Dict[str, Dict[str, List[str]]] = {}
|
|
|
|
for alert in payload["alerts"]:
|
|
labels = alert.get("labels", {})
|
|
annotations = alert.get("annotations", {})
|
|
|
|
name = labels.get(
|
|
name_field, annotations.get(name_field, "(unknown)"))
|
|
desc = labels.get(
|
|
desc_field, annotations.get(desc_field, f"<missing field: {desc_field}>"))
|
|
|
|
url = alert.get("generatorURL").replace("tab=1", "tab=0")
|
|
|
|
body = f"{desc} ([graph]({url}))"
|
|
if name not in topics:
|
|
topics[name] = {"firing": [], "resolved": []}
|
|
topics[name][alert["status"]].append(body)
|
|
|
|
for topic, statuses in topics.items():
|
|
for status, messages in statuses.items():
|
|
if len(messages) == 0:
|
|
continue
|
|
|
|
if status == "firing":
|
|
icon = ":alert:"
|
|
title = "FIRING"
|
|
else:
|
|
title = "Resolved"
|
|
icon = ":squared_ok:"
|
|
|
|
if len(messages) == 1:
|
|
body = f"{icon} **{title}** {messages[0]}"
|
|
else:
|
|
message_list = "\n".join([f"* {m}" for m in messages])
|
|
body = f"{icon} **{title}**\n{message_list}"
|
|
|
|
check_send_webhook_message(request, user_profile, topic, body)
|
|
|
|
return json_success()
|