2020-04-08 19:02:30 +02:00
|
|
|
#
|
|
|
|
# Copyright 2020 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.
|
|
|
|
#
|
|
|
|
|
2020-04-10 14:53:05 +02:00
|
|
|
package centreon::common::ibm::nos::snmp::mode::components::temperature;
|
2020-04-08 19:02:30 +02:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
sub load {}
|
|
|
|
|
|
|
|
sub check {
|
|
|
|
my ($self) = @_;
|
2020-04-10 14:53:05 +02:00
|
|
|
|
|
|
|
$self->{output}->output_add(long_msg => 'checking temperatures');
|
2020-04-08 19:02:30 +02:00
|
|
|
$self->{components}->{temperature} = { name => 'temperatures', total => 0, skip => 0 };
|
|
|
|
return if ($self->check_filter(section => 'temperature'));
|
|
|
|
|
|
|
|
my $oid_hwTemperatureWarn = '.1.3.6.1.4.1.26543.2.5.1.3.1.22.0';
|
|
|
|
my $oid_hwTemperatureShut = '.1.3.6.1.4.1.26543.2.5.1.3.1.23.0';
|
2020-04-10 14:53:05 +02:00
|
|
|
my $results = $self->{snmp}->get_leef(oids => [$oid_hwTemperatureWarn, $oid_hwTemperatureShut]);
|
|
|
|
|
|
|
|
return if (!defined($results->{$oid_hwTemperatureWarn}));
|
2020-04-08 19:02:30 +02:00
|
|
|
|
2020-04-10 14:53:05 +02:00
|
|
|
my $instance = 'system';
|
2020-04-08 19:02:30 +02:00
|
|
|
# .1.3.6.1.4.1.20301.2.5.1.3.1.41.1.1.20.1 = STRING: "44 C (Warn at 66 C / Recover at 61 C)"
|
|
|
|
# .1.3.6.1.4.1.20301.2.5.1.3.1.41.1.1.21.1 = STRING: "44 C (Shutdown at 72 C / Recover at 67 C)"
|
|
|
|
$results->{$oid_hwTemperatureWarn} =~ /^([.0-9]+)\s*C\s*\(Warn(?:ing)?\s*at\s*([.0-9]+)\s*C/i;
|
2020-04-10 14:53:05 +02:00
|
|
|
my ($temperature, $warning_mib) = ($1, $2);
|
2020-04-08 19:02:30 +02:00
|
|
|
$results->{$oid_hwTemperatureShut} =~ /^([.0-9]+)\s*C\s*\(Shutdown\s*at\s*([.0-9]+)\s*C/i;
|
2020-04-10 14:53:05 +02:00
|
|
|
$temperature = $1 if ($1 > $temperature);
|
|
|
|
my $critical_mib = ($warning_mib + $2) / 2;
|
2020-04-08 19:02:30 +02:00
|
|
|
|
2020-04-16 19:18:56 +02:00
|
|
|
if ($warning_mib == $critical_mib) { #seen on some chassis !
|
|
|
|
$warning_mib -= 10;
|
|
|
|
$critical_mib -= 5;
|
|
|
|
}
|
|
|
|
|
2020-04-08 19:02:30 +02:00
|
|
|
$self->{components}->{temperature}->{total}++;
|
2020-04-10 14:53:05 +02:00
|
|
|
|
2020-04-08 19:02:30 +02:00
|
|
|
$self->{output}->output_add(long_msg =>
|
|
|
|
sprintf(
|
2020-04-10 14:53:05 +02:00
|
|
|
"temperature '%s' is %.1f C [instance: %s]",
|
|
|
|
$instance,
|
|
|
|
$temperature,
|
|
|
|
$instance
|
2020-04-08 19:02:30 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-04-10 14:53:05 +02:00
|
|
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => $instance, value => $temperature);
|
|
|
|
if ($checked == 0) {
|
|
|
|
$self->{perfdata}->threshold_validate(label => 'warning-temperature-instance-' . $instance, value => $warning_mib);
|
|
|
|
$self->{perfdata}->threshold_validate(label => 'critical-temperature-instance-' . $instance, value => $critical_mib);
|
|
|
|
$warn = $self->{perfdata}->get_perfdata_for_output(label => 'warning-temperature-instance-' . $instance);
|
|
|
|
$crit = $self->{perfdata}->get_perfdata_for_output(label => 'critical-temperature-instance-' . $instance);
|
|
|
|
$exit = $self->{perfdata}->threshold_check(
|
|
|
|
value => $temperature,
|
|
|
|
threshold => [
|
|
|
|
{ label => 'critical-temperature-instance-' . $instance, exit_litteral => 'critical' },
|
|
|
|
{ label => 'warning-temperature-instance-' . $instance, exit_litteral => 'warning' }
|
|
|
|
]
|
|
|
|
);
|
2020-04-08 19:02:30 +02:00
|
|
|
}
|
2020-04-10 14:53:05 +02:00
|
|
|
|
2020-04-08 19:02:30 +02:00
|
|
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
|
|
$self->{output}->output_add(
|
|
|
|
severity => $exit,
|
|
|
|
short_msg => sprintf(
|
2020-04-10 14:53:05 +02:00
|
|
|
"Temperature '%s' is %.1f C",
|
|
|
|
$instance,
|
2020-04-08 19:02:30 +02:00
|
|
|
$temperature
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{output}->perfdata_add(
|
2020-04-10 14:53:05 +02:00
|
|
|
unit => 'C',
|
2020-04-08 19:02:30 +02:00
|
|
|
nlabel => 'hardware.temperature.celsius',
|
|
|
|
instances => 'system',
|
|
|
|
value => $temperature,
|
2020-04-10 14:53:05 +02:00
|
|
|
warning => $warn,
|
|
|
|
critical => $crit
|
2020-04-08 19:02:30 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|