I'm experiencing a problem where Icinga2 is monitoring the lochalhost for example diskusage even though I set the IP to a different server. What do I do wrong?
Heres my config for one of the hosts:
object Host "tellus" {
import "generic-host"
address = "10.1.1.48"
address6 = "::1"
vars.os = "Linux"
}
object Service "http" {
host_name = "tellus"
check_command = "http"
}
object Service "procs" {
host_name = "tellus"
check_command = "procs"
}
object Service "load" {
host_name = "tellus"
check_command = "load"
}
object Service "users" {
host_name = "tellus"
check_command = "users"
}
object Service "disk" {
host_name = "tellus"
check_command = "disk"
}
object Service "swap" {
host_name = "tellus"
check_command = "swap"
}