15 lines
490 B
YAML
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
|
|
}
|