From a8109e5660fd3afe49a666876ac5617712626fc1 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Mon, 21 Dec 2020 14:03:53 +0100 Subject: [PATCH] add socomec (fix #2287) --- .../ups/socomec/netvision/snmp/mode/alarms.pm | 84 ++++++++ .../socomec/netvision/snmp/mode/battery.pm | 183 +++++++++++++++++ .../socomec/netvision/snmp/mode/inputlines.pm | 149 ++++++++++++++ .../netvision/snmp/mode/outputlines.pm | 187 ++++++++++++++++++ .../ups/socomec/netvision/snmp/plugin.pm | 51 +++++ 5 files changed, 654 insertions(+) create mode 100644 centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/alarms.pm create mode 100644 centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/battery.pm create mode 100644 centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm create mode 100644 centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm create mode 100644 centreon-plugins/hardware/ups/socomec/netvision/snmp/plugin.pm diff --git a/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/alarms.pm b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/alarms.pm new file mode 100644 index 000000000..08ce94a5c --- /dev/null +++ b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/alarms.pm @@ -0,0 +1,84 @@ +# +# Copyright 2020 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::socomec::netvision::snmp::mode::alarms; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0 } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'alarms-current', nlabel => 'alarms.current.count', set => { + key_values => [ { name => 'current_alarms' } ], + output_template => 'current alarms: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ] +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + }); + + return $self; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $oid_upsAlarmsPresent = '.1.3.6.1.4.1.4555.1.1.7.1.6.1.0'; + my $snmp_result = $options{snmp}->get_leef(oids => [ $oid_upsAlarmsPresent ], nothing_quit => 1); + + $self->{global} = { current_alarms => $snmp_result->{$oid_upsAlarmsPresent} }; +} + +1; + +__END__ + +=head1 MODE + +Check current alarms. + +=over 8 + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'alarms-current'. + +=back + +=cut diff --git a/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/battery.pm b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/battery.pm new file mode 100644 index 000000000..41c761867 --- /dev/null +++ b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/battery.pm @@ -0,0 +1,183 @@ +# +# Copyright 2020 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::socomec::netvision::snmp::mode::battery; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf('battery status is %s', $self->{result_values}->{status}); +} + +sub custom_load_output { + my ($self, %options) = @_; + + return sprintf( + "charge remaining: %s%% (%s minutes remaining)", + $self->{result_values}->{charge_remain}, + $self->{result_values}->{minute_remain} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, message_separator => ' - ', skipped_code => { -10 => 1 } }, + ]; + + $self->{maps_counters}->{global} = [ + { + label => 'status', + type => 2, + unknown_default => '%{status} =~ /unknown/i', + warning_default => '%{status} =~ /low/i', + critical_default => '%{status} =~ /depleted|failure/i', + set => { + key_values => [ { name => 'status' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { label => 'charge-remaining', nlabel => 'battery.charge.remaining.percent', set => { + key_values => [ { name => 'charge_remain' }, { name => 'minute_remain' } ], + closure_custom_output => $self->can('custom_load_output'), + perfdatas => [ + { template => '%s', min => 0, max => 100, unit => '%' } + ] + } + }, + { label => 'charge-remaining-minutes', nlabel => 'battery.charge.remaining.minutes', display_ok => 0, set => { + key_values => [ { name => 'minute_remain' } ], + output_template => 'minutes remaining: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + }, + { label => 'current', nlabel => 'battery.current.ampere', display_ok => 0, set => { + key_values => [ { name => 'current', no_value => 0 } ], + output_template => 'current: %s A', + perfdatas => [ + { template => '%s', min => 0, unit => 'A' } + ] + } + }, + { label => 'voltage', nlabel => 'battery.voltage.volt', display_ok => 0, set => { + key_values => [ { name => 'voltage', no_value => 0 } ], + output_template => 'voltage: %s V', + perfdatas => [ + { template => '%s', unit => 'V' } + ] + } + }, + { label => 'temperature', nlabel => 'battery.temperature.celsius', display_ok => 0, set => { + key_values => [ { name => 'temperature', no_value => 0 } ], + output_template => 'temperature: %s C', + perfdatas => [ + { template => '%s', unit => 'C' } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + }); + + return $self; +} + +my $map_status = { + 1 => 'unknown', 2 => 'normal', 3 => 'charging', 4 => 'test', + 5 => 'discharging', 6 => 'low', 7 => 'depleted', 8 => 'failure', + 9 => 'disconnected' +}; + +my $mapping = { + status => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.1', map => $map_status }, # upsBatteryStatus + minute_remain => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.3' }, # upsEstimatedMinutesRemaining + charge_remain => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.4' }, # upsEstimatedChargeRemaining + voltage => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.5' }, # upsBatteryVoltage (dV) + temperature => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.6' }, # upsBatteryTemperature (degrees Centigrade) + current => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.2.8' } # upsBatteryCurrent (dA) +}; + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_leef( + oids => [ map($_->{oid} . '.0', values(%$mapping)) ], + nothing_quit => 1 + ); + $self->{global} = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => 0); + $self->{global}->{current} = (defined($self->{global}->{current}) && $self->{global}->{current} =~ /\d/) ? $self->{global}->{current} * 0.1 : 0; + $self->{global}->{voltage} = (defined($self->{global}->{voltage}) && $self->{global}->{voltage} =~ /\d/) ? $self->{global}->{voltage} * 0.1 : 0; + $self->{global}->{temperature} = (defined($self->{global}->{temperature}) && $self->{global}->{temperature} =~ /\d/) ? $self->{global}->{temperature} * 0.1 : 0; + $self->{global}->{minute_remain} = (defined($self->{global}->{minute_remain}) && $self->{global}->{minute_remain} =~ /\d/) ? $self->{global}->{minute_remain} : 'unknown'; + $self->{global}->{charge_remain} = (defined($self->{global}->{charge_remain}) && $self->{global}->{charge_remain} =~ /\d/) ? $self->{global}->{charge_remain} : undef; +} + +1; + +__END__ + +=head1 MODE + +Check battery status and charge remaining. + +=over 8 + +=item B<--unknown-status> + +Set unknown threshold for status (Default: '%{status} =~ /unknown/i'). +Can used special variables like: %{status} + +=item B<--warning-status> + +Set warning threshold for status (Default: '%{status} =~ /low/i'). +Can used special variables like: %{status} + +=item B<--critical-status> + +Set critical threshold for status (Default: '%{status} =~ /depleted|failure/i'). +Can used special variables like: %{status} + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'charge-remaining' (%), 'charge-remaining-minutes', +'current' (A), 'voltage' (V), 'temperature' (C). + +=back + +=cut diff --git a/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm new file mode 100644 index 000000000..e2bb5106b --- /dev/null +++ b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/inputlines.pm @@ -0,0 +1,149 @@ +# +# Copyright 2020 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::socomec::netvision::snmp::mode::inputlines; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; + +sub prefix_iline_output { + my ($self, %options) = @_; + + return "Input line '" . $options{instance_value}->{display} . "' "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, skipped_code => { -10 => 1 } }, + { name => 'iline', type => 1, cb_prefix_output => 'prefix_iline_output', message_multiple => 'All input lines are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'frequence', nlabel => 'lines.input.frequence.hertz', set => { + key_values => [ { name => 'frequency', no_value => 0 } ], + output_template => 'frequence: %.2f Hz', + perfdatas => [ + { template => '%.2f', unit => 'Hz' } + ] + } + } + ]; + + $self->{maps_counters}->{iline} = [ + { label => 'current', nlabel => 'line.input.current.ampere', set => { + key_values => [ { name => 'current', no_value => 0 } ], + output_template => 'current: %.2f A', + perfdatas => [ + { template => '%.2f', min => 0, unit => 'A', label_extra_instance => 1 } + ] + } + }, + { label => 'voltage', nlabel => 'line.input.voltage.volt', set => { + key_values => [ { name => 'voltage', no_value => 0 } ], + output_template => 'voltage: %.2f V', + perfdatas => [ + { template => '%.2f', unit => 'V', label_extra_instance => 1 } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + }); + + return $self; +} + +my $mapping = { + voltage => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2' }, # upsInputVoltage (dV) + current => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3' } # upsInputCurrent (dA) +}; +my $mapping2 = { + frequency => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.3.2' } # upsInputFrequency (dHZ) +}; + +my $oid_upsInput = '.1.3.6.1.4.1.4555.1.1.7.1.3'; +my $oid_upsInputEntry = '.1.3.6.1.4.1.4555.1.1.7.1.3.3.1'; + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table( + oid => $oid_upsInput, + start => $mapping2->{frequency}->{oid}, + end => $mapping->{current}->{oid}, + nothing_quit => 1 + ); + + $self->{iline} = {}; + foreach my $oid (keys %$snmp_result) { + next if ($oid !~ /^$oid_upsInputEntry\.\d+\.(.*)$/); + my $instance = $1; + next if (defined($self->{iline}->{$instance})); + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + foreach (('current', 'voltage')) { + $result->{$_} = 0 if (defined($result->{$_}) && $result->{$_} eq ''); + $result->{$_} *= 0.1; + } + + $self->{iline}->{$instance} = { + display => $instance, + %$result + }; + } + + if (scalar(keys %{$self->{iline}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No input lines found."); + $self->{output}->option_exit(); + } + + $self->{global} = $options{snmp}->map_instance(mapping => $mapping2, results => $snmp_result, instance => 0); + $self->{global}->{frequency} = defined($self->{global}->{frequency}) ? ($self->{global}->{frequency} * 0.1) : 0; +} + +1; + +__END__ + +=head1 MODE + +Check Input lines metrics (frequence, voltage, current). + +=over 8 + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'frequence', 'voltage', 'current'. + +=back + +=cut diff --git a/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm new file mode 100644 index 000000000..1f9c33aab --- /dev/null +++ b/centreon-plugins/hardware/ups/socomec/netvision/snmp/mode/outputlines.pm @@ -0,0 +1,187 @@ +# +# Copyright 2020 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::socomec::netvision::snmp::mode::outputlines; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf("Output source status is '%s'", $self->{result_values}->{status}); +} + +sub prefix_oline_output { + my ($self, %options) = @_; + + return "Output line '" . $options{instance_value}->{display} . "' "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, skipped_code => { -10 => 1 } }, + { name => 'oline', type => 1, cb_prefix_output => 'prefix_oline_output', message_multiple => 'All output lines are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { + label => 'source-status', + type => 2, + unknown_default => '%{status} =~ /unknown/i', + set => { + key_values => [ { name => 'status' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; + + $self->{maps_counters}->{oline} = [ + { label => 'load', nlabel => 'line.output.load.percentage', set => { + key_values => [ { name => 'percent_load' } ], + output_template => 'load: %.2f %%', + perfdatas => [ + { template => '%.2f', min => 0, max => 100, unit => '%', label_extra_instance => 1 } + ] + } + }, + { label => 'current', nlabel => 'line.output.current.ampere', set => { + key_values => [ { name => 'current' } ], + output_template => 'current: %.2f A', + perfdatas => [ + { template => '%.2f', min => 0, unit => 'A', label_extra_instance => 1 } + ] + } + }, + { label => 'voltage', nlabel => 'line.output.voltage.volt', set => { + key_values => [ { name => 'voltage' } ], + output_template => 'voltage: %.2f V', + perfdatas => [ + { template => '%.2f', unit => 'V', label_extra_instance => 1 } + ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'ignore-zero-counters' => { name => 'ignore_zero_counters' } + }); + + return $self; +} + +my $map_status = { + 1 => 'unknown', 2 => 'onMaintenBypass', 3 => 'onInverter', + 4 => 'normalMode', 5 => 'ecoMode', 6 => 'onBypass', + 7 => 'standby', 8 => 'upsOff' +}; + +my $mapping = { + voltage => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.4.4.1.2' }, # upsOutputVoltage (Volt) + current => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.4.4.1.3' }, # upsOutputCurrent (dA) + percent_load => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.4.4.1.4' } # upsOutputPercentLoad +}; +my $mapping2 = { + status => { oid => '.1.3.6.1.4.1.4555.1.1.7.1.4.1', map => $map_status } # upsOutputSource +}; +my $oid_upsOutput = '.1.3.6.1.4.1.4555.1.1.7.1.4'; +my $oid_upsOutputEntry = '.1.3.6.1.4.1.4555.1.1.7.1.4.4.1'; + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table( + oid => $oid_upsOutput, + end => $mapping->{percent_load}->{oid}, + nothing_quit => 1 + ); + + $self->{oline} = {}; + foreach my $oid (keys %$snmp_result) { + next if ($oid !~ /^$oid_upsOutputEntry\.\d+\.(.*)$/); + my $instance = $1; + next if (defined($self->{oline}->{$instance})); + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + if (defined($self->{option_results}->{ignore_zero_counters})) { + foreach (keys %$result) { + delete $result->{$_} if ($result->{$_} == 0); + } + } + $result->{current} *= 0.1 if (defined($result->{current})); + $result->{voltage} *= 0.1 if (defined($result->{voltage})); + if (scalar(keys %$result) > 0) { + $self->{oline}->{$instance} = { display => $instance, %$result }; + } + } + + $self->{global} = $options{snmp}->map_instance(mapping => $mapping2, results => $snmp_result, instance => 0); +} + +1; + +__END__ + +=head1 MODE + +Check output lines. + +=over 8 + +=item B<--ignore-zero-counters> + +Ignore counters equals to 0. + +=item B<--unknown-source-status> + +Set unknown threshold for status (Default: '%{status} =~ /unknown/i'). +Can used special variables like: %{status} + +=item B<--warning-source-status> + +Set warning threshold for status. +Can used special variables like: %{status} + +=item B<--critical-source-status> + +Set critical threshold for status. +Can used special variables like: %{status} + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'load', 'voltage', 'current'. + +=back + +=cut diff --git a/centreon-plugins/hardware/ups/socomec/netvision/snmp/plugin.pm b/centreon-plugins/hardware/ups/socomec/netvision/snmp/plugin.pm new file mode 100644 index 000000000..b21fa41b0 --- /dev/null +++ b/centreon-plugins/hardware/ups/socomec/netvision/snmp/plugin.pm @@ -0,0 +1,51 @@ +# +# Copyright 2020 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::socomec::netvision::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} = { + 'alarms' => 'hardware::ups::socomec::netvision::snmp::mode::alarms', + 'battery' => 'hardware::ups::socomec::netvision::snmp::mode::battery', + 'input-lines' => 'hardware::ups::socomec::netvision::snmp::mode::inputlines', + 'output-lines' => 'hardware::ups::socomec::netvision::snmp::mode::outputlines' + }; + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check Socomec Net Vision UPS in SNMP. + +=cut