From 7e4abff78de825887836d17e42c11fdd5884934a Mon Sep 17 00:00:00 2001 From: qgarnier Date: Mon, 11 Dec 2017 10:29:07 +0100 Subject: [PATCH] Fix #738 --- .../hardware/ups/alpha/snmp/mode/alarms.pm | 139 +++++++++++ .../ups/alpha/snmp/mode/batterystatus.pm | 227 ++++++++++++++++++ .../hardware/ups/alpha/snmp/plugin.pm | 47 ++++ 3 files changed, 413 insertions(+) create mode 100644 centreon-plugins/hardware/ups/alpha/snmp/mode/alarms.pm create mode 100644 centreon-plugins/hardware/ups/alpha/snmp/mode/batterystatus.pm create mode 100644 centreon-plugins/hardware/ups/alpha/snmp/plugin.pm diff --git a/centreon-plugins/hardware/ups/alpha/snmp/mode/alarms.pm b/centreon-plugins/hardware/ups/alpha/snmp/mode/alarms.pm new file mode 100644 index 000000000..2c2b3a611 --- /dev/null +++ b/centreon-plugins/hardware/ups/alpha/snmp/mode/alarms.pm @@ -0,0 +1,139 @@ +# +# Copyright 2017 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 hardware::ups::alpha::snmp::mode::alarms; + +use base qw(centreon::plugins::templates::hardware); + +use strict; +use warnings; + +sub set_system { + my ($self, %options) = @_; + + $self->{regexp_threshold_overload_check_section_option} = '^(alarm)$'; + + $self->{cb_hook2} = 'snmp_execute'; + + $self->{thresholds} = { + alarm => [ + ['on', 'CRITICAL'], + ['off', 'OK'], + ], + }; + + $self->{components_path} = 'hardware::ups::alpha::snmp::mode::components'; + $self->{components_module} = ['alarm']; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, no_absent => 1, no_performance => 1, no_load_components => 1); + bless $self, $class; + + $self->{version} = '1.0'; + $options{options}->add_options(arguments => + { + }); + + return $self; +} + +sub snmp_execute { + my ($self, %options) = @_; + + $self->{snmp} = $options{snmp}; + $self->{results} = $self->{snmp}->get_multiple_table(oids => $self->{request}); +} + +1; + +=head1 MODE + +Check alarms. + +=over 8 + +=item B<--filter> + +Exclude some parts (comma seperated list) +Can also exclude specific instance: --filter="alarm,FAN Alarm" + +=item B<--no-component> + +Return an error if no compenents are checked. +If total (with skipped) is 0. (Default: 'critical' returns). + +=item B<--threshold-overload> + +Set to overload default threshold values (syntax: section,[instance,]status,regexp) +It used before default thresholds (order stays). +Example: --threshold-overload='alarm,FAN Alarm,OK,on' + +=back + +=cut + +package hardware::ups::alpha::snmp::mode::components::alarm; + +use strict; +use warnings; + +my %map_status = (0 => 'off', 1 => 'on'); + +my $mapping = { + upsAlarmDescr => { oid => '.1.3.6.1.4.1.7309.6.1.5.2.1.2' }, + upsAlarmStatus => { oid => '.1.3.6.1.4.1.7309.6.1.5.2.1.3', map => \%map_status }, +}; +my $oid_upsAlarmEntry = '.1.3.6.1.4.1.7309.6.1.5.2.1'; + +sub load { + my ($self) = @_; + + push @{$self->{request}}, { oid => $oid_upsAlarmEntry }; +} + +sub check { + my ($self) = @_; + + $self->{output}->output_add(long_msg => "Checking alarms"); + $self->{components}->{alarm} = {name => 'alarms', total => 0, skip => 0}; + return if ($self->check_filter(section => 'alarm')); + + my ($exit, $warn, $crit, $checked); + foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{$oid_upsAlarmEntry}})) { + next if ($oid !~ /^$mapping->{upsAlarmStatus}->{oid}\.(.*)$/); + my $instance = $1; + my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}->{$oid_upsAlarmEntry}, instance => $instance); + + next if ($self->check_filter(section => 'alarm', instance => $instance)); + + $self->{components}->{alarm}->{total}++; + $self->{output}->output_add(long_msg => sprintf("alarm '%s' status is '%s' [instance = %s]", + $result->{upsAlarmDescr}, $result->{upsAlarmStatus}, $result->{upsAlarmDescr})); + $exit = $self->get_severity(section => 'alarm', value => $result->{upsAlarmStatus}); + if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { + $self->{output}->output_add(severity => $exit, + short_msg => sprintf("Alarm '%s' status is '%s'", $result->{upsAlarmDescr}, $result->{upsAlarmStatus})); + } + } +} + +1; diff --git a/centreon-plugins/hardware/ups/alpha/snmp/mode/batterystatus.pm b/centreon-plugins/hardware/ups/alpha/snmp/mode/batterystatus.pm new file mode 100644 index 000000000..f9bca7635 --- /dev/null +++ b/centreon-plugins/hardware/ups/alpha/snmp/mode/batterystatus.pm @@ -0,0 +1,227 @@ +# +# Copyright 2017 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 hardware::ups::alpha::snmp::mode::batterystatus; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; + +my $instance_mode; + +sub custom_threshold_output { + my ($self, %options) = @_; + my $status = 'ok'; + my $message; + + eval { + local $SIG{__WARN__} = sub { $message = $_[0]; }; + local $SIG{__DIE__} = sub { $message = $_[0]; }; + + if (defined($instance_mode->{option_results}->{critical_status}) && $instance_mode->{option_results}->{critical_status} ne '' && + eval "$instance_mode->{option_results}->{critical_status}") { + $status = 'critical'; + } elsif (defined($instance_mode->{option_results}->{warning_status}) && $instance_mode->{option_results}->{warning_status} ne '' && + eval "$instance_mode->{option_results}->{warning_status}") { + $status = 'warning'; + } elsif (defined($instance_mode->{option_results}->{unknown_status}) && $instance_mode->{option_results}->{unknown_status} ne '' && + eval "$instance_mode->{option_results}->{unknown_status}") { + $status = 'unknown'; + } + }; + if (defined($message)) { + $self->{output}->output_add(long_msg => 'filter status issue: ' . $message); + } + + return $status; +} + +sub custom_status_output { + my ($self, %options) = @_; + + my $msg = sprintf("Battery status is '%s'", $self->{result_values}->{status}); + return $msg; +} + +sub custom_status_calc { + my ($self, %options) = @_; + + $self->{result_values}->{status} = $options{new_datas}->{$self->{instance} . '_upsBatteryStatus'}; + return 0; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0 }, + ]; + + $self->{maps_counters}->{global} = [ + { label => 'status', threshold => 0, set => { + key_values => [ { name => 'upsBatteryStatus' } ], + closure_custom_calc => $self->can('custom_status_calc'), + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => $self->can('custom_threshold_output'), + } + }, + { label => 'load', set => { + key_values => [ { name => 'upsBatteryCapacity' } ], + output_template => 'Remaining capacity : %s %%', + perfdatas => [ + { label => 'load', value => 'upsBatteryCapacity_absolute', template => '%s', + min => 0, max => 100, unit => '%' }, + ], + } + }, + { label => 'current', set => { + key_values => [ { name => 'upsBatteryChargingCurrent' } ], + output_template => 'Current : %s A', + perfdatas => [ + { label => 'current', value => 'upsBatteryChargingCurrent_absolute', template => '%s', + min => 0, unit => 'A' }, + ], + } + }, + { label => 'voltage', set => { + key_values => [ { name => 'upsBatteryVoltage' } ], + output_template => 'Voltage : %s V', + perfdatas => [ + { label => 'voltage', value => 'upsBatteryVoltage_absolute', template => '%s', + unit => 'V' }, + ], + } + }, + { label => 'temperature', set => { + key_values => [ { name => 'upsBatteryTemperature' } ], + output_template => 'Temperature : %s C', + perfdatas => [ + { label => 'temperature', value => 'upsBatteryTemperature_absolute', template => '%s', + unit => 'C'}, + ], + } + }, + ]; +} + +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 => + { + "unknown-status:s" => { name => 'unknown_status', default => '%{status} =~ /unknown/i' }, + "warning-status:s" => { name => 'warning_status', default => '%{status} =~ /batteryLow/i' }, + "critical-status:s" => { name => 'critical_status', default => '%{status} =~ /batteryDepleted/i' }, + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + $instance_mode = $self; + $self->change_macros(); +} + +sub change_macros { + my ($self, %options) = @_; + + foreach (('warning_status', 'critical_status', 'unknown_status')) { + if (defined($self->{option_results}->{$_})) { + $self->{option_results}->{$_} =~ s/%\{(.*?)\}/\$self->{result_values}->{$1}/g; + } + } +} + +my %map_battery_status = ( + 1 => 'unknown', 2 => 'batteryNormal', 3 => 'batteryLow', 4 => 'batteryDepleted', +); + +my $mapping = { + upsBatteryStatus => { oid => '.1.3.6.1.4.1.7309.6.1.2.1', map => \%map_battery_status }, + upsBatteryVoltage => { oid => '.1.3.6.1.4.1.7309.6.1.2.3' }, + upsBatteryChargingCurrent => { oid => '.1.3.6.1.4.1.7309.6.1.2.4' }, + upsBatteryCapacity => { oid => '.1.3.6.1.4.1.7309.6.1.2.5' }, + upsBatteryTemperature => { oid => '.1.3.6.1.4.1.7309.6.1.2.6' }, +}; +my $oid_upsBattery = '.1.3.6.1.4.1.7309.6.1.2'; + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table(oid => $oid_upsBattery, + nothing_quit => 1); + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => '0'); + $result->{upsBatteryVoltage} *= 0.1; + $result->{upsBatteryChargingCurrent} *= 0.1; + $self->{global} = { %$result }; +} + +1; + +__END__ + +=head1 MODE + +Check battery status. + +=over 8 + +=item B<--filter-counters> + +Only display some counters (regexp can be used). +Example: --filter-counters='^status|load$' + +=item B<--unknown-status> + +Set warning threshold for status (Default: '%{status} =~ /unknown/i'). +Can used special variables like: %{status} + +=item B<--warning-status> + +Set warning threshold for status (Default: '%{status} =~ /batteryLow/i'). +Can used special variables like: %{status} + +=item B<--critical-status> + +Set critical threshold for status (Default: '%{status} =~ /batteryDepleted/i'). +Can used special variables like: %{status} + +=item B<--warning-*> + +Threshold warning. +Can be: 'load', 'voltage', 'current', 'temperature'. + +=item B<--critical-*> + +Threshold critical. +Can be: 'load', 'voltage', 'current', 'temperature'. + +=back + +=cut diff --git a/centreon-plugins/hardware/ups/alpha/snmp/plugin.pm b/centreon-plugins/hardware/ups/alpha/snmp/plugin.pm new file mode 100644 index 000000000..e19ef0174 --- /dev/null +++ b/centreon-plugins/hardware/ups/alpha/snmp/plugin.pm @@ -0,0 +1,47 @@ +# +# 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 hardware::ups::alpha::snmp::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_snmp); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{version} = '0.1'; + %{$self->{modes}} = ( + 'battery-status' => 'hardware::ups::alpha::snmp::mode::batterystatus', + 'alarms' => 'hardware::ups::alpha::snmp::mode::alarms', + ); + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check UPS Alpha through SNMP. + +=cut