aboutsummaryrefslogtreecommitdiff
path: root/contrib/check_fan_cpq_present
diff options
context:
space:
mode:
authorGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-09-02 13:16:24 +0200
committerGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2013-09-02 13:16:24 +0200
commitb15adb7762b6caaecaa83637abfcf5fdb4802092 (patch)
tree64eddbe2aa1a7f98a140be0f7973f05d7a781ae0 /contrib/check_fan_cpq_present
parentc4d5882b9e1d07c7b61091062b7d085fa5f00284 (diff)
downloadmonitoring-plugins-b15adb7762b6caaecaa83637abfcf5fdb4802092.tar.gz
Remove "contrib" plugins
These days, sites such as "Nagios Exchange" are a much better place for publishing plugins not maintained by the Plugins Development Team.
Diffstat (limited to 'contrib/check_fan_cpq_present')
-rw-r--r--contrib/check_fan_cpq_present133
1 files changed, 0 insertions, 133 deletions
diff --git a/contrib/check_fan_cpq_present b/contrib/check_fan_cpq_present
deleted file mode 100644
index 0bd13909..00000000
--- a/contrib/check_fan_cpq_present
+++ /dev/null
@@ -1,133 +0,0 @@
-#!/usr/bin/perl
-#
-#
-# check_most.pl -i <ip address> -p <port> -c community -o <oid> [warn] [critical]
-#
-# NetSaint host script to get the disk usage from NT snmp
-#
-# Changes and Modifications
-# =========================
-# 3-Aug-2000 - Xavier Dusart
-# Created
-# 2003 - Rainer Duffner
-
-BEGIN {
- if ($0 =~ m/^(.*?)[\/\\]([^\/\\]+)$/) {
- $runtimedir = $1;
- $PROGNAME = $2;
- }
-}
-
-
-
-require 5.004;
-use POSIX;
-#use strict;
-use Getopt::Std ;
-use BER;
-require 'SNMP_Session.pm';
-use vars qw($opt_H $opt_p $opt_C $opt_f $opt_h $PROGNAME);
-use lib $main::runtimedir;
-use utils qw($TIMEOUT %ERRORS &print_revision &usage &support);
-use snmputil qw(%CPQ_LOCALE %CPQ_FAN_PRESENT %CPQ_FAN_OVERALL_COND %CPQ_FAN_SPEED);
-
-delete @ENV{qw(IFS CDPATH ENV BASH_ENV)}; # Make %ENV safer
-
-getopts('H:p:C:f:hV') ;
-
-my $ip_address=undef ;
-
-if ($opt_h) {&help();}
-
-if ($opt_H =~ m/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|[a-zA-Z][-a-zA-Z0-9]*(\.[a-zA-Z][-a-zA
--Z0-9]*)*)$/) {
- $ip_address = $opt_H ;
- }
-else {
- usage();
- print "IP-Address format wrong\n";
- exit $ERRORS{'UNKNOWN'};
- }
-
-#if ($opt_p =~ m/^[0-9]
-
-my $port = $opt_p;
-
-my $community = $opt_C;
-
-my $fan = $opt_f ;
-
-#my $err_counter=0 ;
-#my $err_status="";
-
- my $fan_locale_oid = encode_oid (1,3,6,1,4,1,232,6,2,6,7,1,3,0,$fan );
-# not used for the moment - gives no usable output
-# if reused, enter at end of list to avoid renumbering !
- my $fan_present_oid = encode_oid (1,3,6,1,4,1,232,6,2,6,7,1,4,0,$fan );
- my $fan_speed_oid = encode_oid (1,3,6,1,4,1,232,6,2,6,7,1,6,0,$fan );
- my $fan_condition_oid = encode_oid (1,3,6,1,4,1,232,6,2,6,7,1,9,0,$fan );
- my $count=1 ;
- my $label ;
- my @r_array=();
- my $q ;
- my $diff ;
- $warning=$warning/100 ;
- $crititcal=$critical/100 ;
-
-
-# get temperature, temperature_threshold bfore shutdown
- my $session=SNMP_Session->open ($ip_address, $community, $port) || die "couldn't open SNMP-session to host" ;
-
- if ($session->get_request_response ($fan_present_oid, $fan_locale_oid, $fan_speed_oid, $fan_condition_oid )) {
- (my $bindings) = $session->decode_get_response ($session->{pdu_buffer});
- while ($bindings ne '') {
- ($binding, $bindings) = &decode_sequence ($bindings) ;
- ($oid,$value) = &decode_by_template ($binding,"%O%@");
- $r_array[$count]=&pretty_print($value);
- $count++;
- }
- } else {
- print "No response from agent\n";
- exit $ERRORS{'CRITICAL'};
- }
- $result_fan_present= $r_array[1];
- $result_fan_locale= $r_array[2];
- $result_fan_speed= $r_array[3];
- $result_fan_condition=$r_array[4];
-
-
- if ( $result_fan_present != 3 || $result_fan_speed !=2 ) {
- print "Fan ". $fan . " ".$CPQ_LOCALE{$result_fan_locale}. " (".$result_fan_locale.") - Critical: Fan ".$CPQ_FAN_PRESENT{$result_fan_present}.". Speed: ". $CPQ_FAN_SPEED{$result_fan_speed}.". Overall condition: ". $CPQ_FAN_OVERALL_COND{$result_fan_condition} ."\n" ;
- exit $ERRORS{'CRITICAL'} ;
- }
- else {
- print "Fan " .$fan . " ".$CPQ_LOCALE{$result_fan_locale}. " (".$result_fan_locale.") - OK: Fan ".$CPQ_FAN_PRESENT{$result_fan_present}.". Speed: ". $CPQ_FAN_SPEED{$result_fan_speed}.". Overall condition: ". $CPQ_FAN_OVERALL_COND{$result_fan_condition} ."\n" ;
- exit $ERRORS{'OK'} ;
- }
-
-
-sub print_usage () {
- print "Usage: $PROGNAME -H <host> -p <port> -C <community> -f <fannumber>\n";
- }
-
-sub print_help () {
- print_revision($PROGNAME,'$Revision: 1113 $\n ');
- print "Copyright (c) 2003 Rainer Duffner\n ";
- print_usage();
- print "\n";
- print "<host> = IP-Address or DNS-Name of the W2K-Server\n";
- print "<port> = SNMP-Port (normaly 161)\n";
- print "<community> = SNMP v1 community\n";
- print "<fannumber> = Fannumber (1, 2, 3 etc.)\n";
- }
-
-sub version () {
- print_revision($PROGNAME,'$Revision: 1113 $ ');
- exit $ERRORS{'OK'};
-}
-
-sub help () {
- print_help();
- exit $ERRORS{'OK'};
-}
-