New on LowEndTalk? Please Register and read our Community Rules.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.


Comments
Perhaps use irc hooky or something.
It would be easier to just built time machine and zap your-self from those 1995 to 2025.
You can hire a Fiverr people to copy paste your notification
Ask AI to write something for you. Maybe server side script and helper
you may wanna send notifications to telegram group by using a telegram bot.
To me, it's easy to get noticed in tg groups if something valuable happens.
Probably writing a bot or smth should be doable, unsure what uptime kuma uses, but surely they can use a hook
Amd surely there is a client written in your fav language
Shouldnt be hard
If you control the VPS or whatever just slap a dirty python script with a webhook listener that relays the message to the IRC, and configure uptime kuma to send notifs via webhook to the local script. Cheap and configurable.
For the webhook listening part, you could (should) use flask or cook something with the http.server if feeling fancy.
For the IRC part pick anything that suits you (first result on google).
You probably need threading so the 2 things work without blocking each other. Good luck
Probably depends how fast you want them and how much you want to mess with those.
UptimeKuma as I see supports RSS, there are few RSS2IRC projects.
Done
Use this:
https://github.com/hackeriet/irc-http
I mean your best bet would be to get a bot running that receives webhooks
https://github.com/irccloud/irccat
the webhook part works on basically any chat platform, matrix telegram discord etc
Or simple Eggdrop + some rss reader Tcl script
https://tclarchive.org/search.php?str=rss
Yea rss to irc is what I usually do but the built-in feeds don't seem to actually exist and I've not found docs on it except a commit where the functionality was added.
You made me read source code.
router.get("/status/:slug/rss", cache("5 minutes"), async (request, response) => {So
/status/{page_name_aka_slug}/rssYes, that's what I was referring to (the commit).
However our interaction made me wonder if I'd actually checked the container and no shit it's not there.