mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
parent
0738a37fdf
commit
78d679b597
@ -307,24 +307,24 @@ $dashboard->add(
|
|||||||
*/
|
*/
|
||||||
$dashboard = $this->dashboard($this->translate('Activity Stream'));
|
$dashboard = $this->dashboard($this->translate('Activity Stream'));
|
||||||
$dashboard->add(
|
$dashboard->add(
|
||||||
$this->translate('Todays Events'),
|
$this->translate('Recent Events'),
|
||||||
'monitoring/list/eventhistory?timestamp>=-1%20days&sort=timestamp&dir=desc&limit=8'
|
'monitoring/list/eventhistory?timestamp>=-3%20days&sort=timestamp&dir=desc&limit=8'
|
||||||
);
|
);
|
||||||
$dashboard->add(
|
$dashboard->add(
|
||||||
$this->translate('Hard State Changed'),
|
$this->translate('Recent Hard State Changes'),
|
||||||
'monitoring/list/eventhistory?type=hard_state&sort=timestamp&dir=desc&limit=8'
|
'monitoring/list/eventhistory?timestamp>=-3%20days&type=hard_state&sort=timestamp&dir=desc&limit=8'
|
||||||
);
|
);
|
||||||
$dashboard->add(
|
$dashboard->add(
|
||||||
$this->translate('Notifications'),
|
$this->translate('Recent Notifications'),
|
||||||
'monitoring/list/eventhistory?type=notify&sort=timestamp&dir=desc&limit=8'
|
'monitoring/list/eventhistory?timestamp>=-3%20days&type=notify&sort=timestamp&dir=desc&limit=8'
|
||||||
);
|
);
|
||||||
$dashboard->add(
|
$dashboard->add(
|
||||||
$this->translate('Downtimes Started'),
|
$this->translate('Recent Downtimes Started'),
|
||||||
'monitoring/list/eventhistory?type=dt_start&sort=timestamp&dir=desc&limit=8'
|
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_start&sort=timestamp&dir=desc&limit=8'
|
||||||
);
|
);
|
||||||
$dashboard->add(
|
$dashboard->add(
|
||||||
$this->translate('Downtimes Ended'),
|
$this->translate('Recent Downtimes Ended'),
|
||||||
'monitoring/list/eventhistory?type=dt_end&sort=timestamp&dir=desc&limit=8'
|
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_end&sort=timestamp&dir=desc&limit=8'
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user