The day before yesterday I woke up and my button to open my roller shutter had no effect
After going to check over SSH what was going on (docker ps -a) I saw that my z2m container had been stopped for several hours.
I have no idea why (Gladys update?).
I was wondering if it would be possible to be notified, either in the dashboard / or via a scene with a Telegram message, that one of the containers is OFF.
Indeed, Node-RED can solve your problem. For example, you can run a curl against Gladys and verify that it responds with a valid HTTP response (e.g., 200)
I’ll make it simpler curl is just a command that lets you request a web page (like your browser does). The difference is that it’s all command-line. So you can get the status of the request (whether it worked or not) typically you’ve already seen 404 Not Found (that’s an HTTP response). Usually on a GET (simply retrieving a page) you get a 200 code
But yes on Node-RED you have very simple things like you can probably use (http_requests)