[feature request] Alert Telegram support #174

Open
opened 2025-10-31 15:04:01 -05:00 by GiteaMirror · 7 comments
Owner

Originally created by @ar3thien on GitHub (Jan 7, 2025).

Hello

Can you please add telegram support to be able to send telegram notifications/alerts?

Thanks

Originally created by @ar3thien on GitHub (Jan 7, 2025). Hello Can you please add telegram support to be able to send telegram notifications/alerts? Thanks
GiteaMirror added the enhancement label 2025-10-31 15:04:01 -05:00
Author
Owner

@tracure1337 commented on GitHub (Jan 13, 2025):

I'd suggest to incorporate ntfy and have users then use whatever they want.

@tracure1337 commented on GitHub (Jan 13, 2025): I'd suggest to incorporate ntfy and have users then use whatever they want.
Author
Owner

@mbecker20 commented on GitHub (Jan 13, 2025):

Check out @FoxxMD Alerter for Ntfy: https://github.com/FoxxMD/deploy-ntfy-alerter

@mbecker20 commented on GitHub (Jan 13, 2025): Check out @FoxxMD Alerter for Ntfy: https://github.com/FoxxMD/deploy-ntfy-alerter
Author
Owner

@FoxxMD commented on GitHub (Jan 13, 2025):

For telegram, the apprise alerter with a telegram URL could also be used.

After setting up apprise, the telegram provider, and the apprise alerter the stateless url in the alerter would be like

APPRISE_STATELESS_URLS=tgram://12345abcd_bot_id/12345_chat_id/
@FoxxMD commented on GitHub (Jan 13, 2025): For telegram, the [apprise alerter](https://github.com/FoxxMD/deploy-apprise-alerter) with a [telegram URL](https://github.com/caronc/apprise/wiki/Notify_telegram) could also be used. After setting up apprise, the telegram provider, and the apprise alerter the stateless url in the alerter would be like ``` APPRISE_STATELESS_URLS=tgram://12345abcd_bot_id/12345_chat_id/ ```
Author
Owner

@FoxxMD commented on GitHub (Jan 13, 2025):

@ar3thien Just FYI I've updated the apprise alerter so that it will push markdown-formatted messages if configured to do so via ENV with MARKDOWN=true

@FoxxMD commented on GitHub (Jan 13, 2025): @ar3thien Just FYI I've updated the apprise alerter so that it will push markdown-formatted messages if configured to do so via ENV with `MARKDOWN=true`
Author
Owner

@mattsmallman commented on GitHub (Apr 1, 2025):

I had the same issue and spun up this Cloudflare worker to forward alerts to telegram from a custom alerter.

https://github.com/mattsmallman/komodo-alert-to-telgram

@mattsmallman commented on GitHub (Apr 1, 2025): I had the same issue and spun up this Cloudflare worker to forward alerts to telegram from a custom alerter. https://github.com/mattsmallman/komodo-alert-to-telgram
Author
Owner

@lordraiden commented on GitHub (May 17, 2025):

Despite the options I guess it would be easy to add telegram support

for example simply by launching a script

chatid="XXXXXXXXXXX"
api="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
log={{ .ShellEscape .Summary }}
curl -s \
  --data parse_mode=HTML \
  --data chat_id=$chatid \
  --data text="$log" \
  "https://api.telegram.org/bot$api/sendMessage"
@lordraiden commented on GitHub (May 17, 2025): Despite the options I guess it would be easy to add telegram support for example simply by launching a script ``` chatid="XXXXXXXXXXX" api="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" log={{ .ShellEscape .Summary }} curl -s \ --data parse_mode=HTML \ --data chat_id=$chatid \ --data text="$log" \ "https://api.telegram.org/bot$api/sendMessage" ```
Author
Owner

@SashaBusinaro commented on GitHub (Jul 3, 2025):

I’d also find this useful!
In the meantime, I’ve created a simple Docker container to bridge Komodo alerts to a Telegram bot:

https://github.com/SashaBusinaro/komodo-telegram-alerter

@SashaBusinaro commented on GitHub (Jul 3, 2025): I’d also find this useful! In the meantime, I’ve created a simple **Docker container** to bridge Komodo alerts to a Telegram bot: https://github.com/SashaBusinaro/komodo-telegram-alerter
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#174