monitoring/dashboard: Add late host and service check results dashlets to the Overdue dashboard

refs #8378
This commit is contained in:
Eric Lippmann 2015-09-07 11:11:07 +02:00
parent 1fccf9c721
commit 9667445e47
1 changed files with 8 additions and 0 deletions

View File

@ -264,6 +264,14 @@ $dashboard->add(
* Most Overdue
*/
$dashboard = $this->dashboard($this->translate('Overdue'));
$dashboard->add(
$this->translate('Late Host Check Results'),
'monitoring/list/hosts?host_next_update<now'
);
$dashboard->add(
$this->translate('Late Service Check Results'),
'monitoring/list/services?service_next_update<now'
);
$dashboard->add(
$this->translate('Acknowledgements Active For At Least Three Days'),
'monitoring/list/comments?comment_type=Ack&comment_timestamp<-3 days&sort=comment_timestamp&dir=asc'