mirror of https://github.com/Icinga/icinga2.git
Only check escalations for problem notifications.
This commit is contained in:
parent
dfda90f744
commit
511b052105
|
@ -271,6 +271,7 @@ void Notification::BeginExecuteNotification(NotificationType type, const Diction
|
||||||
Dictionary::Ptr times = GetTimes();
|
Dictionary::Ptr times = GetTimes();
|
||||||
Service::Ptr service = GetService();
|
Service::Ptr service = GetService();
|
||||||
|
|
||||||
|
if (type == NotificationProblem) {
|
||||||
if (times && times->Contains("begin") && now < service->GetLastHardStateChange() + times->Get("begin")) {
|
if (times && times->Contains("begin") && now < service->GetLastHardStateChange() + times->Get("begin")) {
|
||||||
Log(LogInformation, "icinga", "Not sending notifications for notification object '" + GetName() + "': before escalation range");
|
Log(LogInformation, "icinga", "Not sending notifications for notification object '" + GetName() + "': before escalation range");
|
||||||
return;
|
return;
|
||||||
|
@ -280,6 +281,7 @@ void Notification::BeginExecuteNotification(NotificationType type, const Diction
|
||||||
Log(LogInformation, "icinga", "Not sending notifications for notification object '" + GetName() + "': after escalation range");
|
Log(LogInformation, "icinga", "Not sending notifications for notification object '" + GetName() + "': after escalation range");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
unsigned long ftype = 1 << type;
|
unsigned long ftype = 1 << type;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue