Add logical drive component #5151

This commit is contained in:
Kevin Duret 2014-02-18 15:34:33 +00:00
parent 54cdd532a4
commit 839095d662
2 changed files with 140 additions and 0 deletions

View File

@ -0,0 +1,136 @@
################################################################################
# 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::dell::openmanage::mode::components::logicaldrive;
use strict;
use warnings;
my %state = (
0 => 'unknown',
1 => 'ready',
2 => 'failed',
3 => 'online',
4 => 'offline',
6 => 'degraded',
15 => 'resynching',
24 => 'rebuild',
26 => 'formatting',
35 => 'initializing',
);
my %layout = (
1 => 'Concatened',
2 => 'RAID-0',
3 => 'RAID-1',
4 => 'RAID-2',
5 => 'RAID-3',
6 => 'RAID-4',
7 => 'RAID-5',
8 => 'RAID-6',
9 => 'RAID-7',
10 => 'RAID-10',
11 => 'RAID-30',
12 => 'RAID-50',
13 => 'Add spares',
14 => 'Delete logical',
15 => 'Transform logical',
18 => 'RAID-0-plus-1 - Mylex only',
19 => 'Concatened RAID 1',
20 => 'Concatened RAID 5',
21 => 'no RAID',
22 => 'RAID Morph - Adapted only',
);
my %componentStatus = (
1 => ['other', 'UNKNOWN'],
2 => ['unknown', 'UNKNOWN'],
3 => ['ok', 'OK'],
4 => ['nonCritical', 'WARNING'],
5 => ['critical', 'CRITICAL'],
6 => ['nonRecoverable', 'CRITICAL'],
);
sub check {
my ($self) = @_;
# In MIB '10893.mib'
$self->{output}->output_add(long_msg => "Checking Logical Drives");
$self->{components}->{logicaldrive} = {name => 'logical drives', total => 0};
return if ($self->check_exclude('logicaldrive'));
my $oid_diskName = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.2';
my $oid_diskDeviceName = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.3';
my $oid_diskState = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.4';
my $oid_diskLengthInMB = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.6';
my $oid_diskLayout = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.13';
my $oid_diskComponentStatus = '.1.3.6.1.4.1.674.10893.1.20.140.1.1.20';
my $result = $self->{snmp}->get_table(oid => $oid_diskName);
return if (scalar(keys %$result) <= 0);
$self->{snmp}->load(oids => [$oid_diskDeviceName, $oid_diskState, $oid_diskLengthInMB, $oid_diskLayout, $oid_diskComponentStatus],
instances => [keys %$result],
instance_regexp => '(\d+)$');
my $result2 = $self->{snmp}->get_leef();
return if (scalar(keys %$result2) <= 0);
foreach my $key ($self->{snmp}->oid_lex_sort(keys %$result)) {
$key =~ /(\d+)$/;
my $disk_Index = $1;
my $disk_Name = $result->{$key};
my $disk_DeviceName = $result2->{$oid_diskDeviceName . '.' . $disk_Index};
my $disk_State = $result2->{$oid_diskState . '.' . $disk_Index};
my $disk_LengthInMB = $result2->{$oid_diskLengthInMB . '.' . $disk_Index};
my $disk_Layout = $result2->{$oid_diskLayout . '.' . $disk_Index};
my $disk_ComponentStatus = $result2->{$oid_diskComponentStatus . '.' . $disk_Index};
$self->{components}->{logicaldrive}->{total}++;
$self->{output}->output_add(long_msg => sprintf("logical drive %s status is %s, state is %s, layout is %s, size is %d MB [device: %s, index: %d].",
$disk_Name, ${$componentStatus{$disk_ComponentStatus}}[0], $state{$disk_State},
$layout{$disk_Layout}, $disk_LengthInMB, $disk_DeviceName, $disk_Index
));
if ($disk_ComponentStatus != 3) {
$self->{output}->output_add(severity => ${$componentStatus{$disk_ComponentStatus}}[1],
short_msg => sprintf("logical drive %s status is %s [device: %s, index: %d]",
$disk_Name, ${$componentStatus{$disk_ComponentStatus}}[0], $disk_DeviceName, $disk_Index));
}
}
}
1;

View File

@ -48,6 +48,7 @@ use hardware::server::dell::openmanage::mode::components::cpu;
use hardware::server::dell::openmanage::mode::components::cachebattery;
use hardware::server::dell::openmanage::mode::components::memory;
use hardware::server::dell::openmanage::mode::components::physicaldisk;
use hardware::server::dell::openmanage::mode::components::logicaldrive;
sub new {
my ($class, %options) = @_;
@ -83,6 +84,7 @@ sub global {
hardware::server::dell::openmanage::mode::components::cachebattery::check($self);
hardware::server::dell::openmanage::mode::components::memory::check($self);
hardware::server::dell::openmanage::mode::components::physicaldisk::check($self);
hardware::server::dell::openmanage::mode::components::logicaldrive::check($self);
my $total_components = 0;
my $display_by_component = '';
@ -122,6 +124,8 @@ sub component {
hardware::server::dell::openmanage::mode::components::memory::check($self);
} elsif ($self->{option_results}->{component} eq 'physicaldisk') {
hardware::server::dell::openmanage::mode::components::physicaldisk::check($self);
} elsif ($self->{option_results}->{component} eq 'logicaldrive') {
hardware::server::dell::openmanage::mode::components::logicaldrive::check($self);
}else {
$self->{output}->add_option_msg(short_msg => "Wrong option. Cannot find component '" . $self->{option_results}->{component} . "'.");
$self->{output}->option_exit();