+ Add some components for bladecenter ibm snmp
This commit is contained in:
parent
512aea93cd
commit
f5b22f66fa
|
@ -0,0 +1,116 @@
|
|||
################################################################################
|
||||
# Copyright 2005-2013 MERETHIS
|
||||
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||
# GPL Licence 2.0.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation ; either version 2 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||
#
|
||||
# Linking this program statically or dynamically with other modules is making a
|
||||
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||
# General Public License cover the whole combination.
|
||||
#
|
||||
# As a special exception, the copyright holders of this program give MERETHIS
|
||||
# permission to link this program with independent modules to produce an executable,
|
||||
# regardless of the license terms of these independent modules, and to copy and
|
||||
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||
# of the license of that module. An independent module is a module which is not
|
||||
# derived from this program. If you modify this program, you may extend this
|
||||
# exception to your version of the program, but you are not obliged to do so. If you
|
||||
# do not wish to do so, delete this exception statement from your version.
|
||||
#
|
||||
# For more information : contact@centreon.com
|
||||
# Authors : Quentin Garnier <qgarnier@merethis.com>
|
||||
#
|
||||
####################################################################################
|
||||
|
||||
package hardware::server::ibm::bladecenter::snmp::mode::components::chassisstatus;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
# In MIB 'mmblade.mib'
|
||||
my $oid_mmBistAndChassisStatus = '.1.3.6.1.4.1.2.3.51.2.2.5.2';
|
||||
my $oid_bistLogicalNetworkLink = '.1.3.6.1.4.1.2.3.51.2.2.5.2.30.0';
|
||||
my $oids = {
|
||||
bistSdram => '.1.3.6.1.4.1.2.3.51.2.2.5.2.1.0',
|
||||
bistRs485Port1 => '.1.3.6.1.4.1.2.3.51.2.2.5.2.2.0',
|
||||
bistRs485Port2 => '.1.3.6.1.4.1.2.3.51.2.2.5.2.3.0',
|
||||
bistNvram => '.1.3.6.1.4.1.2.3.51.2.2.5.2.4.0',
|
||||
bistRtc => '.1.3.6.1.4.1.2.3.51.2.2.5.2.5.0',
|
||||
bistLocalI2CBus => '.1.3.6.1.4.1.2.3.51.2.2.5.2.7.0',
|
||||
bistPrimaryMainAppFlashImage => '.1.3.6.1.4.1.2.3.51.2.2.5.2.8.0',
|
||||
bistSecondaryMainAppFlashImage => '.1.3.6.1.4.1.2.3.51.2.2.5.2.9.0',
|
||||
bistBootRomFlashImage => '.1.3.6.1.4.1.2.3.51.2.2.5.2.10.0',
|
||||
bistEthernetPort1 => '.1.3.6.1.4.1.2.3.51.2.2.5.2.11.0',
|
||||
bistEthernetPort2 => '.1.3.6.1.4.1.2.3.51.2.2.5.2.12.0',
|
||||
bistInternalPCIBus => '.1.3.6.1.4.1.2.3.51.2.2.5.2.13.0',
|
||||
bistExternalI2CDevices => '.1.3.6.1.4.1.2.3.51.2.2.5.2.14.0',
|
||||
bistUSBController => '.1.3.6.1.4.1.2.3.51.2.2.5.2.15.0',
|
||||
bistVideoCompressorBoard => '.1.3.6.1.4.1.2.3.51.2.2.5.2.16.0',
|
||||
bistRemoteVideo => '.1.3.6.1.4.1.2.3.51.2.2.5.2.17.0',
|
||||
bistPrimaryBus => '.1.3.6.1.4.1.2.3.51.2.2.5.2.18.0',
|
||||
bistInternalEthernetSwitch => '.1.3.6.1.4.1.2.3.51.2.2.5.2.19.0',
|
||||
bistVideoCapture => '.1.3.6.1.4.1.2.3.51.2.2.5.2.20.0',
|
||||
bistUSBKeyboardMouseEmulation => '.1.3.6.1.4.1.2.3.51.2.2.5.2.21.0',
|
||||
bistUSBMassStorageEmulation => '.1.3.6.1.4.1.2.3.51.2.2.5.2.22.0',
|
||||
bistUSBKeyboardMouseFirmware => '.1.3.6.1.4.1.2.3.51.2.2.5.2.23.0',
|
||||
bistUSBMassStorageFirmware => '.1.3.6.1.4.1.2.3.51.2.2.5.2.24.0',
|
||||
bistPrimaryCore => '.1.3.6.1.4.1.2.3.51.2.2.5.2.25.0',
|
||||
bistSecondaryCore => '.1.3.6.1.4.1.2.3.51.2.2.5.2.26.0',
|
||||
bistInternalIOExpander => '.1.3.6.1.4.1.2.3.51.2.2.5.2.27.0',
|
||||
bistRemoteControlFirmware => '.1.3.6.1.4.1.2.3.51.2.2.5.2.28.0',
|
||||
bistPhysicalNetworkLink => '.1.3.6.1.4.1.2.3.51.2.2.5.2.29.0',
|
||||
bistLogicalNetworkLink => '.1.3.6.1.4.1.2.3.51.2.2.5.2.30.0',
|
||||
}
|
||||
|
||||
my %map_test_state = (
|
||||
0 => 'testSucceeded',
|
||||
1 => 'testFailed',
|
||||
);
|
||||
|
||||
sub load {
|
||||
my (%options) = @_;
|
||||
|
||||
push @{$options{request}}, { oid => $oid_mmBistAndChassisStatus, end => $oid_bistLogicalNetworkLink };
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->{output}->output_add(long_msg => "Checking chassis status");
|
||||
$self->{components}->{chassisstatus} = {name => 'chassis-status', total => 0, skip => 0};
|
||||
return if ($self->check_exclude(section => 'chassisstatus'));
|
||||
|
||||
foreach my $name (sort keys %{$oids}) {
|
||||
if (!defined($self->{results}->{$oid_mmBistAndChassisStatus}->{$oids->{$name}})) {
|
||||
$self->{output}->output_add(long_msg => sprintf("skip '%s': no value",
|
||||
$name));
|
||||
next;
|
||||
}
|
||||
|
||||
my $value = $map_test_state{$oids->{$name}};
|
||||
next if ($self->check_exclude(section => 'chassisstatus', instance => $name));
|
||||
$self->{components}->{chassisstatus}->{total}++;
|
||||
|
||||
$self->{output}->output_add(long_msg => sprintf("Chassis status '%s' state is %s",
|
||||
$name, $value));
|
||||
my $exit = $self->get_severity(section => 'systemhealth', value => $value);
|
||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||
$self->{output}->output_add(severity => $exit,
|
||||
short_msg => sprintf("Chassis status '%s' state is %s",
|
||||
$name, $value));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
|
@ -0,0 +1,77 @@
|
|||
################################################################################
|
||||
# Copyright 2005-2013 MERETHIS
|
||||
# Centreon is developped by : Julien Mathis and Romain Le Merlus under
|
||||
# GPL Licence 2.0.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation ; either version 2 of the License.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# this program; if not, see <http://www.gnu.org/licenses>.
|
||||
#
|
||||
# Linking this program statically or dynamically with other modules is making a
|
||||
# combined work based on this program. Thus, the terms and conditions of the GNU
|
||||
# General Public License cover the whole combination.
|
||||
#
|
||||
# As a special exception, the copyright holders of this program give MERETHIS
|
||||
# permission to link this program with independent modules to produce an executable,
|
||||
# regardless of the license terms of these independent modules, and to copy and
|
||||
# distribute the resulting executable under terms of MERETHIS choice, provided that
|
||||
# MERETHIS also meet, for each linked independent module, the terms and conditions
|
||||
# of the license of that module. An independent module is a module which is not
|
||||
# derived from this program. If you modify this program, you may extend this
|
||||
# exception to your version of the program, but you are not obliged to do so. If you
|
||||
# do not wish to do so, delete this exception statement from your version.
|
||||
#
|
||||
# For more information : contact@centreon.com
|
||||
# Authors : Quentin Garnier <qgarnier@merethis.com>
|
||||
#
|
||||
####################################################################################
|
||||
|
||||
package hardware::server::ibm::bladecenter::snmp::mode::components::systemhealth;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
# In MIB 'mmblade.mib'
|
||||
my $oid_systemHealthStat = '.1.3.6.1.4.1.2.3.51.2.2.7.1';
|
||||
|
||||
my %map_systemhealth_state = (
|
||||
0 => 'critical',
|
||||
2 => 'nonCritical',
|
||||
4 => 'systemLevel',
|
||||
255 => 'normal',
|
||||
);
|
||||
|
||||
sub load {
|
||||
my (%options) = @_;
|
||||
|
||||
push @{$options{request}}, { oid => $oid_systemHealthStat };
|
||||
}
|
||||
|
||||
sub check {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->{output}->output_add(long_msg => "Checking system health");
|
||||
$self->{components}->{systemhealth} = {name => 'system-health', total => 0, skip => 0};
|
||||
return if ($self->check_exclude(section => 'systemhealth'));
|
||||
|
||||
my $value = $map_systemhealth_state{$self->{results}->{$oid_systemHealthStat}->{$oid_systemHealthStat . '.0'}};
|
||||
$self->{components}->{powermodule}->{total}++;
|
||||
|
||||
$self->{output}->output_add(long_msg => sprintf("System health state is %s",
|
||||
$value));
|
||||
my $exit = $self->get_severity(section => 'systemhealth', value => $value);
|
||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||
$self->{output}->output_add(severity => $exit,
|
||||
short_msg => sprintf("System health state is %s",
|
||||
$value));
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
|
@ -41,6 +41,16 @@ use strict;
|
|||
use warnings;
|
||||
|
||||
my $thresholds = {
|
||||
chassisstatus => [
|
||||
['testSucceeded', 'OK'],
|
||||
['testFailed', 'CRITICAL'],
|
||||
],
|
||||
systemhealth => [
|
||||
['normal', 'OK'],
|
||||
['systemLevel', 'WARNING'],
|
||||
['nonCritical', 'WARNING'],
|
||||
['critical', 'CRITICAL'],
|
||||
],
|
||||
powermodule => [
|
||||
['unknown', 'UNKNOWN'],
|
||||
['good', 'OK'],
|
||||
|
@ -161,7 +171,7 @@ sub run {
|
|||
$self->{snmp} = $options{snmp};
|
||||
|
||||
my $snmp_request = [];
|
||||
my @components = ('ambient', 'powermodule', 'blade', 'blower');
|
||||
my @components = ('ambient', 'powermodule', 'blade', 'blower', 'systemhealth', 'chassisstatus');
|
||||
foreach (@components) {
|
||||
if (/$self->{option_results}->{component}/) {
|
||||
my $mod_name = "hardware::server::ibm::bladecenter::snmp::mode::components::$_";
|
||||
|
@ -294,14 +304,14 @@ __END__
|
|||
|
||||
=head1 MODE
|
||||
|
||||
Check Hardware (Ambient temperatures, Blowers, Power modules, Blades).
|
||||
Check Hardware (Ambient temperatures, Blowers, Power modules, Blades, System Health, Chassis status).
|
||||
|
||||
=over 8
|
||||
|
||||
=item B<--component>
|
||||
|
||||
Which component to check (Default: 'all').
|
||||
Can be: 'ambient', 'powermodule', 'blower', 'blade'.
|
||||
Can be: 'ambient', 'powermodule', 'blower', 'blade', 'systemhealth', 'chassisstatus'.
|
||||
|
||||
=item B<--exclude>
|
||||
|
||||
|
|
Loading…
Reference in New Issue