Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
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.

How can I get Uptime Kuma notifications to IRC?

zedzed Member

I'm looking for clever suggestions of how to dump kuma notifications to an irc channel.
I'm absolutely certain there's some simple method I'm missing.

I had a bunch of pointless shit typed out here but you don't care.

Send help!

Comments

  • TrKTrK Member

    Perhaps use irc hooky or something.

  • LeviLevi Member

    It would be easier to just built time machine and zap your-self from those 1995 to 2025.

    Thanked by 1satorik
  • kenjing789kenjing789 Member
    edited August 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 :D

    Thanked by 1Mumbly
  • loayloay Member
    edited August 2025

    Use this:
    https://github.com/hackeriet/irc-http

    version: '2'
    services:
    client:
    image: adarnimrod/irc-http
    environment:
    IRC_HOST: ${IRC_HOST}
    IRC_PORT: ${IRC_PORT:-6667}
    IRC_NICK: ${IRC_NICK}
    IRC_REALNAME: ${IRC_REALNAME}
    IRC_CHANNEL: ${IRC_CHANNEL}
    DEBUG: ${DEBUG:-0}
    expose:
    - '3000'
    ports:
    - '127.0.0.1:3000:3000'
    restart: on-failure
    
  • wadhahwadhah Member, Host Rep

    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

    Thanked by 2fatchan 0xC7
  • MumblyMumbly Member
    edited August 2025

    @JabJab said: UptimeKuma as I see supports RSS, there are few RSS2IRC projects.

    Or simple Eggdrop + some rss reader Tcl script

    https://tclarchive.org/search.php?str=rss

  • zedzed Member

    @Mumbly said:

    @JabJab said: UptimeKuma as I see supports RSS, there are few RSS2IRC projects.

    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.

  • JabJabJabJab Member
    edited August 2025

    @zed said:

    @Mumbly said:

    @JabJab said: UptimeKuma as I see supports RSS, there are few RSS2IRC projects.

    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}/rss

  • zedzed Member

    @JabJab said:

    @zed said:
    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}/rss

    Yes, 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.

Sign In or Register to comment.