Hi,

Problem solved. The attached file works correctly for HTTP IPv6.

But the stack trace IMHO should not happen, looks like
a config validator bug gets triggered if the type
on the left and right side do not match (string vs. hash).

Regards
Daniel
--
Dipl.-Inf. Daniel Parthey
System Engineer
Metaways Infosystems GmbH
Pickhuben 2, D-20457 Hamburg

E-Mail: [email protected]
Web:    http://www.metaways.de
Tel:    +49 (0)40 317031-537
Fax:    +49 (0)40 317031-937

Metaways Infosystems GmbH - Sitz: D-22967 Tremsbüttel
Handelsregister: Amtsgericht Lübeck HRB 4508 AH
Geschäftsführung: Hermann Thaele, Lüder-H.Thaele
include "constants.conf"
include "zones.conf"
include <itl>
include <plugins>
include "features-enabled/*.conf"

template Host "generic-host" {
  max_check_attempts = 5
  check_interval = 1m
  retry_interval = 30s
  check_command = "hostalive"
}

template Service "generic-service" {
  max_check_attempts = 3
  check_interval = 1m
  retry_interval = 30s
}

object CheckCommand "http6" {
  import "http"
  arguments += {
    "-6" = {
      skip_key = true
    }
  }
  vars.http_address = "$address6$"
}

object Host "localhost" {
  import "generic-host"
  address = "127.0.0.1"
  address6 = "::1"
  vars.os = "Linux"
  vars.sla = "24x7"
}

object Service "http" {
  import "generic-service"
  host_name = "localhost"
  check_command = "http6"
  vars.sla = "24x7"
}
_______________________________________________
icinga-users mailing list
[email protected]
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to