add notsodummy mode
This commit is contained in:
parent
128e81734f
commit
e8b9905c68
|
@ -0,0 +1,165 @@
|
|||
#
|
||||
# Copyright 2019 Centreon (http://www.centreon.com/)
|
||||
#
|
||||
# Centreon is a full-fledged industry-strength solution that meets
|
||||
# the needs in IT infrastructure and application monitoring for
|
||||
# service performance.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
package apps::centreon::local::mode::notsodummy;
|
||||
|
||||
use base qw(centreon::plugins::mode);
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use centreon::plugins::statefile;
|
||||
use Digest::MD5 qw(md5_hex);
|
||||
|
||||
my %errors_num = (0 => 'OK', 1 => 'WARNING', 2 => 'CRITICAL', 3 => 'UNKNOWN');
|
||||
|
||||
sub new {
|
||||
my ($class, %options) = @_;
|
||||
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
|
||||
bless $self, $class;
|
||||
|
||||
$self->{version} = '1.0';
|
||||
$options{options}->add_options(arguments => {
|
||||
"status-sequence:s" => { name => 'status_sequence' },
|
||||
"restart-sequence" => { name => 'restart_sequence' },
|
||||
"show-sequence" => { name => 'show_sequence' },
|
||||
"output:s" => { name => 'output' },
|
||||
});
|
||||
|
||||
$self->{cache} = centreon::plugins::statefile->new(%options);
|
||||
|
||||
return $self;
|
||||
}
|
||||
|
||||
sub check_options {
|
||||
my ($self, %options) = @_;
|
||||
$self->SUPER::init(%options);
|
||||
|
||||
if (!defined($self->{option_results}->{status_sequence}) || $self->{option_results}->{status_sequence} eq '') {
|
||||
$self->{output}->add_option_msg(short_msg => "Need to specify --status option.");
|
||||
$self->{output}->option_exit();
|
||||
}
|
||||
if (!defined($self->{option_results}->{output}) || $self->{option_results}->{output} eq '') {
|
||||
$self->{output}->add_option_msg(short_msg => "Need to specify --output option.");
|
||||
$self->{output}->option_exit();
|
||||
}
|
||||
|
||||
foreach my $status (split(',', $self->{option_results}->{status_sequence})) {
|
||||
if ($status !~ /^[0-3]$/ && $status !~ /ok|warning|critical|unknown/i) {
|
||||
$self->{output}->add_option_msg(short_msg => "Status should be in '0,1,2,3' or 'ok,warning,critical,unknown' (case isensitive).");
|
||||
$self->{output}->option_exit();
|
||||
}
|
||||
push @{$self->{status_sequence}}, $status;
|
||||
}
|
||||
|
||||
$self->{cache}->check_options(option_results => $self->{option_results});
|
||||
}
|
||||
|
||||
sub get_next_status {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
my $index;
|
||||
my $has_cache_file = $options{statefile}->read(statefile => 'centreon_notsodummy_' .
|
||||
md5_hex(@{$self->{status_sequence}}) . '_' . md5_hex($self->{option_results}->{output}));
|
||||
|
||||
if ($has_cache_file == 0 || $self->{option_results}->{restart_sequence}) {
|
||||
$index = 0;
|
||||
my $datas = { last_timestamp => time(), status_sequence => $self->{status_sequence}, status_sequence_index => $index };
|
||||
$options{statefile}->write(data => $datas);
|
||||
} else {
|
||||
$index = $options{statefile}->get(name => 'status_sequence_index');
|
||||
$index = ($index < scalar(@{$self->{status_sequence}} - 1)) ? $index + 1 : 0;
|
||||
my $datas = { last_timestamp => time(), status_sequence => $self->{status_sequence}, status_sequence_index => $index };
|
||||
$options{statefile}->write(data => $datas);
|
||||
}
|
||||
|
||||
return $self->{status_sequence}[$index], $index;
|
||||
}
|
||||
|
||||
sub get_sequence_output {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
my @sequence_output;
|
||||
|
||||
my $i = 0;
|
||||
foreach my $status (split(',', $self->{option_results}->{status_sequence})) {
|
||||
$status = $errors_num{$status} if $status =~ /^[0-3]$/;
|
||||
|
||||
push @sequence_output, uc($status) if ($i == $options{index});
|
||||
push @sequence_output, lc($status) if ($i != $options{index});
|
||||
$i++
|
||||
}
|
||||
|
||||
return join(',', @sequence_output);
|
||||
}
|
||||
|
||||
sub run {
|
||||
my ($self, %options) = @_;
|
||||
|
||||
my ($status, $index) = $self->get_next_status(statefile => $self->{cache});
|
||||
$status = $errors_num{$status} if $status =~ /^[0-3]$/;
|
||||
|
||||
my $output = $self->{option_results}->{output};
|
||||
$output .= ' [' . $self->get_sequence_output(index => $index) . ']' if ($self->{option_results}->{show_sequence});
|
||||
|
||||
$self->{output}->output_add(
|
||||
severity => $status,
|
||||
short_msg => $output
|
||||
);
|
||||
$self->{output}->perfdata_add(
|
||||
nlabel => 'sequence.index.position', value => ++$index,
|
||||
min => 1, max => scalar(@{$self->{status_sequence}})
|
||||
);
|
||||
$self->{output}->display();
|
||||
$self->{output}->exit();
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
=head1 MODE
|
||||
|
||||
Do a not-so-dummy check.
|
||||
|
||||
=over 8
|
||||
|
||||
=item B<--status-sequence>
|
||||
|
||||
Comma separated sequence of statuses
|
||||
from which the mode should pick is
|
||||
return code from.
|
||||
(Example: --status-sequence='ok,critical,ok,ok')
|
||||
(Should be numeric value between 0 and 3, or string in ok, warning, critical, unknown).
|
||||
|
||||
=item B<--restart-sequence>
|
||||
|
||||
Restart the sequence from the beginning (ie. reset the sequence).
|
||||
|
||||
=item B<--show-sequence>
|
||||
|
||||
Show the sequence is the output.
|
||||
|
||||
=item B<--output>
|
||||
|
||||
Output to be returned.
|
||||
|
||||
=back
|
||||
|
||||
=cut
|
|
@ -37,6 +37,7 @@ sub new {
|
|||
'downtime-trap' => 'apps::centreon::local::mode::downtimetrap',
|
||||
'dummy' => 'apps::centreon::local::mode::dummy',
|
||||
'metaservice' => 'apps::centreon::local::mode::metaservice',
|
||||
'not-so-dummy' => 'apps::centreon::local::mode::notsodummy',
|
||||
'retention-broker' => 'apps::centreon::local::mode::retentionbroker',
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue