forked from jonathanio/monitoring-nagios-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_haproxy.icinga2.conf
45 lines (43 loc) · 2.12 KB
/
check_haproxy.icinga2.conf
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
object CheckCommand "haproxy" {
import "plugin-check-command"
command = [ PluginDir + "/check_haproxy" ]
arguments = {
"--defaults" = {
value = "$haproxy_default$"
description = "Set/Override the defaults which will be applied to all checks (unless specifically set by --overrides)."
}
"--frontends" = {
set_if = "$haproxy_frontends$"
description = "Enable checks for the frontends in HAProxy (that they're marked as OPEN and the session limits haven't been reached)."
}
"--nofrontends" = {
set_if = "$haproxy_nofrontends$"
description = "Disable checks for the frontends in HAProxy (that they're marked as OPEN and the session limits haven't been reached)."
}
"--backends" = {
set_if = "$haproxy_backends$"
description = "Enable checks for the backends in HAProxy (that they have the required quorum of servers, and that the session limits haven't been reached)."
}
"--nobackends" = {
set_if = "$haproxy_nobackends$"
description = "Disable checks for the backends in HAProxy (that they have the required quorum of servers, and that the session limits haven't been reached)."
}
"--servers" = {
set_if = "$haproxy_servers$"
description = "Enable checks for the servers in HAProxy (that they haven't reached the limits for the sessions or for queues)."
}
"--noservers" = {
set_if = "$haproxy_noservers$"
description = "Disable checks for the servers in HAProxy (that they haven't reached the limits for the sessions or for queues)."
}
"--overrides" = {
value = "$haproxy_overrides$"
description = "Override the defaults for a particular frontend or backend, in the form {name}:{override}, where {override} is the same format as --defaults above."
}
"--socket" = {
value = "$haproxy_socket$"
description = "Path to the socket check_haproxy should connect to"
required = true
}
}
}