Skip to content

Commit 67e46f1

Browse files
committed
feat(alerting): Added the ability to send messages to Telegram topics in groups.
1 parent b650518 commit 67e46f1

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1378,6 +1378,7 @@ Here's an example of what the notifications look like:
13781378
| `alerting.telegram` | Configuration for alerts of type `telegram` | `{}` |
13791379
| `alerting.telegram.token` | Telegram Bot Token | Required `""` |
13801380
| `alerting.telegram.id` | Telegram User ID | Required `""` |
1381+
| `alerting.telegram.topic-id` | Telegram Topic ID in Group | `""` |
13811382
| `alerting.telegram.api-url` | Telegram API URL | `https://api.telegram.org` |
13821383
| `alerting.telegram.client` | Client configuration. <br />See [Client configuration](#client-configuration). | `{}` |
13831384
| `alerting.telegram.default-alert` | Default alert configuration. <br />See [Setting a default alert](#setting-a-default-alert) | N/A |
@@ -1390,6 +1391,7 @@ alerting:
13901391
telegram:
13911392
token: "123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11"
13921393
id: "0123456789"
1394+
topic-id: "7"
13931395
13941396
endpoints:
13951397
- name: website

alerting/provider/telegram/telegram.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ var (
2323
)
2424

2525
type Config struct {
26-
Token string `yaml:"token"`
27-
ID string `yaml:"id"`
28-
ApiUrl string `yaml:"api-url"`
26+
Token string `yaml:"token"`
27+
ID string `yaml:"id"`
28+
TopicId string `yaml:"topic-id,omitempty"`
29+
ApiUrl string `yaml:"api-url"`
2930

3031
ClientConfig *client.Config `yaml:"client,omitempty"`
3132
}
@@ -53,6 +54,9 @@ func (cfg *Config) Merge(override *Config) {
5354
if len(override.ID) > 0 {
5455
cfg.ID = override.ID
5556
}
57+
if len(override.TopicId) > 0 {
58+
cfg.TopicId = override.TopicId
59+
}
5660
if len(override.ApiUrl) > 0 {
5761
cfg.ApiUrl = override.ApiUrl
5862
}
@@ -117,6 +121,7 @@ type Body struct {
117121
ChatID string `json:"chat_id"`
118122
Text string `json:"text"`
119123
ParseMode string `json:"parse_mode"`
124+
TopicId string `json:"message_thread_id,omitempty"`
120125
}
121126

122127
// buildRequestBody builds the request body for the provider
@@ -150,6 +155,7 @@ func (provider *AlertProvider) buildRequestBody(cfg *Config, ep *endpoint.Endpoi
150155
ChatID: cfg.ID,
151156
Text: text,
152157
ParseMode: "MARKDOWN",
158+
TopicId: cfg.TopicId,
153159
})
154160
return bodyAsJSON
155161
}

alerting/provider/telegram/telegram_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,13 @@ func TestAlertProvider_buildRequestBody(t *testing.T) {
154154
Resolved: true,
155155
ExpectedBody: "{\"chat_id\":\"123\",\"text\":\"⛑ *Gatus* \\nAn alert for *endpoint-name* has been resolved:\\n—\\n _healthcheck passing successfully 5 time(s) in a row_\\n— \\n*Description* \\n_description-2_ \\n\",\"parse_mode\":\"MARKDOWN\"}",
156156
},
157+
{
158+
Name: "send to topic",
159+
Provider: AlertProvider{ID: "123", TopicId: "7"},
160+
Alert: alert.Alert{Description: &firstDescription, SuccessThreshold: 5, FailureThreshold: 3},
161+
Resolved: false,
162+
ExpectedBody: "{\"chat_id\":\"123\",\"text\":\"⛑ *Gatus* \\nAn alert for *endpoint-name* has been triggered:\\n—\\n _healthcheck failed 3 time(s) in a row_\\n— \\n*Description* \\n_description-1_ \\n\\n*Condition results*\\n❌ - `[CONNECTED] == true`\\n❌ - `[STATUS] == 200`\\n\",\"parse_mode\":\"MARKDOWN\",\"message_thread_id\":\"7\"}",
163+
},
157164
}
158165
for _, scenario := range scenarios {
159166
t.Run(scenario.Name, func(t *testing.T) {

0 commit comments

Comments
 (0)