diff --git a/centreon-plugins/apps/centreon/local/mode/dummy.pm b/centreon-plugins/apps/centreon/local/mode/dummy.pm new file mode 100644 index 000000000..45ff1cf49 --- /dev/null +++ b/centreon-plugins/apps/centreon/local/mode/dummy.pm @@ -0,0 +1,91 @@ +# +# Copyright 2018 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::dummy; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; + +my %errors_num = (0 => 'OK', 1 => 'WARNING', 2 => 'CRITICAL', 3 => 'UNKNOWN'); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{version} = '1.0'; + $options{options}->add_options(arguments => + { + "status:s" => { name => 'status' }, + "output:s" => { name => 'output' }, + }); + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); + + if (!defined($self->{option_results}->{status}) || ($self->{option_results}->{status} !~ /^[0-3]$/ && + $self->{option_results}->{status} !~ /ok|warning|critical|unknown/i)) { + $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(); + } +} + +sub run { + my ($self, %options) = @_; + + my $status = $self->{option_results}->{status}; + $status = $errors_num{$status} if $status =~ /^[0-3]$/; + + $self->{output}->output_add(severity => $status, + short_msg => $self->{option_results}->{output}); + $self->{output}->display(force_ignore_perfdata => 1); + $self->{output}->exit(); +} + +1; + +__END__ + +=head1 MODE + +Do a dummy check. + +=over 8 + +=item B<--status> + +Status to be returned (Should be numeric value between 0 and 3, or string in ok, warning, critical, unknown). + +=item B<--output> + +Output to be returned. + +=back + +=cut diff --git a/centreon-plugins/apps/centreon/local/plugin.pm b/centreon-plugins/apps/centreon/local/plugin.pm index 3392b58f7..fb7dfd7b9 100644 --- a/centreon-plugins/apps/centreon/local/plugin.pm +++ b/centreon-plugins/apps/centreon/local/plugin.pm @@ -34,6 +34,7 @@ sub new { 'broker-stats' => 'apps::centreon::local::mode::brokerstats', 'centreon-plugins-version' => 'apps::centreon::local::mode::centreonpluginsversion', 'downtime-trap' => 'apps::centreon::local::mode::downtimetrap', + 'dummy' => 'apps::centreon::local::mode::dummy', 'metaservice' => 'apps::centreon::local::mode::metaservice', 'retention-broker' => 'apps::centreon::local::mode::retentionbroker', );