I am looking to monitor self hosted services that can send notifications to Telegram. Are there any web service monitoring solutions that can be installed on Windows and not installed using Docker?

I checked through awesome-selfhosted and awesome-sysadmin repos and couldn’t find one. All the ones I saw were either for Linux or container based.

EDIT: For anyone that comes across this, here is how I resolved this. Thanks to u/dotmatrix for suggesting healthchecks.io

SOLUTION

On the host

  1. Script to check the status of the webpage. Save the file with ps1 extension
$hc= "https://hc-ping.com/<blahblahblah>"
$url = "https://website.com/"
$response = curl $url
if ($response.StatusCode -eq 200) {
    curl $hc
} else {
    curl $hc/fail
}
  1. Set up the above script in Task Scheduler to run every 5 mins

On HealthChecks

  1. Create a check
  2. Create a Telegram integration if you want the notification in a group/direct message/channel: https://healthchecks.io/integrations/add_telegram/
  3. If you want to customize the message or send the message to a topic in a group, you can create a Webhook. Instructions are here: https://github.com/healthchecks/healthchecks/issues/689#issuecomment-1409847685
  • tariusOP
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    It looks like Prowlarr health checks doesn’t cover downstream apps: https://wiki.servarr.com/prowlarr/system#health

    I have all the *Arrs currently notifying Telegram with their own notification systems. The problem I am trying to solve is, what if the application itself goes down. I am also looking for something that monitors more than *Arr apps.

    For ex: Prowlarr application(exe) somehow gets killed. Then Prowlarr itself cant send notifications with its built in system, right? So, something external needs to monitor either the exe(process) or the webpage(HTTP request) or the port that can then send the notification that Prowlarr is down or not responding.

    I hope this explains the issue better.