Some more readability

This commit is contained in:
Thomas Gelf 2013-08-20 23:54:12 +02:00 committed by Eric Lippmann
parent d5c86c5328
commit 200731aedc
1 changed files with 17 additions and 17 deletions

View File

@ -32,15 +32,15 @@ class StatusQuery extends AbstractQuery
'host_does_active_checks' => 'hs.active_checks_enabled',
'host_accepts_passive_checks' => 'hs.passive_checks_enabled',
'host_last_state_change' => 'UNIX_TIMESTAMP(hs.last_state_change)',
'host_last_hard_state' => 'hs.last_hard_state',
'host_last_hard_state_change' => 'hs.last_hard_state_change',
'host_check_command' => 'hs.check_command',
'host_last_check' => 'hs.last_check',
'host_next_check' => 'hs.next_check',
'host_current_check_attempt' => 'hs.current_check_attempt',
'host_max_check_attempts' => 'hs.max_check_attempts',
'host_attempt' => 'hs.current_check_attempt || \'/\' || hs.max_check_attempts',
'host_last_check' => 'hs.last_check',
'host_next_check' => 'hs.next_check',
'host_check_type' => 'hs.check_type',
'host_last_hard_state_change' => 'hs.last_hard_state_change',
'host_last_hard_state' => 'hs.last_hard_state',
'host_last_time_up' => 'hs.last_time_up',
'host_last_time_down' => 'hs.last_time_down',
'host_last_time_unreachable' => 'hs.last_time_unreachable',