diff --git a/lib/icinga/service.cpp b/lib/icinga/service.cpp index a4dc8cac2..9d3495667 100644 --- a/lib/icinga/service.cpp +++ b/lib/icinga/service.cpp @@ -137,7 +137,7 @@ int Service::GetSeverity() const Host::Ptr host = GetHost(); ObjectLock hlock (host); - if (host->GetState() != HostUp) { + if (host->GetState() != HostUp || !host->IsReachable()) { severity += 1024; } else { if (IsAcknowledged())