aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2021-05-23 22:07:52 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-05-23 22:07:52 +0200
commit0c62c36a9d9fa737baf45440916cfc0bfdd53f8e (patch)
tree56be4d0ced73a5960874d434bf5ed98c5a2e84d3 /modules
parent1feea3fe58cbaa709bdf91925860c2c96680e61d (diff)
downloadNix-0c62c36a9d9fa737baf45440916cfc0bfdd53f8e.tar.gz
Nix-0c62c36a9d9fa737baf45440916cfc0bfdd53f8e.tar.zst
Nix-0c62c36a9d9fa737baf45440916cfc0bfdd53f8e.zip
Add monitoring for Eban
Diffstat (limited to 'modules')
-rw-r--r--modules/private/monitoring/objects_eban.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/private/monitoring/objects_eban.nix b/modules/private/monitoring/objects_eban.nix
index 15b19b9..1e831d5 100644
--- a/modules/private/monitoring/objects_eban.nix
+++ b/modules/private/monitoring/objects_eban.nix
@@ -59,5 +59,19 @@ in
59 _webstatus_name = "Bitwarden"; 59 _webstatus_name = "Bitwarden";
60 _webstatus_url = "https://bitwarden.eban.bzh/"; 60 _webstatus_url = "https://bitwarden.eban.bzh/";
61 }) 61 })
62 (serviceTemplate {
63 service_description = "I Learned website is up and running";
64 check_command = [ "check_https" "ilearned.eu.org" "/" "<title" ];
65
66 _webstatus_name = "I Learned website";
67 _webstatus_url = "https://ilearned.eu.org/";
68 })
69 (serviceTemplate {
70 service_description = "I Learned gitea is up and running";
71 check_command = [ "check_https" "git.ilearned.eu.org" "/" "<title" ];
72
73 _webstatus_name = "I Learned Git";
74 _webstatus_url = "https://git.ilearned.eu.org/";
75 })
62 ]; 76 ];
63} 77}