mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
Introduce class FlappingHistory
This commit is contained in:
parent
65b24b9c87
commit
5eee45a29c
1 changed files with 61 additions and 0 deletions
61
library/Icingadb/Model/FlappingHistory.php
Normal file
61
library/Icingadb/Model/FlappingHistory.php
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Icingadb\Model;
|
||||
|
||||
use Icinga\Module\Icingadb\Model\Behavior\BoolCast;
|
||||
use Icinga\Module\Icingadb\Model\Behavior\Timestamp;
|
||||
use ipl\Orm\Behaviors;
|
||||
use ipl\Orm\Model;
|
||||
use ipl\Orm\Relations;
|
||||
|
||||
/**
|
||||
* Model for table `flapping_history`
|
||||
*
|
||||
* Please note that using this model will fetch history entries for decommissioned services. To avoid this,
|
||||
* the query needs a `flapping_history.service_id IS NULL OR flapping_history_service.id IS NOT NULL` where.
|
||||
*/
|
||||
class FlappingHistory extends Model
|
||||
{
|
||||
public function getTableName()
|
||||
{
|
||||
return 'flapping_history';
|
||||
}
|
||||
|
||||
public function getKeyName()
|
||||
{
|
||||
return 'id';
|
||||
}
|
||||
|
||||
public function getColumns()
|
||||
{
|
||||
return [
|
||||
'environment_id',
|
||||
'endpoint_id',
|
||||
'object_type',
|
||||
'host_id',
|
||||
'service_id',
|
||||
'start_time',
|
||||
'end_time',
|
||||
'percent_state_change_start',
|
||||
'percent_state_change_end',
|
||||
'flapping_threshold_low',
|
||||
'flapping_threshold_high'
|
||||
];
|
||||
}
|
||||
|
||||
public function createBehaviors(Behaviors $behaviors)
|
||||
{
|
||||
$behaviors->add(new Timestamp([
|
||||
'start_time',
|
||||
'end_time'
|
||||
]));
|
||||
}
|
||||
|
||||
public function createRelations(Relations $relations)
|
||||
{
|
||||
$relations->belongsTo('endpoint', Endpoint::class);
|
||||
$relations->belongsTo('environment', Environment::class);
|
||||
$relations->belongsTo('host', Host::class);
|
||||
$relations->belongsTo('service', Service::class)->setJoinType('LEFT');
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue