summaryrefslogtreecommitdiffstats
path: root/etc/icinga2/conf.d/win32/services.conf
blob: 929be5400b2729f054f66ae74d4d665630390e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * Service apply rules.
 *
 * The CheckCommand objects `ping4`, `ping6`, etc
 * are provided by the plugin check command templates.
 * Check the documentation for details.
 *
 * Tip: Use `icinga2 object list --type Service` to
 * list all service objects after running
 * configuration validation (`icinga2 daemon -C`).
 */

/*
 * This is an example host based on your
 * local host's FQDN. Specify the NodeName
 * constant in `constants.conf` or use your
 * own description, e.g. "db-host-1".
 */

/*
 * These are generic `ping4` and `ping6`
 * checks applied to all hosts having the
 * `address` resp. `address6` attribute
 * defined.
 */
apply Service "ping4" {
  import "generic-service"

  check_command = "ping4-windows"

  assign where host.address
}

apply Service "ping6" {
  import "generic-service"

  check_command = "ping6-windows"

  assign where host.address6
}

apply Service for (disk => config in host.vars.disks) {
  import "generic-service"

  check_command = "disk-windows"

  vars += config
}

apply Service "icinga" {
  import "generic-service"

  check_command = "icinga"

  assign where host.name == NodeName
}

apply Service "load" {
  import "generic-service"

  check_command = "load-windows"

  /* Used by the ScheduledDowntime apply rule in `downtimes.conf`. */
  vars.backup_downtime = "02:00-03:00"

  assign where host.name == NodeName
}

apply Service "procs" {
  import "generic-service"

  check_command = "procs-windows"

  assign where host.name == NodeName
}

apply Service "swap" {
  import "generic-service"

  check_command = "swap-windows"

  assign where host.name == NodeName
}

apply Service "users" {
  import "generic-service"

  check_command = "users-windows"

  assign where host.name == NodeName
}