2019-12-13 07:46:59 -05:00
|
|
|
<?php
|
|
|
|
|
|
2020-03-13 03:38:01 -04:00
|
|
|
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
|
|
|
|
|
|
2019-12-13 07:46:59 -05:00
|
|
|
namespace Icinga\Module\Icingadb\Model;
|
|
|
|
|
|
2024-01-23 02:43:02 -05:00
|
|
|
use DateTime;
|
2025-06-06 06:44:32 -04:00
|
|
|
use Icinga\Module\Icingadb\Common\Backend;
|
2025-06-05 10:56:46 -04:00
|
|
|
use ipl\Orm\Behavior\BoolCast;
|
2022-05-19 10:28:45 -04:00
|
|
|
use ipl\Orm\Behavior\Binary;
|
2023-05-30 10:05:11 -04:00
|
|
|
use ipl\Orm\Behavior\MillisecondTimestamp;
|
2019-12-13 07:46:59 -05:00
|
|
|
use ipl\Orm\Behaviors;
|
|
|
|
|
use ipl\Orm\Model;
|
|
|
|
|
use ipl\Orm\Relations;
|
|
|
|
|
|
2024-01-23 02:43:02 -05:00
|
|
|
/**
|
|
|
|
|
* @property string $id
|
|
|
|
|
* @property string $environment_id
|
|
|
|
|
* @property ?string $endpoint_id
|
|
|
|
|
* @property DateTime $heartbeat
|
|
|
|
|
* @property bool $responsible
|
|
|
|
|
* @property bool $icinga2_active_host_checks_enabled
|
|
|
|
|
* @property bool $icinga2_active_service_checks_enabled
|
|
|
|
|
* @property bool $icinga2_event_handlers_enabled
|
|
|
|
|
* @property bool $icinga2_flap_detection_enabled
|
|
|
|
|
* @property bool $icinga2_notifications_enabled
|
|
|
|
|
* @property bool $icinga2_performance_data_enabled
|
|
|
|
|
* @property DateTime $icinga2_start_time
|
|
|
|
|
* @property string $icinga2_version
|
2025-06-06 06:44:32 -04:00
|
|
|
* @property string $icingadb_version
|
2024-01-23 02:43:02 -05:00
|
|
|
*/
|
2019-12-13 07:46:59 -05:00
|
|
|
class Instance extends Model
|
|
|
|
|
{
|
|
|
|
|
public function getTableName()
|
|
|
|
|
{
|
|
|
|
|
return 'icingadb_instance';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getKeyName()
|
|
|
|
|
{
|
|
|
|
|
return 'id';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getColumns()
|
|
|
|
|
{
|
2025-06-06 06:44:32 -04:00
|
|
|
$columns = [
|
2019-12-13 07:46:59 -05:00
|
|
|
'environment_id',
|
|
|
|
|
'endpoint_id',
|
|
|
|
|
'heartbeat',
|
|
|
|
|
'responsible',
|
|
|
|
|
'icinga2_active_host_checks_enabled',
|
|
|
|
|
'icinga2_active_service_checks_enabled',
|
|
|
|
|
'icinga2_event_handlers_enabled',
|
|
|
|
|
'icinga2_flap_detection_enabled',
|
|
|
|
|
'icinga2_notifications_enabled',
|
|
|
|
|
'icinga2_performance_data_enabled',
|
|
|
|
|
'icinga2_start_time',
|
|
|
|
|
'icinga2_version'
|
|
|
|
|
];
|
2025-06-06 06:44:32 -04:00
|
|
|
|
|
|
|
|
if (Backend::supportsDependencies()) {
|
|
|
|
|
$columns[] = 'icingadb_version';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $columns;
|
2019-12-13 07:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getDefaultSort()
|
|
|
|
|
{
|
2022-04-11 06:58:21 -04:00
|
|
|
return ['responsible desc', 'heartbeat desc'];
|
2019-12-13 07:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function createBehaviors(Behaviors $behaviors)
|
|
|
|
|
{
|
2023-05-30 10:05:11 -04:00
|
|
|
$behaviors->add(new MillisecondTimestamp([
|
2019-12-13 07:46:59 -05:00
|
|
|
'heartbeat',
|
|
|
|
|
'icinga2_start_time'
|
|
|
|
|
]));
|
2022-03-29 09:27:18 -04:00
|
|
|
|
2019-12-13 07:46:59 -05:00
|
|
|
$behaviors->add(new BoolCast([
|
|
|
|
|
'responsible',
|
|
|
|
|
'icinga2_active_host_checks_enabled',
|
|
|
|
|
'icinga2_active_service_checks_enabled',
|
|
|
|
|
'icinga2_event_handlers_enabled',
|
|
|
|
|
'icinga2_flap_detection_enabled',
|
|
|
|
|
'icinga2_notifications_enabled',
|
|
|
|
|
'icinga2_performance_data_enabled'
|
|
|
|
|
]));
|
2022-03-29 09:27:18 -04:00
|
|
|
|
|
|
|
|
$behaviors->add(new Binary([
|
|
|
|
|
'id',
|
|
|
|
|
'environment_id',
|
|
|
|
|
'endpoint_id',
|
|
|
|
|
]));
|
2019-12-13 07:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function createRelations(Relations $relations)
|
|
|
|
|
{
|
|
|
|
|
$relations->belongsTo('environment', Environment::class);
|
|
|
|
|
$relations->belongsTo('endpoint', Endpoint::class)->setJoinType('LEFT');
|
|
|
|
|
}
|
|
|
|
|
}
|