mirror of https://github.com/Icinga/icinga2.git
Service: be handled while host is down
This commit is contained in:
parent
2b3511d8a6
commit
ae18536b0f
|
@ -133,6 +133,11 @@ int Service::GetSeverity() const
|
||||||
return severity;
|
return severity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Service::GetHandled() const
|
||||||
|
{
|
||||||
|
return Checkable::GetHandled() || m_Host->GetProblem();
|
||||||
|
}
|
||||||
|
|
||||||
bool Service::IsStateOK(ServiceState state) const
|
bool Service::IsStateOK(ServiceState state) const
|
||||||
{
|
{
|
||||||
return state == ServiceOK;
|
return state == ServiceOK;
|
||||||
|
|
|
@ -29,6 +29,7 @@ public:
|
||||||
|
|
||||||
Host::Ptr GetHost() const override;
|
Host::Ptr GetHost() const override;
|
||||||
int GetSeverity() const override;
|
int GetSeverity() const override;
|
||||||
|
bool GetHandled() const override;
|
||||||
|
|
||||||
bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
|
bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue