aboutsummaryrefslogtreecommitdiff
path: root/modules/private/monitoring/objects_phare.nix
blob: 082e7e30a09a6d14cf40c915f3a04bdc32c3c319 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ emailCheck, ... }:
{
  activatedPlugins = [ "emails" ];
  host = {
    "phare.normalesup.org" = {
      alias = "phare.normalesup.org";
      address = "phare.normalesup.org";
      use = "linux-server";
      hostgroups = "webstatus-hosts";
      _webstatus_name = "phare";
      _webstatus_vhost = "status.immae.eu";
    };
  };
  service = [
    (emailCheck "phare" "phare.normalesup.org")
  ];
}