this post was submitted on 23 Jun 2023
2 points (100.0% liked)

Self Hosted - Self-hosting your services.

11230 readers
1 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules

Important

Beginning of January 1st 2024 this rule WILL be enforced. Posts that are not tagged will be warned and if not fixed within 24h then removed!

Cross-posting

If you see a rule-breaker please DM the mods!

founded 3 years ago
MODERATORS
 

I am looking to monitor *arr 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.

you are viewing a single comment's thread
view the rest of the comments
[–] Samlane86@lemmy.ml 0 points 1 year ago (1 children)

I don’t think this is exactly what you’re looking for, but Overseer/Jellyseerr offers notifications through Telegram for requests when they’re made, approved and available.

[–] tarius@lemmy.ml 1 points 1 year ago (2 children)

Right, I am looking for a solution that can alert me, if/when any of the self hosted web services goes down. Pretty much check if either the port or webpage is up and send alerts.

I saw Prometheus supports Windows. But, I think its kind of overkill for my use case. I have everything running on an old laptop. So, I am looking for a lightweight application/solution

[–] dotmatrix@mastodon.ftp.rip 2 points 1 year ago* (last edited 1 year ago) (2 children)

https://healthchecks.io/

You'll have to write some kind of script that does the checking (I'd use curl to check the HTTP response code), healthchecks.io then handles the notifications.

Edit: Just an example of how such a script might look (haven't tested it, but I do something similar in linux). You can let the task scheduler run it every few minutes: https://pastebin.com/rY0FPpgk

[–] tarius@lemmy.ml 1 points 1 year ago

Thank you for the script. I will look in to this.

[–] tarius@lemmy.ml 1 points 1 year ago

I have posted the solution above. Thank you for suggesting the above service

[–] dotmatrix@mastodon.ftp.rip 1 points 1 year ago* (last edited 1 year ago)

https://healthchecks.io/

You'll have to write some kind of script that does the checking (I'd use curl to check the HTTP response code), healthchecks.io then handles the notifications.