diff --git a/Changes b/Changes index 8c40731913..ab013edb5d 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,10 @@ This file documents the revision history for the Monitoring Webinterface Thruk. -1.0.4 Thu May 19 16:29:42 CEST 2011 +1.0.4 Fri May 20 14:05:18 CEST 2011 - added missing license file - added business view for shinken backend - added better error message when log4perl config cannot be found + - fixed availability calculation with hard states 1.0.3 Thu May 12 20:05:16 CEST 2011 - fixed problem with some chars in excel export diff --git a/lib/Thruk.pm b/lib/Thruk.pm index 36f64a490c..426a0436de 100644 --- a/lib/Thruk.pm +++ b/lib/Thruk.pm @@ -50,7 +50,7 @@ our $VERSION = '1.0.4'; my $project_root = __PACKAGE__->config->{home}; my %config = ('name' => 'Thruk', 'version' => $VERSION, - 'released' => 'May 19, 2011', + 'released' => 'May 20, 2011', 'ENCODING' => 'utf-8', 'image_path' => $project_root.'/root/thruk/images', 'project_root' => $project_root, diff --git a/lib/Thruk/Backend/Provider/Livestatus.pm b/lib/Thruk/Backend/Provider/Livestatus.pm index 78e64ce8b6..c9e0873b45 100644 --- a/lib/Thruk/Backend/Provider/Livestatus.pm +++ b/lib/Thruk/Backend/Provider/Livestatus.pm @@ -492,7 +492,7 @@ returns logfile entries sub get_logs { my($self, %options) = @_; $options{'columns'} = [qw/ - class time type state host_name service_description plugin_output message contact_name command_name state_type current_host_groups current_service_groups + class time type state host_name service_description plugin_output message options contact_name command_name state_type current_host_groups current_service_groups /]; my @logs = reverse @{$self->_get_table('log', \%options)}; return \@logs;