So recently been spending time configuring my selfhosted services with notifications usint ntfy. I’ve added ntfy to report status on containers and my system using Beszel. However, only 12 out of my 44 containers seem to have healthcheck “enabled” or built in as a feature. So im now wondering what is considered best practice for monitoring the uptime/health of my containers. I am already using uptimekuma, with the “docker container” option for each of my containers i deem necessary to monitor, i do not monitor all 44 of them 😅
So I’m left with these questions;
- How do you notify yourself about the status of a container?
- Is there a “quick” way to know if a container has healthcheck as a feature.
- Does healthcheck feature simply depend on the developer of each app, or the person building the container?
- Is it better to simply monitor the http(s) request to each service? (I believe this in my case would make Caddy a single point of failure for this kind of monitor).
Thanks for any input!


If you’re looking for this you can use something like uptime kuma, which pings each service and looks for a specific response or it will ping you
I doubled down recently and now have Grafana dashboards + alerts for all of my proxmox hosts, their containers etc.
Alerts are mainly mean CPU, memory or disk utilization > 80% over 5 minutes
I also get all of my notifications via a self hosted ntfy instance :~)
As i wrote in my post, im already using uptimekuma to monitor my services. However if i choose the “docker container” mode foe uptimekuma to monitor it cant actually so that, as there is no health feature in most containers, so this results in 100% downtime 🙃 Other way would to do it would to just check the url of the service whoch ofc works too, but its not a “true” health check.