MyMonPlugins/check_junos.pl

455 lines
12 KiB
Perl
Raw Normal View History

#!/usr/bin/perl
#############################################################################
# (c) 2001, 2003 Juniper Networks, Inc. #
# (c) 2011-2012 Sebastian "tokkee" Harl <sh@teamix.net> #
# and team(ix) GmbH, Nuernberg, Germany #
# #
# This file is part of "team(ix) Monitoring Plugins" #
# URL: http://oss.teamix.org/projects/monitoringplugins/ #
# #
# All rights reserved. #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions #
# are met: #
# 1. Redistributions of source code must retain the above copyright #
# notice, this list of conditions and the following disclaimer. #
# 2. Redistributions in binary form must reproduce the above copyright #
# notice, this list of conditions and the following disclaimer in the #
# documentation and/or other materials provided with the distribution. #
# 3. The name of the copyright owner may not be used to endorse or #
# promote products derived from this software without specific prior #
# written permission. #
# #
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR #
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED #
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE #
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, #
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES #
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR #
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) #
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, #
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING #
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE #
# POSSIBILITY OF SUCH DAMAGE. #
#############################################################################
use strict;
use warnings;
use utf8;
use JUNOS::Device;
use FindBin qw( $Bin );
use lib "$Bin/perl/lib";
use Nagios::Plugin::JUNOS;
binmode STDOUT, ":utf8";
# TODO:
# * chassis_routing_engine: show chassis routing-engine (-> number and status)
my $plugin = Nagios::Plugin::JUNOS->new(
plugin => 'check_junos',
shortname => 'check_junos',
version => '0.1',
url => 'http://oss.teamix.org/projects/monitoringplugins',
blurb => 'Monitor Juniper™ Switches.',
usage =>
"Usage: %s [-v|--verbose] [-H <host>] [-p <port>] [-t <timeout]
[-U <user>] [-P <password] check-tuple [...]",
license =>
"This nagios plugin is free software, and comes with ABSOLUTELY NO WARRANTY.
It may be used, redistributed and/or modified under the terms of the 3-Clause
BSD License (see http://opensource.org/licenses/BSD-3-Clause).",
extra => "
2011-12-22 08:17:12 +00:00
This plugin connects to a Juniper Switch device and checks various of its
components.
A check-tuple consists of the name of the check and, optionally, a \"target\"
which more closely specifies which characteristics should be checked, and
warning and critical thresholds:
checkname[,target[,warning[,critical]]]
The following checks are available:
* interfaces: Status of interfaces. If a target is specified, only the
specified interface is taken into account.
If an aggregated interface is encountered, the physical interfaces will
be checked as well.
* chassis_environment: Check the status of verious system components
(as provided by 'show chassis environment'). If specified, the thresholds
will be checked against the temperature of the components.
* system_storage: Check the amount of used space of system filesystems. The
threshold will be checked against the amount (percent) of used space.
Warning and critical thresholds may be specified in the format documented at
http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT.",
);
my %checks = (
interfaces => \&check_interfaces,
chassis_environment => \&check_chassis_environment,
system_storage => \&check_system_storage,
);
my $junos = undef;
$plugin->add_common_args();
foreach my $check (keys %checks) {
$plugin->add_check_impl($check, $checks{$check});
}
$plugin->set_default_check('chassis_environment');
# configure removes any options from @ARGV
$plugin->configure();
$plugin->set_checks(@ARGV);
$junos = $plugin->connect();
$plugin->run_checks();
my ($code, $msg) = $plugin->check_messages(join => ', ');
$plugin->nagios_exit($code, $msg);
sub check_interface
{
my $plugin = shift;
my $iface = shift;
my $opts = shift || {};
my @targets = @_;
my $name = $plugin->get_query_object_value($iface, 'name');
my $admin_status = $plugin->get_query_object_value($iface, 'admin-status');
if ($admin_status !~ m/^up$/) {
if ((grep { $name =~ m/^$_$/; } @targets)
|| ($opts->{'with_description'} &&
$plugin->get_query_object_value($iface, 'description'))) {
$plugin->add_message(CRITICAL,
"$name is not enabled");
return -1;
}
return 1;
}
if ($plugin->get_query_object_value($iface, 'oper-status') !~ m/^up$/i) {
return 0;
}
$plugin->add_perfdata(
label => "'$name-input-bytes'",
value => $plugin->get_query_object_value($iface,
['traffic-statistics', 'input-bytes']),
min => 0,
max => undef,
uom => 'B',
threshold => undef,
);
$plugin->add_perfdata(
label => "'$name-output-bytes'",
value => $plugin->get_query_object_value($iface,
['traffic-statistics', 'output-bytes']),
min => 0,
max => undef,
uom => 'B',
threshold => undef,
);
return 1;
}
sub get_interfaces
{
my $plugin = shift;
my $opts = shift || {};
my @targets = @_;
my @ifaces = ();
my @ret = ();
my $cmd = 'get_interface_information';
my $res;
my $args = { detail => 1 };
if ((scalar(@targets) == 1) && (! $opts->{'with_description'})) {
$args->{'interface_name'} = $targets[0];
}
$res = $plugin->send_query($cmd, $args);
if (! ref $res) {
$plugin->die($res);
}
@ifaces = $res->getElementsByTagName('physical-interface');
@targets = map { s/\*/\.\*/g; s/\?/\./g; $_; } @targets;
if (scalar(@targets)) {
@ret = grep {
my $i = $_;
grep { $plugin->get_query_object_value($i, 'name') =~ m/^$_$/ } @targets;
} @ifaces;
}
elsif (! $opts->{'with_description'}) {
@ret = @ifaces;
}
if ($opts->{'with_description'}) {
foreach my $iface (@ifaces) {
my $name = $plugin->get_query_object_value($iface, 'name');
if ($plugin->get_query_object_value($iface, 'description')
&& (! grep { m/^$name$/; } @targets)) {
push @ret, $iface;
}
}
}
{
my @i = map { $plugin->get_query_object_value($_, 'name'). " => "
. $plugin->get_query_object_value($_, 'oper-status') } @ret;
$plugin->verbose(3, "Interfaces: " . join(", ", @i));
}
return @ret;
}
sub check_interfaces
{
my $plugin = shift;
my $junos = shift;
my @targets = @_;
my $opts = {
with_description => 0,
};
if (grep { m/^\@with_description$/; } @targets) {
$opts->{'with_description'} = 1;
@targets = grep { ! m/^\@with_description$/; } @targets;
}
my @interfaces = get_interfaces($plugin, $opts, @targets);;
my $down_count = 0;
my @down_ifaces = ();
my $phys_down_count = 0;
my @phys_down_ifaces = ();
my $have_lag_ifaces = 0;
foreach my $iface (@interfaces) {
my $name = $plugin->get_query_object_value($iface, 'name');
my $status = check_interface($plugin, $iface, $opts, @targets);
if ($status == 0) {
++$down_count;
push @down_ifaces, $name;
}
if ($status <= 0) {
# disabled or down
next;
}
if ($name !~ m/^ae/) {
next;
}
$have_lag_ifaces = 1;
my @markers = $plugin->get_query_object($iface,
['logical-interface', 'lag-traffic-statistics', 'lag-marker']);
if (! @markers) {
print STDERR "Cannot get marker for non-LACP interfaces yet!\n";
next;
}
foreach my $marker (@markers) {
my $phy_name = $plugin->get_query_object_value($marker, 'name');
$phy_name =~ s/\.\d+$//;
$plugin->verbose(3, "Quering physical interface '$phy_name' "
. "for $name.");
my @phy_interfaces = get_interfaces($plugin, {}, $phy_name);
foreach my $phy_iface (@phy_interfaces) {
if (check_interface($plugin, $phy_iface, {}, $phy_name) == 0) {
++$phys_down_count;
push @phys_down_ifaces, "$name -> $phy_name";
}
}
}
}
if ($down_count > 0) {
$plugin->add_message(CRITICAL, $down_count
. " interfaces down (" . join(", ", @down_ifaces) . ")");
}
if ($phys_down_count > 0) {
$plugin->add_message(WARNING, $phys_down_count
. " LAG member interfaces down ("
. join(", ", @phys_down_ifaces) . ")");
}
if ((! $down_count) && (! $phys_down_count)) {
if (! scalar(@targets)) {
$plugin->add_message(OK, "all interfaces up"
. ($have_lag_ifaces
? " (including all LAG member interfaces)" : ""));
}
else {
$plugin->add_message(OK, "interface"
. (scalar(@targets) == 1 ? " " : "s ")
. join(", ", @targets) . " up"
. ($have_lag_ifaces
? " (including all LAG member interfaces)" : ""));
}
}
}
sub check_chassis_environment
{
my $plugin = shift;
my $junos = shift;
my @targets = @_;
my $res = $plugin->send_query('get_environment_information');
my %status_map = (
OK => OK,
Testing => UNKNOWN,
Check => UNKNOWN,
Failed => CRITICAL,
Absent => CRITICAL,
);
my $items_count = 0;
my $items_ok = 0;
my $class = "";
foreach my $item ($plugin->get_query_object($res, 'environment-item')) {
my $name = $plugin->get_query_object_value($item, 'name');
if (scalar(@targets) && (! grep { m/^$name$/ } @targets)) {
next;
}
if ($plugin->get_query_object_value($item, 'class')) {
$class = $plugin->get_query_object_value($item, 'class');
}
my $status = $plugin->get_query_object_value($item, 'status');
if ($status eq "Absent") {
if (! scalar(@targets)) {
next;
}
# else: check this component
}
my $state = UNKNOWN;
if (defined $status_map{$status}) {
$state = $status_map{$status};
}
++$items_count;
if ($state == OK) {
++$items_ok;
}
else {
$plugin->add_message($state, $class . " $name: status " .
$status);
}
my $temp = $plugin->get_query_object_value($item, 'temperature');
if (! $temp) {
next;
}
($temp) = $temp =~ m/(\d+) degrees C/;
if (! defined($temp)) {
next;
}
$state = $plugin->check_threshold($temp);
if ($state != OK) {
$plugin->add_message($state, $class
. " $name: ${temp} degrees C");
}
my $label = "$name-temp";
$label =~ s/ /_/g;
$plugin->add_perfdata(
label => "'$label'",
value => $temp,
min => undef,
max => undef,
uom => '',
threshold => $plugin->threshold(),
);
}
if (! $items_count) {
$plugin->add_message(UNKNOWN, "no components found");
}
elsif ($items_count == $items_ok) {
$plugin->add_message(OK, "$items_ok components OK");
}
else {
$plugin->add_message(WARNING,
"$items_ok / $items_count components OK");
}
}
sub check_system_storage
{
my $plugin = shift;
my $junos = shift;
my @targets = @_;
my $res = $plugin->send_query('get_system_storage');
foreach my $re ($plugin->get_query_object($res,
'multi-routing-engine-item')) {
my $re_name = $plugin->get_query_object_value($re, 're-name');
foreach my $fs ($plugin->get_query_object($re,
['system-storage-information', 'filesystem'])) {
my $name = $plugin->get_query_object_value($fs, 'filesystem-name');
my $mnt_pt = $plugin->get_query_object_value($fs, 'mounted-on');
if (scalar(@targets) && (! grep { m/^$name$/ } @targets)
&& (! grep { m/^$mnt_pt$/ } @targets)) {
next;
}
my $used = $plugin->get_query_object_value($fs, 'used-percent') + 0;
my $state = $plugin->check_threshold($used);
if ($state != OK) {
$plugin->add_message($state, "$re_name $mnt_pt: "
. "$used\% used");
}
$plugin->add_perfdata(
label => "'$re_name-$mnt_pt'",
value => $used,
min => 0,
max => 100,
uom => '%',
threshold => $plugin->threshold(),
);
}
}
}