2015-06-19 16:27:43 +02:00
|
|
|
#
|
2016-01-20 19:09:18 +01:00
|
|
|
# Copyright 2016 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.
|
|
|
|
#
|
2015-06-19 16:27:43 +02:00
|
|
|
|
|
|
|
package centreon::common::cisco::standard::snmp::mode::components::module;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
my %map_module_state = (
|
|
|
|
1 => 'unknown',
|
|
|
|
2 => 'ok',
|
|
|
|
3 => 'disabled',
|
|
|
|
4 => 'okButDiagFailed',
|
|
|
|
5 => 'boot',
|
|
|
|
6 => 'selfTest',
|
|
|
|
7 => 'failed',
|
|
|
|
8 => 'missing',
|
|
|
|
9 => 'mismatchWithParent',
|
|
|
|
10 => 'mismatchConfig',
|
|
|
|
11 => 'diagFailed',
|
|
|
|
12 => 'dormant',
|
|
|
|
13 => 'outOfServiceAdmin',
|
|
|
|
14 => 'outOfServiceEnvTemp',
|
|
|
|
15 => 'poweredDown',
|
|
|
|
16 => 'poweredUp',
|
|
|
|
17 => 'powerDenied',
|
|
|
|
18 => 'powerCycled',
|
|
|
|
19 => 'okButPowerOverWarning',
|
|
|
|
20 => 'okButPowerOverCritical',
|
|
|
|
21 => 'syncInProgress',
|
|
|
|
22 => 'upgrading',
|
|
|
|
23 => 'okButAuthFailed',
|
|
|
|
24 => 'mdr',
|
|
|
|
25 => 'fwMismatchFound',
|
|
|
|
26 => 'fwDownloadSuccess',
|
|
|
|
27 => 'fwDownloadFailure',
|
|
|
|
);
|
|
|
|
|
2015-12-18 14:55:06 +01:00
|
|
|
# In MIB 'CISCO-ENTITY-FRU-CONTROL-MIB'
|
2015-06-19 16:27:43 +02:00
|
|
|
my $mapping = {
|
|
|
|
cefcModuleOperStatus => { oid => '.1.3.6.1.4.1.9.9.117.1.2.1.1.2', map => \%map_module_state },
|
|
|
|
};
|
|
|
|
my $oid_cefcModuleOperStatus = '.1.3.6.1.4.1.9.9.117.1.2.1.1.2';
|
|
|
|
my $oid_entPhysicalDescr = '.1.3.6.1.2.1.47.1.1.1.1.2';
|
|
|
|
|
|
|
|
sub load {
|
|
|
|
my (%options) = @_;
|
|
|
|
|
|
|
|
push @{$options{request}}, { oid => $oid_cefcModuleOperStatus };
|
|
|
|
}
|
|
|
|
|
|
|
|
sub check {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
$self->{output}->output_add(long_msg => "Checking modules");
|
|
|
|
$self->{components}->{module} = {name => 'modules', total => 0, skip => 0};
|
|
|
|
return if ($self->check_exclude(section => 'module'));
|
|
|
|
|
|
|
|
foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{$oid_cefcModuleOperStatus}})) {
|
|
|
|
$oid =~ /\.([0-9]+)$/;
|
|
|
|
my $instance = $1;
|
|
|
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}->{$oid_cefcModuleOperStatus}, instance => $instance);
|
|
|
|
my $module_descr = $self->{results}->{$oid_entPhysicalDescr}->{$oid_entPhysicalDescr . '.' . $instance};
|
|
|
|
|
|
|
|
next if ($self->check_exclude(section => 'module', instance => $instance));
|
|
|
|
|
|
|
|
$self->{components}->{module}->{total}++;
|
|
|
|
$self->{output}->output_add(long_msg => sprintf("Module '%s' status is %s [instance: %s]",
|
|
|
|
$module_descr, $result->{cefcModuleOperStatus}, $instance));
|
|
|
|
my $exit = $self->get_severity(section => 'module', value => $result->{cefcModuleOperStatus});
|
|
|
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
|
|
$self->{output}->output_add(severity => $exit,
|
2016-02-10 10:58:48 +01:00
|
|
|
short_msg => sprintf("Module '%s/%s' status is %s", $module_descr,
|
|
|
|
$instance, $result->{cefcModuleOperStatus}));
|
2015-06-19 16:27:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|