Files
g2s-aggregator/infra/alerts/signoz_contact_point_telegram.yaml
T
Раис Юсупалиев 34d7a4c336 008 add telegram alerts
2026-03-08 12:04:42 +03:00

15 lines
490 B
YAML

contact_point:
name: "telegram-webhook"
type: "webhook"
settings:
method: "POST"
url: "https://api.telegram.org/bot${G2S_ALERTS__TELEGRAM_BOT_TOKEN}/sendMessage"
headers:
Content-Type: "application/json"
body: |
{
"chat_id": "${G2S_ALERTS__TELEGRAM_CHAT_ID}",
"text": "[{{ .Status }}] {{ .RuleName }}\nProvider: {{ index .Labels \"provider\" }}\nSummary: {{ index .Annotations \"summary\" }}",
"disable_notification": false
}