parent
b900a01d02
commit
a4a0f9f5e6
|
@ -38,6 +38,7 @@ class HostnotificationQuery extends IdoQuery
|
|||
'notifications' => array(
|
||||
'host_name' => 'ho.name1',
|
||||
'notification_output' => 'hn.output',
|
||||
'notification_reason' => 'hn.notification_reason',
|
||||
'notification_state' => 'hn.state',
|
||||
'notification_timestamp' => 'UNIX_TIMESTAMP(hn.start_time)',
|
||||
'object_type' => '(\'host\')'
|
||||
|
|
|
@ -25,6 +25,7 @@ class NotificationQuery extends IdoQuery
|
|||
'instance_name' => 'n.instance_name',
|
||||
'notification_contact_name' => 'n.notification_contact_name',
|
||||
'notification_output' => 'n.notification_output',
|
||||
'notification_reason' => 'n.notification_reason',
|
||||
'notification_state' => 'n.notification_state',
|
||||
'notification_timestamp' => 'n.notification_timestamp'
|
||||
),
|
||||
|
|
|
@ -38,6 +38,7 @@ class ServicenotificationQuery extends IdoQuery
|
|||
'notifications' => array(
|
||||
'host_name' => 'so.name1',
|
||||
'notification_output' => 'sn.output',
|
||||
'notification_reason' => 'sn.notification_reason',
|
||||
'notification_state' => 'sn.state',
|
||||
'notification_timestamp' => 'UNIX_TIMESTAMP(sn.start_time)',
|
||||
'object_type' => '(\'service\')',
|
||||
|
|
|
@ -15,6 +15,7 @@ class Notification extends DataView
|
|||
'host_name',
|
||||
'notification_contact_name',
|
||||
'notification_output',
|
||||
'notification_reason',
|
||||
'notification_state',
|
||||
'notification_timestamp',
|
||||
'object_type',
|
||||
|
|
Loading…
Reference in New Issue