blob: 5b00864a948b447b484bac2c569df618f64295b8 (
plain) (
blame)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
apply Service "ssh" {
import "generic-service"
check_command = "ssh"
assign where host.vars.os in ["FreeBSD","Linux"]
}
apply Service "icinga" {
import "generic-service"
check_command = "icinga"
assign where host.name == NodeName
}
apply Service "dns" {
import "generic-service"
check_command = "dns"
vars.dns_lookup = "$address$"
vars.dns_server = "$address$"
vars.dns_wtime = ResponseTimeWarn
vars.dns_ctime = ResponseTimeCrit
assign where "idm-servers" in host.groups
}
apply Service "ldap" {
import "generic-service"
check_command = "ldap"
vars.ldap_port = 389
vars.ldap_warning = ResponseTimeWarn
vars.ldap_critical = ResponseTimeCrit
vars.ldap_v2 = false
vars.ldap_v3 = true
vars.ldap_starttls = true
vars.ldap_bind = IcingaDN
vars.ldap_pass = IcingaPassword
vars.ldap_base = HostsBaseDn
vars.ldap_attr = "(cn=" + NodeName + ")"
assign where "idm-servers" in host.groups
}
apply Service "ldaps" {
import "generic-service"
check_command = "ldap"
vars.ldap_port = 636
vars.ldap_warning = ResponseTimeWarn
vars.ldap_critical = ResponseTimeCrit
vars.ldap_v2 = false
vars.ldap_v3 = true
vars.ldap_ssl = true
vars.ldap_bind = IcingaDN
vars.ldap_pass = IcingaPassword
vars.ldap_base = HostsBaseDn
vars.ldap_attr = "(cn=" + NodeName + ")"
assign where "idm-servers" in host.groups
}
apply Service "imap" {
import "generic-service"
check_command = "imap"
vars.imap_port = 993
vars.imap_ssl = true
vars.imap_certificate_age = CertDaysWarn
vars.imap_warning = ResponseTimeWarn
vars.imap_critical = ResponseTimeCrit
assign where "imap-servers" in host.groups
}
apply Service "smtp" {
import "generic-service"
check_command = "smtp"
vars.smtp_port = 25
vars.smtp_certificate_age = CertDaysWarn
vars.smtp_starttls = true
vars.smtp_warning = ResponseTimeWarn
vars.smtp_critical = ResponseTimeCrit
assign where "smtp-servers" in host.groups
}
apply Service "submission" {
import "generic-service"
check_command = "smtp"
vars.smtp_port = 587
vars.smtp_certificate_age = CertDaysWarn
vars.smtp_starttls = true
vars.smtp_warning = ResponseTimeWarn
vars.smtp_critical = ResponseTimeCrit
assign where "smtp-servers" in host.groups
}
apply Service "postgres" {
import "generic-service"
check_command = "pgsql"
vars.pgsql_warning = ResponseTimeWarn
vars.pgsql_critical = ResponseTimeCrit
vars.pgsql_username = IcingaUsername
vars.pgsql_password = IcingaPassword
assign where "postgresql-servers" in host.groups
}
// Expect HTTP 200
apply Service "http" {
import "generic-service"
check_command = "http"
vars.http_vhost = "$address$"
vars.http_expect = "HTTP/1.1 200 OK"
vars.http_ssl = false
vars.http_warn_time = ResponseTimeWarn
vars.http_critical_time = ResponseTimeCrit
assign where ("cups-servers" in host.groups
|| "pkg-repositories" in host.groups)
}
// Expect HTTP 301
apply Service "http" {
import "generic-service"
check_command = "http"
vars.http_vhost = "$address$"
vars.http_expect = "HTTP/1.1 301 Moved Permanently"
vars.http_ssl = false
vars.http_warn_time = ResponseTimeWarn
vars.http_critical_time = ResponseTimeCrit
assign where ("dav-servers" in host.groups
|| "smtp-servers" in host.groups
|| "ttrss-servers" in host.groups
|| "invidious-servers" in host.groups
|| "nfs-servers" in host.groups
|| "pkg-servers" in host.groups
|| "unifi-controllers" in host.groups
|| "web-servers" in host.groups
|| "xmpp-servers" in host.groups
|| "znc-servers" in host.groups)
}
// Expect HTTPS 401
apply Service "https" {
import "generic-service"
check_command = "http"
vars.http_vhost = "$address$"
vars.http_expect = "HTTP/1.1 401 Unauthorized"
vars.http_ssl = true
vars.http_certificate = CertDaysWarn + "," + CertDaysCrit
vars.http_warn_time = ResponseTimeWarn
vars.http_critical_time = ResponseTimeCrit
assign where ("dav-servers" in host.groups
|| "cups-servers" in host.groups
|| "smtp-servers" in host.groups
|| "ttrss-servers" in host.groups)
}
// Expect HTTPS 200
apply Service "https" {
import "generic-service"
check_command = "http"
vars.http_vhost = "$address$"
vars.http_expect = "HTTP/1.1 200 OK"
vars.http_ssl = true
vars.http_certificate = CertDaysWarn + "," + CertDaysCrit
vars.http_warn_time = ResponseTimeWarn
vars.http_critical_time = ResponseTimeCrit
assign where ("invidious-servers" in host.groups
|| "nfs-servers" in host.groups
|| "pkg-servers" in host.groups
|| "unifi-controllers" in host.groups
|| "web-servers" in host.groups
|| "xmpp-servers" in host.groups
|| "znc-servers" in host.groups)
}
|