From 9eb77fe941a541b280b91d1b9ea2ebf1baf5e924 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Thu, 17 Aug 2023 12:04:26 +0200 Subject: [PATCH] Add checks for graphite and icinga web --- master/hosts.conf | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/master/hosts.conf b/master/hosts.conf index c2e4c26..be7e748 100644 --- a/master/hosts.conf +++ b/master/hosts.conf @@ -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"