fixes refs #5643
This commit is contained in:
parent
6d683b677f
commit
c71014e067
|
@ -42,11 +42,6 @@ use warnings;
|
||||||
use Time::HiRes;
|
use Time::HiRes;
|
||||||
use Time::Local;
|
use Time::Local;
|
||||||
|
|
||||||
my %states = (
|
|
||||||
0 => 'failed',
|
|
||||||
1 => 'success',
|
|
||||||
);
|
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
my ($class, %options) = @_;
|
my ($class, %options) = @_;
|
||||||
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
|
|
@ -55,6 +55,8 @@ sub new {
|
||||||
{
|
{
|
||||||
"filter-job:s" => { name => 'filter_job', },
|
"filter-job:s" => { name => 'filter_job', },
|
||||||
"skip" => { name => 'skip', },
|
"skip" => { name => 'skip', },
|
||||||
|
"warning:s" => { name => 'warning', },
|
||||||
|
"critical:s" => { name => 'critical', },
|
||||||
});
|
});
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
|
@ -97,14 +99,16 @@ sub run {
|
||||||
$self->{output}->output_add(long_msg => sprintf("Job '%s' status %s [Date : %s] [Runtime : %ss]", $job_name, $states{$run_status}, $run_date, $run_time));
|
$self->{output}->output_add(long_msg => sprintf("Job '%s' status %s [Date : %s] [Runtime : %ss]", $job_name, $states{$run_status}, $run_date, $run_time));
|
||||||
if ($run_status == 0) {
|
if ($run_status == 0) {
|
||||||
$count_failed++;
|
$count_failed++;
|
||||||
$self->{output}->output_add(severity => 'Critical',
|
|
||||||
short_msg => sprintf("Job '%s' status %s", $job_name, $states{$run_status}));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
my $exit_code = $self->{perfdata}->threshold_check(value => $count_failed, threshold => [ { label => 'critical', 'exit_litteral' => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]);
|
||||||
if(!defined($self->{option_results}->{skip}) && $count == 0) {
|
if(!defined($self->{option_results}->{skip}) && $count == 0) {
|
||||||
$self->{output}->output_add(severity => 'Unknown',
|
$self->{output}->output_add(severity => 'Unknown',
|
||||||
short_msg => "No job found.");
|
short_msg => "No job found.");
|
||||||
|
} elsif (!$self->{output}->is_status(value => $exit_code, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(severity => $exit_code,
|
||||||
|
short_msg => sprintf("%d failed job(s)", $count_failed));
|
||||||
}
|
}
|
||||||
|
|
||||||
$self->{output}->perfdata_add(label => 'failed_jobs',
|
$self->{output}->perfdata_add(label => 'failed_jobs',
|
||||||
|
@ -134,6 +138,14 @@ Filter job.
|
||||||
|
|
||||||
Skip error if no job found.
|
Skip error if no job found.
|
||||||
|
|
||||||
|
=item B<--warning>
|
||||||
|
|
||||||
|
Threshold warning.
|
||||||
|
|
||||||
|
=item B<--critical>
|
||||||
|
|
||||||
|
Threshold critical.
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
Loading…
Reference in New Issue