Add checks for graphite and icinga web
This commit is contained in:
parent
6e1dcc5c24
commit
9eb77fe941
1 changed files with 44 additions and 0 deletions
|
@ -41,6 +41,50 @@ object Host "beholder" {
|
|||
http_string = "Graphite"
|
||||
http_ipv6 = true
|
||||
}
|
||||
vars.http_vhosts["graphite v4"] = {
|
||||
http_uri = "/graphite/"
|
||||
http_address = "49.13.65.97"
|
||||
http_vhost = "beholder.cacert.org"
|
||||
http_string = "Graphite"
|
||||
http_ssl = true
|
||||
http_sni = true
|
||||
http_clientcert = "/etc/ssl/public/beholder-client.crt.pem"
|
||||
http_privatekey = "/etc/ssl/private/beholder-client.key.pem"
|
||||
http_ipv4 = true
|
||||
}
|
||||
vars.http_vhosts["graphite v6"] = {
|
||||
http_uri = "/graphite/"
|
||||
http_address = "2a01:4f8:c17:7495::1"
|
||||
http_vhost = "beholder.cacert.org"
|
||||
http_string = "Graphite"
|
||||
http_ssl = true
|
||||
http_sni = true
|
||||
http_clientcert = "/etc/ssl/public/beholder-client.crt.pem"
|
||||
http_privatekey = "/etc/ssl/private/beholder-client.key.pem"
|
||||
http_ipv6 = true
|
||||
}
|
||||
vars.http_vhosts["icingaweb2 v4"] = {
|
||||
http_uri = "/icingaweb2/dashboard"
|
||||
http_address = "49.13.65.97"
|
||||
http_vhost = "beholder.cacert.org"
|
||||
http_string = "Dashboard :: Icinga Web"
|
||||
http_ssl = true
|
||||
http_sni = true
|
||||
http_clientcert = "/etc/ssl/public/beholder-client.crt.pem"
|
||||
http_privatekey = "/etc/ssl/private/beholder-client.key.pem"
|
||||
http_ipv4 = true
|
||||
}
|
||||
vars.http_vhosts["icingaweb2 v6"] = {
|
||||
http_uri = "/icingaweb2/dashboard"
|
||||
http_address = "2a01:4f8:c17:7495::1"
|
||||
http_vhost = "beholder.cacert.org"
|
||||
http_string = "Dashboard :: Icinga Web"
|
||||
http_ssl = true
|
||||
http_sni = true
|
||||
http_clientcert = "/etc/ssl/public/beholder-client.crt.pem"
|
||||
http_privatekey = "/etc/ssl/private/beholder-client.key.pem"
|
||||
http_ipv6 = true
|
||||
}
|
||||
|
||||
vars.procs["apache2"] = {
|
||||
procs_command = "apache2"
|
||||
|
|
Loading…
Reference in a new issue