parent
6401ad7b64
commit
2c75a4de40
|
@ -22,41 +22,72 @@ package network::mikrotik::snmp::mode::components::current;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use network::mikrotik::snmp::mode::components::resources qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
my $mapping = {
|
my $mapping = {
|
||||||
mtxrHlCurrent => { oid => '.1.3.6.1.4.1.14988.1.1.3.13' },
|
mtxrHlCurrent => { oid => '.1.3.6.1.4.1.14988.1.1.3.13' }
|
||||||
};
|
};
|
||||||
|
|
||||||
sub load {}
|
sub load {}
|
||||||
|
|
||||||
|
sub check_current {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf(
|
||||||
|
"current '%s' is %s A",
|
||||||
|
$options{name},
|
||||||
|
$options{value}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'current', instance => $options{instance}, value => $options{value});
|
||||||
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => $exit,
|
||||||
|
short_msg => sprintf("Current '%s' is %s A", $options{name}, $options{value})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$self->{output}->perfdata_add(
|
||||||
|
nlabel => 'hardware.current.ampere',
|
||||||
|
unit => 'A',
|
||||||
|
instances => $options{name},
|
||||||
|
value => $options{value},
|
||||||
|
warning => $warn,
|
||||||
|
critical => $crit
|
||||||
|
);
|
||||||
|
$self->{components}->{current}->{total}++;
|
||||||
|
}
|
||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => "Checking current");
|
$self->{output}->output_add(long_msg => "Checking current");
|
||||||
$self->{components}->{current} = {name => 'current', total => 0, skip => 0};
|
$self->{components}->{current} = { name => 'current', total => 0, skip => 0 };
|
||||||
return if ($self->check_filter(section => 'current'));
|
return if ($self->check_filter(section => 'current'));
|
||||||
|
|
||||||
my $instance = 0;
|
|
||||||
my ($exit, $warn, $crit, $checked);
|
|
||||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
||||||
|
|
||||||
if (defined($result->{mtxrHlCurrent}) && $result->{mtxrHlCurrent} =~ /[0-9]+/) {
|
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => sprintf("Current is '%s' A", $result->{mtxrHlCurrent} / 100));
|
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'current', instance => $instance, value => $result->{mtxrHlCurrent} / 100);
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => 0);
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
||||||
$self->{output}->output_add(severity => $exit,
|
if (defined($result->{mtxrHlCurrent}) && $result->{mtxrHlCurrent} =~ /[0-9]+/) {
|
||||||
short_msg => sprintf("Current is '%s' A", $result->{mtxrHlCurrent} / 100));
|
check_current(
|
||||||
}
|
$self,
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'current', unit => 'A',
|
|
||||||
nlabel => 'hardware.current.ampere',
|
|
||||||
value => $result->{mtxrHlCurrent} / 100,
|
value => $result->{mtxrHlCurrent} / 100,
|
||||||
warning => $warn,
|
instance => 1,
|
||||||
critical => $crit
|
name => 'system'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (keys %{$self->{results}}) {
|
||||||
|
next if (! /^$mapping_gauge->{unit}->{oid}\.(\d+)/);
|
||||||
|
next if ($map_gauge_unit->{ $self->{results}->{$_} } ne 'dA');
|
||||||
|
|
||||||
|
$result = $self->{snmp}->map_instance(mapping => $mapping_gauge, results => $self->{results}, instance => $1);
|
||||||
|
check_current(
|
||||||
|
$self,
|
||||||
|
value => $result->{value} / 10,
|
||||||
|
instance => $1,
|
||||||
|
name => $result->{name}
|
||||||
);
|
);
|
||||||
$self->{components}->{current}->{total}++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,65 +22,64 @@ package network::mikrotik::snmp::mode::components::fan;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use network::mikrotik::snmp::mode::components::resources qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
my $mapping = {
|
my $mapping = {
|
||||||
mtxrHlFanSpeed1 => { oid => '.1.3.6.1.4.1.14988.1.1.3.17' },
|
mtxrHlFanSpeed1 => { oid => '.1.3.6.1.4.1.14988.1.1.3.17' },
|
||||||
mtxrHlFanSpeed2 => { oid => '.1.3.6.1.4.1.14988.1.1.3.18' },
|
mtxrHlFanSpeed2 => { oid => '.1.3.6.1.4.1.14988.1.1.3.18' }
|
||||||
};
|
};
|
||||||
|
|
||||||
sub load {}
|
sub load {}
|
||||||
|
|
||||||
|
sub check_fan {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf(
|
||||||
|
"fan '%s' speed is '%s' RPM",
|
||||||
|
$options{instance},
|
||||||
|
$options{value}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'fan', instance => $options{instance}, value => $options{value});
|
||||||
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => $exit,
|
||||||
|
short_msg => sprintf("Fan '%s' speed is '%s' RPM", $options{instance}, $options{value})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$self->{output}->perfdata_add(
|
||||||
|
nlabel => 'hardware.fan.speed.rpm',
|
||||||
|
unit => 'rpm',
|
||||||
|
instances => $options{instance},
|
||||||
|
value => $options{value},
|
||||||
|
warning => $warn,
|
||||||
|
critical => $crit
|
||||||
|
);
|
||||||
|
$self->{components}->{fan}->{total}++;
|
||||||
|
}
|
||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => "Checking fans");
|
$self->{output}->output_add(long_msg => "Checking fans");
|
||||||
$self->{components}->{fan} = {name => 'fans', total => 0, skip => 0};
|
$self->{components}->{fan} = { name => 'fans', total => 0, skip => 0 };
|
||||||
return if ($self->check_filter(section => 'fan'));
|
return if ($self->check_filter(section => 'fan'));
|
||||||
|
|
||||||
my $instance = 0;
|
|
||||||
my ($exit, $warn, $crit, $checked);
|
|
||||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
||||||
|
|
||||||
if (defined($result->{mtxrHlFanSpeed1}) && $result->{mtxrHlFanSpeed1} =~ /[0-9]+/) {
|
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => sprintf("Fan '1' speed is '%s' RPM", $result->{mtxrHlFanSpeed1}));
|
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'fan', instance => '1', value => $result->{mtxrHlFanSpeed1});
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => 0);
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
if (defined($result->{mtxrHlFanSpeed1}) && $result->{mtxrHlFanSpeed1} =~ /[0-9]+/) {
|
||||||
$self->{output}->output_add(
|
check_fan($self, value => $result->{mtxrHlFanSpeed1}, instance => 1);
|
||||||
severity => $exit,
|
|
||||||
short_msg => sprintf("Fan '1' speed is '%s' RPM", $result->{mtxrHlFanSpeed1})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'fan_speed', unit => 'rpm',
|
|
||||||
nlabel => 'hardware.fan.speed.rpm',
|
|
||||||
instances => '1',
|
|
||||||
value => $result->{mtxrHlFanSpeed1},
|
|
||||||
warning => $warn,
|
|
||||||
critical => $crit
|
|
||||||
);
|
|
||||||
$self->{components}->{fan}->{total}++;
|
|
||||||
}
|
}
|
||||||
if (defined($result->{mtxrHlFanSpeed2}) && $result->{mtxrHlFanSpeed2} =~ /[0-9]+/) {
|
if (defined($result->{mtxrHlFanSpeed2}) && $result->{mtxrHlFanSpeed2} =~ /[0-9]+/) {
|
||||||
$self->{output}->output_add(long_msg => sprintf("Fan '2' speed is '%s' RPM", $result->{mtxrHlFanSpeed2}));
|
check_fan($self, value => $result->{mtxrHlFanSpeed2}, instance => 2);
|
||||||
|
}
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'fan', instance => '2', value => $result->{mtxrHlFanSpeed2});
|
foreach (keys %{$self->{results}}) {
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
next if (! /^$mapping_gauge->{unit}->{oid}\.(\d+)/);
|
||||||
$self->{output}->output_add(
|
next if ($map_gauge_unit->{ $self->{results}->{$_} } ne 'rpm');
|
||||||
severity => $exit,
|
|
||||||
short_msg => sprintf("Fan '2' speed is '%s' RPM", $result->{mtxrHlFanSpeed2})
|
$result = $self->{snmp}->map_instance(mapping => $mapping_gauge, results => $self->{results}, instance => $1);
|
||||||
);
|
check_fan($self, value => $result->{value}, instance => $result->{name});
|
||||||
}
|
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'fan_speed', unit => 'rpm',
|
|
||||||
nlabel => 'hardware.fan.speed.rpm',
|
|
||||||
instances => '2',
|
|
||||||
value => $result->{mtxrHlFanSpeed2},
|
|
||||||
warning => $warn,
|
|
||||||
critical => $crit
|
|
||||||
);
|
|
||||||
$self->{components}->{fan}->{total}++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,13 +22,14 @@ package network::mikrotik::snmp::mode::components::psu;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use network::mikrotik::snmp::mode::components::resources qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
my $map_status = { 0 => 'false', 1 => 'true' };
|
my $map_status = { 0 => 'false', 1 => 'true' };
|
||||||
|
|
||||||
my $mapping = {
|
my $mapping = {
|
||||||
mtxrHlPower => { oid => '.1.3.6.1.4.1.14988.1.1.3.12' },
|
mtxrHlPower => { oid => '.1.3.6.1.4.1.14988.1.1.3.12' },
|
||||||
mtxrHlPowerSupplyState => { oid => '.1.3.6.1.4.1.14988.1.1.3.15', map => $map_status },
|
mtxrHlPowerSupplyState => { oid => '.1.3.6.1.4.1.14988.1.1.3.15', map => $map_status },
|
||||||
mtxrHlBackupPowerSupplyState => { oid => '.1.3.6.1.4.1.14988.1.1.3.16', map => $map_status },
|
mtxrHlBackupPowerSupplyState => { oid => '.1.3.6.1.4.1.14988.1.1.3.16', map => $map_status }
|
||||||
};
|
};
|
||||||
|
|
||||||
sub load {}
|
sub load {}
|
||||||
|
@ -56,38 +57,67 @@ sub check_psu {
|
||||||
$self->{components}->{psu}->{total}++;
|
$self->{components}->{psu}->{total}++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub check_power {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf(
|
||||||
|
"power '%s' is %s W",
|
||||||
|
$options{name},
|
||||||
|
$options{value}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'psu', instance => $options{instance}, value => $options{value});
|
||||||
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => $exit,
|
||||||
|
short_msg => sprintf("Power '%s' is %s W", $options{name}, $options{value})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$self->{output}->perfdata_add(
|
||||||
|
nlabel => 'hardware.power.watt',
|
||||||
|
unit => 'W',
|
||||||
|
instances => $options{name},
|
||||||
|
value => $options{value},
|
||||||
|
warning => $warn,
|
||||||
|
critical => $crit
|
||||||
|
);
|
||||||
|
$self->{components}->{psu}->{total}++;
|
||||||
|
}
|
||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => "Checking power supplies");
|
$self->{output}->output_add(long_msg => "Checking power supplies");
|
||||||
$self->{components}->{psu} = {name => 'psu', total => 0, skip => 0};
|
$self->{components}->{psu} = {name => 'psu', total => 0, skip => 0};
|
||||||
return if ($self->check_filter(section => 'psu'));
|
return if ($self->check_filter(section => 'psu'));
|
||||||
|
|
||||||
my $instance = '0';
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => 0);
|
||||||
my ($exit, $warn, $crit, $checked);
|
|
||||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
||||||
|
|
||||||
check_psu($self, value => $result->{mtxrHlPowerSupplyState}, type => 'primary');
|
check_psu($self, value => $result->{mtxrHlPowerSupplyState}, type => 'primary');
|
||||||
check_psu($self, value => $result->{mtxrHlBackupPowerSupplyState}, type => 'backup');
|
check_psu($self, value => $result->{mtxrHlBackupPowerSupplyState}, type => 'backup');
|
||||||
|
|
||||||
if (defined($result->{mtxrHlPower}) && $result->{mtxrHlPower} =~ /[0-9]+/) {
|
|
||||||
$self->{output}->output_add(long_msg => sprintf("Power is '%s' W", $result->{mtxrHlPower} / 10));
|
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'psu', instance => $instance, value => $result->{mtxrHlPower} / 10);
|
if (defined($result->{mtxrHlPower}) && $result->{mtxrHlPower} =~ /[0-9]+/) {
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
check_power(
|
||||||
$self->{output}->output_add(
|
$self,
|
||||||
severity => $exit,
|
value => $result->{mtxrHlPower} / 100,
|
||||||
short_msg => sprintf("Power is '%s' W", $result->{mtxrHlPower} / 10)
|
instance => 1,
|
||||||
);
|
name => 'system'
|
||||||
}
|
);
|
||||||
$self->{output}->perfdata_add(
|
}
|
||||||
label => 'power', unit => 'W',
|
|
||||||
nlabel => 'hardware.power.watt',
|
foreach (keys %{$self->{results}}) {
|
||||||
value => $result->{mtxrHlPower} / 10,
|
next if (! /^$mapping_gauge->{unit}->{oid}\.(\d+)/);
|
||||||
warning => $warn,
|
next if ($map_gauge_unit->{ $self->{results}->{$_} } ne 'dW');
|
||||||
critical => $crit
|
|
||||||
|
$result = $self->{snmp}->map_instance(mapping => $mapping_gauge, results => $self->{results}, instance => $1);
|
||||||
|
check_power(
|
||||||
|
$self,
|
||||||
|
value => $result->{value} / 10,
|
||||||
|
instance => $1,
|
||||||
|
name => $result->{name}
|
||||||
);
|
);
|
||||||
$self->{components}->{psu}->{total}++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
package network::mikrotik::snmp::mode::components::resources;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Exporter;
|
||||||
|
|
||||||
|
our $map_gauge_unit;
|
||||||
|
our $mapping_gauge;
|
||||||
|
|
||||||
|
our @ISA = qw(Exporter);
|
||||||
|
our @EXPORT_OK = qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
|
$mapping_gauge = {
|
||||||
|
name => { oid => '.1.3.6.1.4.1.14988.1.1.3.100.1.2' }, # mtxrGaugeName
|
||||||
|
value => { oid => '.1.3.6.1.4.1.14988.1.1.3.100.1.3' }, # mtxrGaugeName
|
||||||
|
unit => { oid => '.1.3.6.1.4.1.14988.1.1.3.100.1.4' } # mtxrGaugeUnit
|
||||||
|
};
|
||||||
|
|
||||||
|
$map_gauge_unit = {
|
||||||
|
1 => 'celsius',
|
||||||
|
2 => 'rpm',
|
||||||
|
3 => 'dV',
|
||||||
|
4 => 'dA',
|
||||||
|
5 => 'dW',
|
||||||
|
6 => 'status'
|
||||||
|
};
|
||||||
|
|
||||||
|
1;
|
|
@ -22,14 +22,47 @@ package network::mikrotik::snmp::mode::components::temperature;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use network::mikrotik::snmp::mode::components::resources qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
my $mapping = {
|
my $mapping = {
|
||||||
mtxrHlTemperature => { oid => '.1.3.6.1.4.1.14988.1.1.3.10' }, # SoC or PCB according to Mikrotik support
|
mtxrHlTemperature => { oid => '.1.3.6.1.4.1.14988.1.1.3.10' }, # SoC or PCB according to Mikrotik support
|
||||||
mtxrHlProcessorTemperature => { oid => '.1.3.6.1.4.1.14988.1.1.3.11' },
|
mtxrHlProcessorTemperature => { oid => '.1.3.6.1.4.1.14988.1.1.3.11' }
|
||||||
};
|
};
|
||||||
|
|
||||||
sub load {}
|
sub load {}
|
||||||
|
|
||||||
|
sub check_temperature {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf(
|
||||||
|
"%s is %s C",
|
||||||
|
$options{description},
|
||||||
|
$options{value}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => $options{instance}, value => $options{value});
|
||||||
|
if ($options{value} == -2730) { # RouterOS returns this when the SNMP agent hangs...
|
||||||
|
$exit = 'UNKNOWN';
|
||||||
|
}
|
||||||
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => $exit,
|
||||||
|
short_msg => sprintf("%s is %s C", $options{instance}, $options{value})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$self->{output}->perfdata_add(
|
||||||
|
nlabel => 'hardware.temperature.celsius',
|
||||||
|
unit => 'C',
|
||||||
|
instances => $options{name},
|
||||||
|
value => $options{value},
|
||||||
|
warning => $warn,
|
||||||
|
critical => $crit
|
||||||
|
);
|
||||||
|
$self->{components}->{temperature}->{total}++;
|
||||||
|
}
|
||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
|
@ -37,56 +70,39 @@ sub check {
|
||||||
$self->{components}->{temperature} = { name => 'temperature', total => 0, skip => 0 };
|
$self->{components}->{temperature} = { name => 'temperature', total => 0, skip => 0 };
|
||||||
return if ($self->check_filter(section => 'temperature'));
|
return if ($self->check_filter(section => 'temperature'));
|
||||||
|
|
||||||
my $instance = 0;
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => 0);
|
||||||
my ($exit, $warn, $crit, $checked);
|
|
||||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
||||||
|
|
||||||
if (defined($result->{mtxrHlTemperature}) && $result->{mtxrHlTemperature} =~ /[0-9]+/) {
|
|
||||||
$self->{output}->output_add(long_msg => sprintf("System temperature (SoC or PCB) is '%s' C", $result->{mtxrHlTemperature} / 10));
|
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => '1', value => $result->{mtxrHlTemperature} / 10);
|
if (defined($result->{mtxrHlTemperature}) && $result->{mtxrHlTemperature} =~ /[0-9]+/) {
|
||||||
if ($result->{mtxrHlTemperature} == -2730) { # RouterOS returns this when the SNMP agent hangs...
|
check_temperature(
|
||||||
$exit = 'UNKNOWN';
|
$self,
|
||||||
}
|
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
||||||
$self->{output}->output_add(
|
|
||||||
severity => $exit,
|
|
||||||
short_msg => sprintf("System temperature (SoC or PCB) is '%s' C", $result->{mtxrHlTemperature} / 10)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'temperature', unit => 'C',
|
|
||||||
nlabel => 'hardware.temperature.celsius',
|
|
||||||
instances => 'system',
|
|
||||||
value => $result->{mtxrHlTemperature} / 10,
|
value => $result->{mtxrHlTemperature} / 10,
|
||||||
warning => $warn,
|
instance => 1,
|
||||||
critical => $crit
|
name => 'system',
|
||||||
|
description => 'system temperature (SoC or PCB)'
|
||||||
);
|
);
|
||||||
$self->{components}->{temperature}->{total}++;
|
|
||||||
}
|
}
|
||||||
if (defined($result->{mtxrHlProcessorTemperature}) && $result->{mtxrHlProcessorTemperature} =~ /[0-9]+/) {
|
if (defined($result->{mtxrHlProcessorTemperature}) && $result->{mtxrHlProcessorTemperature} =~ /[0-9]+/) {
|
||||||
|
check_temperature(
|
||||||
$self->{output}->output_add(long_msg => sprintf("Processor temperature is '%s' C", $result->{mtxrHlProcessorTemperature} / 10));
|
$self,
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => '2', value => $result->{mtxrHlProcessorTemperature} / 10);
|
|
||||||
if ($result->{mtxrHlProcessorTemperature} == -2730) { # RouterOS returns this when the SNMP agent hangs...
|
|
||||||
$exit = 'UNKNOWN';
|
|
||||||
}
|
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
|
||||||
$self->{output}->output_add(
|
|
||||||
severity => $exit,
|
|
||||||
short_msg => sprintf("Processor temperature is '%s' C", $result->{mtxrHlProcessorTemperature} / 10)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'temperature', unit => 'C',
|
|
||||||
nlabel => 'hardware.temperature.celsius',
|
|
||||||
instances => 'processor',
|
|
||||||
value => $result->{mtxrHlProcessorTemperature} / 10,
|
value => $result->{mtxrHlProcessorTemperature} / 10,
|
||||||
warning => $warn,
|
instance => 2,
|
||||||
critical => $crit
|
name => 'processor',
|
||||||
|
description => 'processor temperature'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (keys %{$self->{results}}) {
|
||||||
|
next if (! /^$mapping_gauge->{unit}->{oid}\.(\d+)/);
|
||||||
|
next if ($map_gauge_unit->{ $self->{results}->{$_} } ne 'celsius');
|
||||||
|
|
||||||
|
$result = $self->{snmp}->map_instance(mapping => $mapping_gauge, results => $self->{results}, instance => $1);
|
||||||
|
check_temperature(
|
||||||
|
$self,
|
||||||
|
value => $result->{value},
|
||||||
|
instance => $1,
|
||||||
|
name => $result->{name},
|
||||||
|
description => "sensor temperature '$result->{name}'"
|
||||||
);
|
);
|
||||||
$self->{components}->{temperature}->{total}++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,42 +22,71 @@ package network::mikrotik::snmp::mode::components::voltage;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use network::mikrotik::snmp::mode::components::resources qw($map_gauge_unit $mapping_gauge);
|
||||||
|
|
||||||
my $mapping = {
|
my $mapping = {
|
||||||
mtxrHlVoltage => { oid => '.1.3.6.1.4.1.14988.1.1.3.8' },
|
mtxrHlVoltage => { oid => '.1.3.6.1.4.1.14988.1.1.3.8' }
|
||||||
};
|
};
|
||||||
|
|
||||||
sub load {}
|
sub load {}
|
||||||
|
|
||||||
|
sub check_voltage {
|
||||||
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
|
$self->{output}->output_add(
|
||||||
|
long_msg => sprintf(
|
||||||
|
"voltage '%s' is %s V",
|
||||||
|
$options{name},
|
||||||
|
$options{value}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'voltage', instance => $options{instance}, value => $options{value});
|
||||||
|
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
||||||
|
$self->{output}->output_add(
|
||||||
|
severity => $exit,
|
||||||
|
short_msg => sprintf("Voltage '%s' is %s V", $options{name}, $options{value})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$self->{output}->perfdata_add(
|
||||||
|
nlabel => 'hardware.voltage.volt',
|
||||||
|
unit => 'V',
|
||||||
|
instances => $options{name},
|
||||||
|
value => $options{value},
|
||||||
|
warning => $warn,
|
||||||
|
critical => $crit
|
||||||
|
);
|
||||||
|
$self->{components}->{voltage}->{total}++;
|
||||||
|
}
|
||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
$self->{output}->output_add(long_msg => "Checking voltage");
|
$self->{output}->output_add(long_msg => "Checking voltage");
|
||||||
$self->{components}->{voltage} = {name => 'voltage', total => 0, skip => 0};
|
$self->{components}->{voltage} = {name => 'voltage', total => 0, skip => 0};
|
||||||
return if ($self->check_filter(section => 'voltage'));
|
return if ($self->check_filter(section => 'voltage'));
|
||||||
|
|
||||||
my $instance = 0;
|
|
||||||
my ($exit, $warn, $crit, $checked);
|
|
||||||
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => $instance);
|
|
||||||
|
|
||||||
if (defined($result->{mtxrHlVoltage}) && $result->{mtxrHlVoltage} =~ /[0-9]+/) {
|
|
||||||
$self->{output}->output_add(long_msg => sprintf("Voltage is '%s' V", $result->{mtxrHlVoltage} / 10));
|
|
||||||
|
|
||||||
($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'voltage', instance => $instance, value => $result->{mtxrHlVoltage} / 10);
|
my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $self->{results}, instance => 0);
|
||||||
if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) {
|
if (defined($result->{mtxrHlVoltage}) && $result->{mtxrHlVoltage} =~ /[0-9]+/) {
|
||||||
$self->{output}->output_add(
|
check_voltage(
|
||||||
severity => $exit,
|
$self,
|
||||||
short_msg => sprintf("Voltage is '%s' V", $result->{mtxrHlVoltage} / 10)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$self->{output}->perfdata_add(
|
|
||||||
label => 'voltage', unit => 'V',
|
|
||||||
nlabel => 'hardware.voltage.volt',
|
|
||||||
value => $result->{mtxrHlVoltage} / 10,
|
value => $result->{mtxrHlVoltage} / 10,
|
||||||
warning => $warn,
|
instance => 1,
|
||||||
critical => $crit
|
name => 'system'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (keys %{$self->{results}}) {
|
||||||
|
next if (! /^$mapping_gauge->{unit}->{oid}\.(\d+)/);
|
||||||
|
next if ($map_gauge_unit->{ $self->{results}->{$_} } ne 'dV');
|
||||||
|
|
||||||
|
$result = $self->{snmp}->map_instance(mapping => $mapping_gauge, results => $self->{results}, instance => $1);
|
||||||
|
check_voltage(
|
||||||
|
$self,
|
||||||
|
value => $result->{value} / 10,
|
||||||
|
instance => $1,
|
||||||
|
name => $result->{name}
|
||||||
);
|
);
|
||||||
$self->{components}->{voltage}->{total}++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,18 +28,18 @@ use warnings;
|
||||||
sub set_system {
|
sub set_system {
|
||||||
my ($self, %options) = @_;
|
my ($self, %options) = @_;
|
||||||
|
|
||||||
$self->{regexp_threshold_numeric_check_section_option} = '^(temperature|voltage|fan|current|psu)$';
|
$self->{regexp_threshold_numeric_check_section_option} = '^(?:temperature|voltage|fan|current|psu)$';
|
||||||
|
|
||||||
$self->{cb_hook2} = 'snmp_execute';
|
$self->{cb_hook2} = 'snmp_execute';
|
||||||
$self->{thresholds} = {
|
$self->{thresholds} = {
|
||||||
'psu.primary' => [
|
'psu.primary' => [
|
||||||
['true', 'OK'],
|
['true', 'OK'],
|
||||||
['false', 'CRITICAL'],
|
['false', 'CRITICAL']
|
||||||
],
|
],
|
||||||
'psu.backup' => [
|
'psu.backup' => [
|
||||||
['true', 'OK'],
|
['true', 'OK'],
|
||||||
['false', 'CRITICAL'],
|
['false', 'CRITICAL']
|
||||||
],
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
$self->{components_path} = 'network::mikrotik::snmp::mode::components';
|
$self->{components_path} = 'network::mikrotik::snmp::mode::components';
|
||||||
|
@ -56,7 +56,7 @@ sub snmp_execute {
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
my ($class, %options) = @_;
|
my ($class, %options) = @_;
|
||||||
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1);
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$options{options}->add_options(arguments => {
|
$options{options}->add_options(arguments => {
|
||||||
|
|
|
@ -30,7 +30,7 @@ sub new {
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
|
|
||||||
$self->{version} = '1.0';
|
$self->{version} = '1.0';
|
||||||
%{$self->{modes}} = (
|
$self->{modes} = {
|
||||||
'cpu' => 'snmp_standard::mode::cpu',
|
'cpu' => 'snmp_standard::mode::cpu',
|
||||||
'disk' => 'network::mikrotik::snmp::mode::disk',
|
'disk' => 'network::mikrotik::snmp::mode::disk',
|
||||||
'environment' => 'network::mikrotik::snmp::mode::environment',
|
'environment' => 'network::mikrotik::snmp::mode::environment',
|
||||||
|
@ -41,8 +41,8 @@ sub new {
|
||||||
'memory' => 'network::mikrotik::snmp::mode::memory',
|
'memory' => 'network::mikrotik::snmp::mode::memory',
|
||||||
'signal' => 'network::mikrotik::snmp::mode::signal',
|
'signal' => 'network::mikrotik::snmp::mode::signal',
|
||||||
'time' => 'snmp_standard::mode::ntp',
|
'time' => 'snmp_standard::mode::ntp',
|
||||||
'uptime' => 'snmp_standard::mode::uptime',
|
'uptime' => 'snmp_standard::mode::uptime'
|
||||||
);
|
};
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue