centreon-plugins/hardware/server/hp/proliant/snmp/mode/components/fcahostctl.pm

125 lines
4.2 KiB
Perl

#
# 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 hardware::server::hp::proliant::snmp::mode::components::fcahostctl;
use strict;
use warnings;
use centreon::plugins::misc;
my %map_fcahostctl_status = (
1 => 'other',
2 => 'ok',
3 => 'failed',
4 => 'shutdown',
5 => 'loopDegraded',
6 => 'loopFailed',
7 => 'notConnected',
);
my %map_fcahostctl_condition = (
1 => 'other',
2 => 'ok',
3 => 'degraded',
4 => 'failed',
);
my %model_map = (
1 => 'other',
2 => 'fchc-p',
3 => 'fchc-e',
4 => 'fchc64',
5 => 'sa-sam',
6 => 'fca-2101',
7 => 'sw64-33',
8 => 'fca-221x',
9 => 'dpfcmc',
10 => 'fca-2404',
11 => 'fca-2214',
12 => 'a7298a',
13 => 'fca-2214dc',
14 => 'a6826a',
15 => 'fcmcG3',
16 => 'fcmcG4',
17 => 'ab46xa',
18 => 'fc-generic',
19 => 'fca-1143',
20 => 'fca-1243',
21 => 'fca-2143',
22 => 'fca-2243',
23 => 'fca-1050',
24 => 'fca-lpe1105',
25 => 'fca-qmh2462',
26 => 'fca-1142sr',
27 => 'fca-1242sr',
28 => 'fca-2142sr',
29 => 'fca-2242sr',
30 => 'fcmc20pe',
31 => 'fca-81q',
32 => 'fca-82q',
33 => 'fca-qmh2562',
34 => 'fca-81e',
35 => 'fca-82e',
36 => 'fca-1205',
);
# In 'CPQFCA-MIB.mib'
my $mapping = {
cpqFcaHostCntlrSlot => { oid => '.1.3.6.1.4.1.232.16.2.7.1.1.2' },
cpqFcaHostCntlrModel => { oid => '.1.3.6.1.4.1.232.16.2.7.1.1.3', map => \%model_map },
cpqFcaHostCntlrStatus => { oid => '.1.3.6.1.4.1.232.16.2.7.1.1.4', map => \%map_fcahostctl_status },
cpqFcaHostCntlrCondition => { oid => '.1.3.6.1.4.1.232.16.2.7.1.1.5', map => \%map_fcahostctl_condition },
};
my $oid_cpqFcaHostCntlrEntry = '.1.3.6.1.4.1.232.16.2.7.1.1';
sub load {
my ($self) = @_;
push @{$self->{request}}, { oid => $oid_cpqFcaHostCntlrEntry, start => $mapping->{cpqFcaHostCntlrSlot}->{oid}, end => $mapping->{cpqFcaHostCntlrCondition}->{oid} };
}
sub check {
my ($self) = @_;
$self->{output}->output_add(long_msg => "Checking fca host controller");
$self->{components}->{fcahostctl} = {name => 'fca host controllers', total => 0, skip => 0};
return if ($self->check_filter(section => 'fcahostctl'));
foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{$oid_cpqFcaHostCntlrEntry}})) {
next if ($oid !~ /^$mapping->{cpqFcaHostCntlrCondition}->{oid}\.(.*)$/);
my $instance = $1;
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}->{$oid_cpqFcaHostCntlrEntry}, instance => $instance);
next if ($self->check_filter(section => 'fcahostctl', instance => $instance));
$self->{components}->{fcahostctl}->{total}++;
$self->{output}->output_add(long_msg => sprintf("fca host controller '%s' [slot: %s, model: %s, status: %s] condition is %s.",
$instance, $result->{cpqFcaHostCntlrSlot}, $result->{cpqFcaHostCntlrModel}, $result->{cpqFcaHostCntlrStatus},
$result->{cpqFcaHostCntlrCondition}));
my $exit = $self->get_severity(label => 'default', section => 'fcahostctl', value => $result->{cpqFcaHostCntlrCondition});
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
$self->{output}->output_add(severity => $exit,
short_msg => sprintf("fca host controller '%s' is %s",
$instance, $result->{cpqFcaHostCntlrCondition}));
}
}
}
1;