172 lines
7.0 KiB
Perl
172 lines
7.0 KiB
Perl
#
|
|
# Copyright 2021 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 network::hirschmann::standard::snmp::mode::components::led;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
my $map_hios_led_type = {
|
|
1 => 'power', 2 => 'status', 3 => 'rm',
|
|
4 => 'envm', 5 => 'i1', 6 => 'i2'
|
|
};
|
|
my $map_hios_led_status = {
|
|
1 => 'off', 2 => 'greenSolid', 3 => 'greenBlink1', 4 => 'greenBlink3',
|
|
5 => 'greenBlink4', 6 => 'greenBlink5', 7 => 'greenBlink5i', 8 => 'yellowSolid',
|
|
9 => 'yellowBlink1',10 => 'yellowBlink3', 11 => 'yellowBlink4', 12 => 'yellowBlink5',
|
|
13 => 'redSolid', 14 => 'redBlink1', 15 => 'redBlink3', 16 => 'redBlink4', 17 => 'redBlink5'
|
|
};
|
|
my $map_classic_led_status = {
|
|
1 => 'off',
|
|
2 => 'green',
|
|
3 => 'yellow',
|
|
4 => 'red'
|
|
};
|
|
my $mapping_hios_led = {
|
|
led_status => { oid => '.1.3.6.1.4.1.248.11.22.1.4.1.1.2', map => $map_hios_led_status } # hm2LedGlobalStatus
|
|
};
|
|
my $oid_classic_led_group = '.1.3.6.1.4.1.248.14.1.1.35'; # hmLEDGroup
|
|
|
|
sub load {
|
|
my ($self) = @_;
|
|
|
|
push @{$self->{myrequest}->{classic}},
|
|
{ oid => $oid_classic_led_group };
|
|
push @{$self->{myrequest}->{hios}},
|
|
{ oid => $mapping_hios_led->{led_status}->{oid} };
|
|
}
|
|
|
|
sub check_hios_led {
|
|
my ($self) = @_;
|
|
|
|
foreach my $oid ($self->{snmp}->oid_lex_sort(keys %{$self->{results}->{ $mapping_hios_led->{led_status}->{oid} }})) {
|
|
next if ($oid !~ /^$mapping_hios_led->{led_status}->{oid}\.(.*)$/);
|
|
my $instance = $1;
|
|
|
|
my $result = $self->{snmp}->map_instance(
|
|
mapping => $mapping_hios_led,
|
|
results => $self->{results}->{ $mapping_hios_led->{led_status}->{oid} },
|
|
instance => $instance
|
|
);
|
|
|
|
next if ($self->check_filter(section => 'led', instance => $instance));
|
|
$self->{components}->{led}->{total}++;
|
|
|
|
$self->{output}->output_add(
|
|
long_msg => sprintf(
|
|
"led '%s' status is %s [instance: %s].",
|
|
$map_hios_led_type->{$instance},
|
|
$result->{led_status},
|
|
$instance
|
|
)
|
|
);
|
|
my $exit = $self->get_severity(section => 'led', value => $result->{led_status});
|
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
$self->{output}->output_add(
|
|
severity => $exit,
|
|
short_msg => sprintf(
|
|
"Led '%s' status is %s",
|
|
$map_hios_led_type->{$instance}, $result->{led_status}
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
sub check_classic_led_group {
|
|
my ($self, %options) = @_;
|
|
|
|
my $result = $self->{snmp}->map_instance(mapping => $options{mapping}, results => $self->{results}->{$oid_classic_led_group}, instance => 0);
|
|
foreach my $name (sort keys %{$options{mapping}}) {
|
|
next if (!defined($result->{$name}));
|
|
|
|
$options{mapping}->{$name}->{oid} =~ /\.(\d+)$/;
|
|
my $instance = $1;
|
|
|
|
next if ($self->check_filter(section => 'led', instance => $instance));
|
|
$self->{components}->{led}->{total}++;
|
|
|
|
$self->{output}->output_add(
|
|
long_msg => sprintf(
|
|
"led '%s' status is %s [instance: %s].",
|
|
$instance, $result->{$name},
|
|
$instance
|
|
)
|
|
);
|
|
my $exit = $self->get_severity(section => 'led', value => $result->{$name});
|
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
$self->{output}->output_add(
|
|
severity => $exit,
|
|
short_msg => sprintf(
|
|
"Led '%s' status is %s",
|
|
$instance, $result->{$name}
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
sub check_classic_led {
|
|
my ($self, %options) = @_;
|
|
|
|
my $mapping;
|
|
if (defined($self->{results}->{$oid_classic_led_group}->{$oid_classic_led_group . '.1.1.0'})) {
|
|
$mapping = {
|
|
hmLEDRSPowerSupply => { oid => '.1.3.6.1.4.1.248.14.1.1.35.1.1', map => $map_classic_led_status, desc => 'PowerSupply' },
|
|
hmLEDRStandby => { oid => '.1.3.6.1.4.1.248.14.1.1.35.1.2', map => $map_classic_led_status, desc => 'Standby' },
|
|
hmLEDRSRedundancyManager => { oid => '.1.3.6.1.4.1.248.14.1.1.35.1.3', map => $map_classic_led_status, desc => 'RedundancyManager' },
|
|
hmLEDRSFault => { oid => '.1.3.6.1.4.1.248.14.1.1.35.1.4', map => $map_classic_led_status, desc => 'Fault' }
|
|
};
|
|
} elsif (defined($self->{results}->{$oid_classic_led_group}->{$oid_classic_led_group . '.2.1.0'})) {
|
|
$mapping = {
|
|
hmLEDOctPowerSupply1 => { oid => '.1.3.6.1.4.1.248.14.1.1.35.2.1', map => $map_classic_led_status, desc => 'PowerSupply1' },
|
|
hmLEDOctPowerSupply2 => { oid => '.1.3.6.1.4.1.248.14.1.1.35.2.2', map => $map_classic_led_status, desc => 'PowerSupply2' },
|
|
hmLEDOctRedundancyManager => { oid => '.1.3.6.1.4.1.248.14.1.1.35.2.3', map => $map_classic_led_status, desc => 'RedundancyManager' },
|
|
hmLEDOctFault => { oid => '.1.3.6.1.4.1.248.14.1.1.35.2.4', map => $map_classic_led_status, desc => 'Fault' }
|
|
};
|
|
} elsif (defined($self->{results}->{$oid_classic_led_group}->{$oid_classic_led_group . '.3.1.0'})) {
|
|
$mapping = {
|
|
hmLEDRSRPowerSupply => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.1', map => $map_classic_led_status, desc => 'PowerSupply' },
|
|
hmLEDRSRStandby => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.2', map => $map_classic_led_status, desc => 'Standby' },
|
|
hmLEDRSRRedundancyManager => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.3', map => $map_classic_led_status, desc => 'RedundancyManager' },
|
|
hmLEDRSRFault => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.4', map => $map_classic_led_status, desc => 'Fault' },
|
|
hmLEDRSRRelay1 => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.5', map => $map_classic_led_status, desc => 'Relay1' },
|
|
hmLEDRSRRelay2 => { oid => '.1.3.6.1.4.1.248.14.1.1.35.3.6', map => $map_classic_led_status, desc => 'Relay2' }
|
|
};
|
|
} else {
|
|
return ;
|
|
}
|
|
|
|
check_classic_led_group($self, mapping => $mapping);
|
|
}
|
|
|
|
sub check {
|
|
my ($self) = @_;
|
|
|
|
$self->{output}->output_add(long_msg => 'Checking leds');
|
|
$self->{components}->{led} = { name => 'leds', total => 0, skip => 0 };
|
|
return if ($self->check_filter(section => 'led'));
|
|
|
|
check_classic_led($self) if ($self->{os_type} eq 'classic');
|
|
check_hios_led($self) if ($self->{os_type} eq 'hios');
|
|
}
|
|
|
|
1;
|