diff options
Diffstat (limited to 'god/Monitoring/nagios/plugins')
92 files changed, 6257 insertions, 0 deletions
| diff --git a/god/Monitoring/nagios/plugins/check.bat b/god/Monitoring/nagios/plugins/check.bat new file mode 100755 index 00000000..e69de29b --- /dev/null +++ b/god/Monitoring/nagios/plugins/check.bat diff --git a/god/Monitoring/nagios/plugins/check.sh b/god/Monitoring/nagios/plugins/check.sh new file mode 100755 index 00000000..9e62fbee --- /dev/null +++ b/god/Monitoring/nagios/plugins/check.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +echo "When in doubt... blow it up. | cpu=100%" +#sleep 1.5 +exit 0 diff --git a/god/Monitoring/nagios/plugins/check_apt b/god/Monitoring/nagios/plugins/check_aptBinary files differ new file mode 100755 index 00000000..2371c32d --- /dev/null +++ b/god/Monitoring/nagios/plugins/check_apt diff --git a/god/Monitoring/nagios/plugins/check_bgpstate b/god/Monitoring/nagios/plugins/check_bgpstate new file mode 100755 index 00000000..645d7505 --- /dev/null +++ b/god/Monitoring/nagios/plugins/check_bgpstate @@ -0,0 +1,215 @@ +#!/usr/bin/perl -w +# +# check_bgpstate.pl - nagios plugin  +# +# Copyright (C) 2000 Christoph Kron +# +# 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, or (at your option) any later version. +# +# 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. +# +# +# Report bugs to: ck@zet.net +# +# 11.01.2000 Version 1.0 + + + +use strict; + +use Net::SNMP; +use Getopt::Long; +&Getopt::Long::config('auto_abbrev'); + + +# whois programm for RIPE database queries +my $whois = '/usr/bin/whois'; +my $status; +my $TIMEOUT = 30; + +# critical bgp sessions +my %uplinks = ( 1273, 'Uplink ECRC', +                1755, 'Uplink EBONE', +                3300, 'Uplink AUCS' +	      ); + +my %ERRORS = ('UNKNOWN' , '-1', +              'OK' , '0', +              'WARNING', '1', +              'CRITICAL', '2'); + + +my %bgpPeerState = (   +           '1',"idle", +           '2',"connect", +           '3',"active", +           '4',"opensent", +           '5',"openconfirm", +           '6',"established" +        ); +my $state = "UNKNOWN"; +my $answer = ""; +my $snmpkey; +my $snmpoid; +my $key; +my $community = "public"; +my $port = 161; +my @snmpoids; +my $snmpbgpPeerState = '1.3.6.1.2.1.15.3.1.2'; +my $snmpbgpPeerLocalAddr = '1.3.6.1.2.1.15.3.1.5'; +my $snmpbgpPeerRemoteAddr = '1.3.6.1.2.1.15.3.1.7'; +my $snmpbgpPeerRemoteAs = '1.3.6.1.2.1.15.3.1.9'; +my $hostname; +my $session; +my $error; +my $response; +my %bgpStatus; +my $bgpestablished =0 ; +my $bgpcritical =0; +my $bgpdown =0; +my $bgpidle =0; +my $bgpmessage; +my $asname; +my $remoteas; +my @output; + +sub usage { +  printf "\nMissing arguments!\n"; +  printf "\n"; +  printf "Perl bgpstate plugin for Nagios\n"; +  printf "monitors all BGP sessions\n"; +  printf "usage: \n"; +  printf "check_bgpstate.pl -c <READCOMMUNITY> -p <PORT> <HOSTNAME>\n"; +  printf "Copyright (C) 2000 Christoph Kron\n"; +  printf "check_bgpstate.pl comes with ABSOLUTELY NO WARRANTY\n"; +  printf "This programm is licensed under the terms of the "; +  printf "GNU General Public License\n(check source code for details)\n"; +  printf "\n\n"; +  exit $ERRORS{"UNKNOWN"}; +} + +# Just in case of problems, let's not hang Nagios +$SIG{'ALRM'} = sub { +     print ("ERROR: No snmp response from $hostname (alarm)\n"); +     exit $ERRORS{"UNKNOWN"}; +}; +alarm($TIMEOUT); + + +$status = GetOptions("community=s",\$community, +                     "port=i",\$port); +if ($status == 0) +{ +        &usage; +} +   +   #shift; +   $hostname  = shift || &usage; + + +push(@snmpoids, $snmpbgpPeerState); +push(@snmpoids, $snmpbgpPeerLocalAddr); +push(@snmpoids, $snmpbgpPeerRemoteAddr); +push(@snmpoids, $snmpbgpPeerRemoteAs); + +foreach $snmpoid (@snmpoids) { + +   ($session, $error) = Net::SNMP->session( +      -hostname  => $hostname, +      -community => $community, +      -port      => $port +   ); + +   if (!defined($session)) { +      $state='UNKNOWN'; +      $answer=$error; +      print ("$state: $answer"); +      exit $ERRORS{$state}; +   } + +   if (!defined($response = $session->get_table($snmpoid))) { +      $answer=$session->error; +      $session->close; +      $state = 'CRITICAL'; +      print ("$state: $answer,$snmpkey"); +      exit $ERRORS{$state}; +   } + +   foreach $snmpkey (keys %{$response}) { +      $snmpkey =~ m/.*\.(\d+\.\d+\.\d+\.\d+$)/; +      $key =  $1; +#      printf "debug: $snmpkey: $key -> $response->{$snmpkey}\n"; +      $bgpStatus{$key}{$snmpoid} = $response->{$snmpkey}; +   } +   $session->close; +} + +foreach $key (keys %bgpStatus) { +   if ($bgpStatus{$key}{$snmpbgpPeerState} == 6 ) {  +      $bgpestablished++; +   } +   elsif ($bgpStatus{$key}{$snmpbgpPeerState} == 1 ) { +      $bgpidle++; +   } +   else {  +       $bgpdown++ ; +       if (exists($uplinks{$bgpStatus{$key}{$snmpbgpPeerRemoteAs}}) ) { +          $bgpcritical++; +       } +       @output = `$whois -T aut-num AS$bgpStatus{$key}{$snmpbgpPeerRemoteAs}`; + +   $asname = ""; +   foreach (@output) { +     if (m/as-name/) { +        $asname = $_; +        $asname =~ s/as-name://; +        last; +     } +     if ( $asname =~ "" && m/descr/ ) { +        $asname = $_; +        $asname =~ s/descr://; +     } +   } +   $asname =~ s/^\s*//; +   $asname =~ s/\s*$//; +       $bgpmessage .= sprintf("Peering with AS%s not established -> %s<BR>", +                           $bgpStatus{$key}{$snmpbgpPeerRemoteAs}, +			   $asname); +   } +} +    + +   if ($bgpdown > 0) { +      if ($bgpcritical > 0) { +         $state = 'CRITICAL'; +      } +      else { +         $state = 'WARNING'; +      } +      $answer = sprintf("host '%s', sessions up: %d, down: %d, shutdown: %d<BR>", +                        $hostname, +			$bgpestablished, +			$bgpdown, $bgpidle); +      $answer = $answer . $bgpmessage . "\n"; +   } +   else { +      $state = 'OK'; +      $answer = sprintf("host '%s', sessions up: %d, down: %d, shutdown: %d\n", +                        $hostname, +			$bgpestablished, +			$bgpdown,$bgpidle); +   } + +print ("$state: $answer"); +exit $ERRORS{$state}; + diff --git a/god/Monitoring/nagios/plugins/check_breeze b/god/Monitoring/nagios/plugins/check_breeze new file mode 100755 index 00000000..d0382e69 --- /dev/null +++ b/god/Monitoring/nagios/plugins/check_breeze @@ -0,0 +1,87 @@ +#! /usr/bin/perl -wT + + +use strict; +use Getopt::Long; +use vars qw($opt_V $opt_h $opt_w $opt_c $opt_H $opt_C $PROGNAME); +use lib "/usr/lib/nagios/plugins" ; +use utils qw(%ERRORS &print_revision &support &usage); + +$PROGNAME = "check_breeze"; + +sub print_help (); +sub print_usage (); + +$ENV{'PATH'}=''; +$ENV{'BASH_ENV'}='';  +$ENV{'ENV'}=''; + +Getopt::Long::Configure('bundling'); +GetOptions +	("V"   => \$opt_V, "version"    => \$opt_V, +	 "h"   => \$opt_h, "help"       => \$opt_h, +	 "w=s" => \$opt_w, "warning=s"  => \$opt_w, +	 "c=s" => \$opt_c, "critical=s" => \$opt_c, +	 "H=s" => \$opt_H, "hostname=s" => \$opt_H, +	 "C=s" => \$opt_C, "community=s" => \$opt_C); + +if ($opt_V) { +	print_revision($PROGNAME,'1.4.15'); +	exit $ERRORS{'OK'}; +} + +if ($opt_h) {print_help(); exit $ERRORS{'OK'};} + +($opt_H) || usage("Host name/address not specified\n"); +my $host = $1 if ($opt_H =~ /([-.A-Za-z0-9]+)/); +($host) || usage("Invalid host: $opt_H\n"); + +($opt_w) || usage("Warning threshold not specified\n"); +my $warning = $1 if ($opt_w =~ /([0-9]{1,2}|100)+/); +($warning) || usage("Invalid warning threshold: $opt_w\n"); + +($opt_c) || usage("Critical threshold not specified\n"); +my $critical = $1 if ($opt_c =~ /([0-9]{1,2}|100)/); +($critical) || usage("Invalid critical threshold: $opt_c\n"); + +($opt_C) || ($opt_C = "public") ; + +my $sig=0; +$sig = `snmpget $host $opt_C .1.3.6.1.4.1.710.3.2.3.1.3.0`; +my @test=split(/ /,$sig); +$sig=$test[2]; +$sig=int($sig); +if ($sig>100){$sig=100} + +print "Signal Strength at: $sig%\n"; + +exit $ERRORS{'CRITICAL'} if ($sig<$critical); +exit $ERRORS{'WARNING'} if ($sig<$warning); +exit $ERRORS{'OK'}; + + +sub print_usage () { +	print "Usage: $PROGNAME -H <host> [-C community] -w <warn> -c <crit>\n"; +} + +sub print_help () { +	print_revision($PROGNAME,'1.4.15'); +	print "Copyright (c) 2000 Jeffrey Blank/Karl DeBisschop + +This plugin reports the signal strength of a Breezecom wireless equipment + +"; +	print_usage(); +	print " +-H, --hostname=HOST +   Name or IP address of host to check +-C, --community=community +   SNMPv1 community (default public) +-w, --warning=INTEGER +   Percentage strength below which a WARNING status will result +-c, --critical=INTEGER +   Percentage strength below which a CRITICAL status will result + +"; +	support(); +} diff --git a/god/Monitoring/nagios/plugins/check_btcguild_miner b/god/Monitoring/nagios/plugins/check_btcguild_miner new file mode 100755 index 00000000..2e6a8de3 --- /dev/null +++ b/god/Monitoring/nagios/plugins/check_btcguild_miner @@ -0,0 +1,36 @@ +#!/usr/bin/python + +import sys +from urllib2 import urlopen +try: +  import json +  getattr(json,"load")  +except: #deal with it +  import simplejson as json + +if len(sys.argv) != 4 : +    print "** Usage: %s APIKEY WORKER_NAME LOW_WORKER_SPEED" % sys.argv[0] +    print "**  aka YOU ARE MADE OF STUPID" +    exit (3) + +API_KEY=sys.argv[1] +WORKER_NAME=sys.argv[2] +LOW_WORKER_SPEED=float(sys.argv[3]) +url="http://www.btcguild.com/api.php?api_key=%s" % API_KEY +try: +    fh = urlopen(url) +    result = json.load(fh) +except Exception,e: +    print "?? cannot parse json or connect to server: %s"% str(e) +    exit (1) + +for k,v in result["workers"].iteritems(): +    if v["worker_name"] == WORKER_NAME: +        curr = v["hash_rate"] +        if curr < LOW_WORKER_SPEED: +            print "!! %f is below expected %f" % (curr,LOW_WORKER_SPEED) +            exit (2) +        else: +            print "++ everything fine, current speed is %f" % curr +            exit(0) + diff --git a/god/Monitoring/nagios/plugins/check_by_ssh b/god/Monitorin | 
