1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model;
use Icinga\Module\Icingadb\Model\Behavior\BoolCast;
use Icinga\Module\Icingadb\Model\Behavior\Timestamp;
use ipl\Orm\Behavior\Binary;
use ipl\Orm\Behaviors;
use ipl\Orm\Model;
/**
* Base class for the {@link HostState} and {@link ServiceState} models providing common columns.
*/
abstract class State extends Model
{
public function getColumns()
{
return [
'environment_id',
'state_type',
'soft_state',
'hard_state',
'previous_soft_state',
'previous_hard_state',
'check_attempt',
'severity',
'output',
'long_output',
'performance_data',
'normalized_performance_data',
'check_commandline',
'is_problem',
'is_handled',
'is_reachable',
'is_flapping',
'is_overdue',
'is_acknowledged',
'acknowledgement_comment_id',
'last_comment_id',
'in_downtime',
'execution_time',
'latency',
'check_timeout',
'check_source',
'scheduling_source',
'last_update',
'last_state_change',
'next_check',
'next_update'
];
}
public function createBehaviors(Behaviors $behaviors)
{
$behaviors->add(new BoolCast([
'is_problem',
'is_handled',
'is_reachable',
'is_flapping',
'is_overdue',
'is_acknowledged',
'in_downtime'
]));
$behaviors->add(new Timestamp([
'execution_time',
'latency',
'last_update',
'last_state_change',
'next_check',
'next_update'
]));
$behaviors->add(new Binary([
$this->getKeyName(),
'environment_id',
'acknowledgement_comment_id',
'last_comment_id'
]));
}
}
|