centreon-plugins/hardware/server/hp/bladechassis/snmp/mode/components/blade.pm

109 lines
4.3 KiB
Perl
Raw Normal View History

2014-01-29 17:58:57 +01:00
#
2020-01-06 15:19:23 +01:00
# Copyright 2020 Centreon (http://www.centreon.com/)
2015-07-21 11:51:02 +02:00
#
# 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.
#
2014-01-29 17:58:57 +01:00
package hardware::server::hp::bladechassis::snmp::mode::components::blade;
2014-01-29 17:58:57 +01:00
2014-02-02 23:03:58 +01:00
use strict;
use warnings;
2014-11-04 10:52:33 +01:00
my %map_conditions = (
1 => 'other',
2 => 'ok',
3 => 'degraded',
4 => 'failed',
2014-01-29 17:58:57 +01:00
);
my %present_map = (
1 => 'other',
2 => 'absent',
3 => 'present',
4 => 'Weird!!!', # for blades it can return 4, which is NOT spesified in MIB
);
2019-07-03 13:44:43 +02:00
my $mapping = {
blade_name => { oid => '.1.3.6.1.4.1.232.22.2.4.1.1.1.4' }, # cpqRackServerBladeName
blade_part => { oid => '.1.3.6.1.4.1.232.22.2.4.1.1.1.6' }, # cpqRackServerBladePartNumber
blade_status => { oid => '.1.3.6.1.4.1.232.22.2.3.1.3.1.11', map => \%map_conditions }, # cpqRackServerBladeStatus (v2)
blade_spare => { oid => '.1.3.6.1.4.1.232.22.2.4.1.1.1.21' }, # cpqRackServerBladeSparePartNumber
blade_productid => { oid => '.1.3.6.1.4.1.232.22.2.4.1.1.1.17' }, # cpqRackServerBladeProductId
blade_diago => { oid => '.1.3.6.1.4.1.232.22.2.4.1.1.1.24' }, # cpqRackServerBladeFaultDiagnosticString (v2)
};
2014-01-29 17:58:57 +01:00
sub check {
my ($self) = @_;
2014-11-04 10:52:33 +01:00
$self->{components}->{blade} = {name => 'blades', total => 0, skip => 0};
2019-07-03 13:44:43 +02:00
$self->{output}->output_add(long_msg => "checking blades");
return if ($self->check_filter(section => 'blade'));
2014-01-29 17:58:57 +01:00
my $oid_cpqRackServerBladePresent = '.1.3.6.1.4.1.232.22.2.4.1.1.1.12';
2019-07-03 13:44:43 +02:00
my $snmp_result = $self->{snmp}->get_table(oid => $oid_cpqRackServerBladePresent);
return if (scalar(keys %$snmp_result) <= 0);
2014-01-29 17:58:57 +01:00
my @get_oids = ();
my @oids_end = ();
2019-07-03 13:44:43 +02:00
foreach my $key ($self->{snmp}->oid_lex_sort(keys %$snmp_result)) {
2014-01-29 17:58:57 +01:00
$key =~ /\.([0-9]+)$/;
my $oid_end = $1;
2019-07-03 13:44:43 +02:00
next if ($present_map{$snmp_result->{$key}} ne 'present' &&
2014-11-04 10:52:33 +01:00
$self->absent_problem(section => 'blade', instance => $oid_end));
2014-01-29 17:58:57 +01:00
push @oids_end, $oid_end;
2019-07-03 13:44:43 +02:00
push @get_oids, map($_->{oid} . '.' . $oid_end, values(%$mapping));
2014-01-29 17:58:57 +01:00
}
2019-07-03 13:44:43 +02:00
$snmp_result = $self->{snmp}->get_leef(oids => \@get_oids);
2014-01-29 17:58:57 +01:00
foreach (@oids_end) {
2019-07-03 13:44:43 +02:00
my $blade_index = $_;
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $blade_index);
next if ($self->check_filter(section => 'blade', instance => $blade_index));
2014-11-04 10:52:33 +01:00
$self->{components}->{blade}->{total}++;
2019-07-03 13:44:43 +02:00
if (!defined($result->{blade_status})) {
$self->{output}->output_add(long_msg => sprintf("skipping blade '%s' (%s, %s). Cant get status.",
$blade_index, $result->{blade_name}, $result->{blade_productid}));
2014-01-29 17:58:57 +01:00
next;
}
2014-11-04 10:52:33 +01:00
2019-07-03 13:44:43 +02:00
$self->{output}->output_add(
long_msg => sprintf("blade '%s' (%s, %s) status is %s [part: %s, spare: %s]%s.",
$blade_index, $result->{blade_name}, $result->{blade_productid},
$result->{blade_status},
$result->{blade_part}, $result->{blade_spare},
defined($result->{blade_diago}) ? " (Diagnostic '$result->{blade_diago}')" : ''
)
);
my $exit = $self->get_severity(label => 'default', section => 'blade', instance => $blade_index, value => $result->{blade_status});
2014-11-04 10:52:33 +01:00
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
2019-07-03 13:44:43 +02:00
$self->{output}->output_add(
severity => $exit,
short_msg => sprintf("Blade '%s' (%s, %s) status is %s",
$blade_index, $result->{blade_name}, $result->{blade_productid},
$result->{blade_status}
)
);
2014-01-29 17:58:57 +01:00
}
}
}
2019-07-03 13:44:43 +02:00
1;