mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
parent
3ed858269c
commit
95b5bba65c
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||||
|
|
||||||
|
namespace Icinga\Module\Monitoring\Backend\Ido\Query;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query for host downtime end history records
|
||||||
|
*/
|
||||||
|
class ServicedowntimeendhistoryQuery extends ServicedowntimestarthistoryQuery
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function whereToSql($col, $sign, $expression)
|
||||||
|
{
|
||||||
|
if ($col === 'UNIX_TIMESTAMP(sdh.actual_end_time)') {
|
||||||
|
return 'sdh.actual_end_time ' . $sign . ' ' . $this->timestampForSql(
|
||||||
|
$this->valueToTimestamp($expression)
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return parent::whereToSql($col, $sign, $expression);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
protected function joinBaseTables()
|
||||||
|
{
|
||||||
|
parent::joinBaseTables(true);
|
||||||
|
$this->select->where("sdh.actual_end_time > '1970-01-02 00:00:00'");
|
||||||
|
$this->columnMap['history']['type'] = "('dt_end')";
|
||||||
|
$this->columnMap['history']['timestamp'] = str_replace(
|
||||||
|
'actual_start_time',
|
||||||
|
'actual_end_time',
|
||||||
|
$this->columnMap['history']['timestamp']
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user