+ Add plugin for sun mseries hardware
This commit is contained in:
parent
0a3c0d6ed0
commit
b6d7c6e2ab
|
@ -0,0 +1,115 @@
|
||||||
|
################################################################################
|
||||||
|
# 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::sun::mseries::mode::domains;
|
||||||
|
|
||||||
|
use base qw(centreon::plugins::mode);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use centreon::plugins::misc;
|
||||||
|
|
||||||
|
my %error_status = (
|
||||||
|
1 => ["The domain '%s' status is normal", 'OK'],
|
||||||
|
2 => ["The domain '%s' status is degraded", 'WARNING'],
|
||||||
|
3 => ["The domain '%s' status is faulted", 'CRITICAL'],
|
||||||
|
254 => ["The domain '%s' status has changed", 'WARNING'],
|
||||||
|
255 => ["The domain '%s' status is unknown", 'UNKNOWN'],
|
||||||
|
);
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ($class, %options) = @_;
|
||||||
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
bless $self, $class;
|
||||||
|
|
||||||
|
$self->{version} = '1.0';
|
||||||
|
$options{options}->add_options(arguments =>
|
||||||
|
{
|
||||||
|
"skip" => { name => 'skip' },
|
||||||
|
});
|
||||||
|
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub check_options {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
$self->SUPER::init(%options);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
# $options{snmp} = snmp object
|
||||||
|
$self->{snmp} = $options{snmp};
|
||||||
|
|
||||||
|
my $oid_scfDomainErrorStatus = '.1.3.6.1.4.1.211.1.15.3.1.1.5.2.1.15';
|
||||||
|
my $oids_domain_status = $self->{snmp}->get_table(oid => $oid_scfDomainErrorStatus, nothing_quit => 1);
|
||||||
|
|
||||||
|
$self->{output}->output_add(severity => 'OK',
|
||||||
|
short_msg => "All domains are ok.");
|
||||||
|
foreach ($self->{snmp}->oid_lex_sort(keys %$oids_domain_status)) {
|
||||||
|
/^${oid_scfDomainErrorStatus}\.(.*)/;
|
||||||
|
my $domain_id = $1;
|
||||||
|
$self->{output}->output_add(long_msg => sprintf(${$error_status{$oids_domain_status->{$_}}}[0], $domain_id));
|
||||||
|
if ($oids_domain_status->{$_} == 255 && defined($self->{option_results}->{skip})) {
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
if ($oids_domain_status->{$_} != 1) {
|
||||||
|
$self->{output}->output_add(severity => ${$error_status{$oids_domain_status->{$_}}}[1],
|
||||||
|
short_msg => sprintf(${$error_status{$oids_domain_status->{$_}}}[0], $domain_id));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$self->{output}->display();
|
||||||
|
$self->{output}->exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check Mseries domains status.
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--skip>
|
||||||
|
|
||||||
|
Skip 'unknown' domains.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
|
@ -0,0 +1,227 @@
|
||||||
|
################################################################################
|
||||||
|
# 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::sun::mseries::mode::hardware;
|
||||||
|
|
||||||
|
use base qw(centreon::plugins::mode);
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use centreon::plugins::misc;
|
||||||
|
use Digest::MD5 qw(md5_hex);
|
||||||
|
|
||||||
|
my %components_board_types = (
|
||||||
|
1 => 'cmu',
|
||||||
|
2 => 'ddc',
|
||||||
|
3 => 'cpum',
|
||||||
|
4 => 'cpuChip',
|
||||||
|
5 => 'cpuCore',
|
||||||
|
6 => 'cpuStrand',
|
||||||
|
7 => 'way',
|
||||||
|
9 => 'mem',
|
||||||
|
10 => 'sc',
|
||||||
|
11 => 'tag',
|
||||||
|
12 => 'xsb',
|
||||||
|
13 => 'mac',
|
||||||
|
14 => 'bank',
|
||||||
|
15 => 'block',
|
||||||
|
16 => 'xbuA',
|
||||||
|
17 => 'half',
|
||||||
|
19 => 'xbuB',
|
||||||
|
21 => 'iou',
|
||||||
|
23 => 'pcir',
|
||||||
|
24 => 'ioc',
|
||||||
|
25 => 'flp',
|
||||||
|
26 => 'iocCh',
|
||||||
|
27 => 'iocLeaf',
|
||||||
|
28 => 'hdd',
|
||||||
|
29 => 'pci',
|
||||||
|
30 => 'pcic',
|
||||||
|
31 => 'xscfA',
|
||||||
|
32 => 'xscfB',
|
||||||
|
33 => 'xscfC',
|
||||||
|
34 => 'clkuA',
|
||||||
|
36 => 'clkuB',
|
||||||
|
38 => 'psubpA',
|
||||||
|
39 => 'psubpB',
|
||||||
|
40 => 'acsA',
|
||||||
|
41 => 'acsB',
|
||||||
|
42 => 'psu',
|
||||||
|
43 => 'bpA',
|
||||||
|
44 => 'bpB',
|
||||||
|
45 => 'ddcA',
|
||||||
|
46 => 'fanbpA',
|
||||||
|
47 => 'fanbpB',
|
||||||
|
48 => 'fanbpC',
|
||||||
|
49 => 'fanA',
|
||||||
|
50 => 'fan',
|
||||||
|
51 => 'fanB',
|
||||||
|
53 => 'opnl',
|
||||||
|
54 => 'tape',
|
||||||
|
55 => 'dvd',
|
||||||
|
56 => 'swbp',
|
||||||
|
57 => 'medbp',
|
||||||
|
96 => 'mbuA',
|
||||||
|
97 => 'riser',
|
||||||
|
98 => 'pcmu',
|
||||||
|
100 => 'ddcB',
|
||||||
|
110 => 'memb',
|
||||||
|
115 => 'mbuB',
|
||||||
|
133 => 'bpuA',
|
||||||
|
134 => 'iob',
|
||||||
|
135 => 'pdb',
|
||||||
|
136 => 'bpuB',
|
||||||
|
137 => 'busbar',
|
||||||
|
141 => 'ddcr',
|
||||||
|
148 => 'sw',
|
||||||
|
149 => 'bridge',
|
||||||
|
150 => 'gbe',
|
||||||
|
151 => 'sas',
|
||||||
|
155 => 'xscfu',
|
||||||
|
157 => 'psuFan',
|
||||||
|
158 => 'airA',
|
||||||
|
159 => 'airB',
|
||||||
|
160 => 'airC',
|
||||||
|
161 => 'acInlet',
|
||||||
|
169 => 'hddbp',
|
||||||
|
171 => 'tapebp',
|
||||||
|
173 => 'dvdbpA',
|
||||||
|
175 => 'dvdbpB',
|
||||||
|
180 => 'cable',
|
||||||
|
190 => 'ioua',
|
||||||
|
192 => 'snsu',
|
||||||
|
196 => 'ups',
|
||||||
|
200 => 'environment',
|
||||||
|
201 => 'firm',
|
||||||
|
203 => 'domain',
|
||||||
|
253 => 'unspecified',
|
||||||
|
254 => 'notApplicable',
|
||||||
|
255 => 'unknown'
|
||||||
|
);
|
||||||
|
my %error_status = (
|
||||||
|
1 => ["The component '%s' status is normal", 'OK'], 2 => ["The component '%s' status is degraded", 'WARNING'],
|
||||||
|
3 => ["The component '%s' status is faulted", 'CRITICAL'],
|
||||||
|
254 => ["The component '%s' status has changed", 'WARNING'],
|
||||||
|
255 => ["The component '%s' status is unknown", 'UNKNOWN'],
|
||||||
|
);
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ($class, %options) = @_;
|
||||||
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
bless $self, $class;
|
||||||
|
|
||||||
|
$self->{version} = '1.0';
|
||||||
|
$options{options}->add_options(arguments =>
|
||||||
|
{
|
||||||
|
"with-sensors" => { name => 'with_sensors' },
|
||||||
|
});
|
||||||
|
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub check_options {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
$self->SUPER::init(%options);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
# $options{snmp} = snmp object
|
||||||
|
$self->{snmp} = $options{snmp};
|
||||||
|
|
||||||
|
my $oid_scfComponentErrorStatus = '.1.3.6.1.4.1.211.1.15.3.1.1.12.2.1.14';
|
||||||
|
my $oid_scfComponentPartNumber = '.1.3.6.1.4.1.211.1.15.3.1.1.12.2.1.8';
|
||||||
|
my $oid_scfMonitorValue = '.1.3.6.1.4.1.211.1.15.3.1.1.3.2.1.11';
|
||||||
|
my $oid_scfMonitorUnits = '.1.3.6.1.4.1.211.1.15.3.1.1.3.2.1.9';
|
||||||
|
|
||||||
|
my $oids_components_error_status = $self->{snmp}->get_table(oid => $oid_scfComponentErrorStatus, nothing_quit => 1);
|
||||||
|
my $oids_components_part_number = $self->{snmp}->get_table(oid => $oid_scfComponentPartNumber, nothing_quit => 1);
|
||||||
|
$self->{output}->output_add(severity => 'OK',
|
||||||
|
short_msg => "All components are ok.");
|
||||||
|
foreach my $oid ($self->{snmp}->oid_lex_sort(keys %$oids_components_error_status)) {
|
||||||
|
# get last value from oid. And components oid is the concatenate of 'boardtype', 'boardid',...
|
||||||
|
$oid =~ /^${oid_scfComponentErrorStatus}\.(.*?)\.(.*)/;
|
||||||
|
my $board_type = $1;
|
||||||
|
my $oid_end = $2;
|
||||||
|
|
||||||
|
my $component_status = $oids_components_error_status->{$oid};
|
||||||
|
# with '--'. there is 0x00 at the end str
|
||||||
|
my $component_part = centreon::plugins::misc::trim($oids_components_part_number->{$oid_scfComponentPartNumber . '.' . $board_type . '.' . $oid_end});
|
||||||
|
|
||||||
|
if ($component_status != 1) {
|
||||||
|
$self->{output}->output_add(severity => ${$error_status{$component_status}}[1],
|
||||||
|
short_msg => sprintf(${$error_status{$component_status}}[0], $components_board_types{$board_type} . " (" . $component_part . ")"));
|
||||||
|
}
|
||||||
|
$self->{output}->output_add(long_msg => sprintf(${$error_status{$component_status}}[0], $components_board_types{$board_type} . " (" . $component_part . ")"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (defined($self->{option_results}->{with_sensors})) {
|
||||||
|
my $oids_monitor_values = $self->{snmp}->get_table(oid => $oid_scfMonitorValue);
|
||||||
|
my $oids_monitor_units = $self->{snmp}->get_table(oid => $oid_scfMonitorUnits);
|
||||||
|
foreach my $oid ($self->{snmp}->oid_lex_sort(keys %$oids_monitor_values)) {
|
||||||
|
# get last value from oid. And components oid is the concatenate of 'boardtype', 'boardid',...
|
||||||
|
$oid =~ /^${oid_scfMonitorValue}\.(.*?)\.(.*)/;
|
||||||
|
my $board_type = $1;
|
||||||
|
my $oid_end = $2;
|
||||||
|
my $hex_val = md5_hex($board_type . '.' . $oid_end);
|
||||||
|
|
||||||
|
$self->{output}->perfdata_add(label => $components_board_types{$board_type} . "_" . $hex_val,
|
||||||
|
unit => $oids_monitor_units->{$oid_scfMonitorUnits . '.' . $board_type . '.' . $oid_end},
|
||||||
|
value => $oids_monitor_values->{$oid});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$self->{output}->display();
|
||||||
|
$self->{output}->exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 MODE
|
||||||
|
|
||||||
|
Check Mseries hardware components.
|
||||||
|
|
||||||
|
=over 8
|
||||||
|
|
||||||
|
=item B<--with-sensors>
|
||||||
|
|
||||||
|
Get sensors perfdatas.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
################################################################################
|
||||||
|
# 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::sun::mseries::plugin;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use base qw(centreon::plugins::script_snmp);
|
||||||
|
|
||||||
|
sub new {
|
||||||
|
my ($class, %options) = @_;
|
||||||
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
||||||
|
bless $self, $class;
|
||||||
|
# $options->{options} = options object
|
||||||
|
|
||||||
|
$self->{version} = '1.0';
|
||||||
|
%{$self->{modes}} = (
|
||||||
|
'hardware' => 'hardware::server::sun::mseries::mode::hardware',
|
||||||
|
'domains' => 'hardware::server::sun::mseries::mode::domains',
|
||||||
|
);
|
||||||
|
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
__END__
|
||||||
|
|
||||||
|
=head1 PLUGIN DESCRIPTION
|
||||||
|
|
||||||
|
Check Sun Mseries Hardware in SNMP.
|
||||||
|
|
||||||
|
=cut
|
Loading…
Reference in New Issue