diff options
author | stuebinm | 2024-06-27 17:50:48 +0200 |
---|---|---|
committer | stuebinm | 2024-06-27 17:50:48 +0200 |
commit | 1ca000daf84d81941bce756b83efa07c9c7de62b (patch) | |
tree | f25b139a9e7969cba4c2bb563582137d8e189a20 | |
parent | 8a41884946673cedef665c7e6308ccc1e9e18842 (diff) |
monitoring: check that nobelium is running
… might be good to also add a monit on nobelium itself, but in any case
this isn't wrong either.
-rw-r--r-- | flora/services/monit.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/flora/services/monit.nix b/flora/services/monit.nix index 0b7ee7c..9d290a9 100644 --- a/flora/services/monit.nix +++ b/flora/services/monit.nix @@ -41,6 +41,10 @@ check host hacc-mattermost with address mattermost.infra4future.de if failed port 443 with protocol https then alert + + check host nobelium with address no.colorspace.club + if failed port 22 with protocol ssh + then alert ''; }; |