aboutsummaryrefslogtreecommitdiff
path: root/modules/private/monitoring/objects_eldiron.nix
blob: 897fc15f85d7389305042944e13d1cd7fcb26586 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ... }:
{
  service = [
    {
      service_description = "Postgresql replication for backup-2 is up to date";
      use = "local-service";
      check_command = ["check_postgresql_replication" "backup-2" "/run/postgresql" "5432"];
    }
    {
      service_description = "mailq is empty";
      use = "local-service";
      check_command = ["check_mailq"];
    }
  ];
}