[BACK]Return to check_hw_sensors CVS log [TXT][DIR] Up to [local] / nagios / check_hw_sensors

Diff for /nagios/check_hw_sensors/check_hw_sensors between version 1.19 and 1.20

version 1.19, 2006/12/04 23:33:53 version 1.20, 2006/12/05 00:17:47
Line 1 
Line 1 
 #!/usr/bin/perl -T  #!/usr/bin/perl -T
 # $RedRiver: check_hw_sensors,v 1.18 2006/12/02 02:15:17 andrew Exp $  # $RedRiver: check_hw_sensors,v 1.19 2006/12/04 23:33:53 andrew Exp $
 ########################################################################  ########################################################################
 # check_hw_sensors *** A nagios check for OpenBSD hw.sensors  # check_hw_sensors *** A nagios check for OpenBSD hw.sensors
 #  #
Line 16 
Line 16 
 use constant NAGIOS_OUTPUT => 1;  use constant NAGIOS_OUTPUT => 1;
   
 use POSIX;  use POSIX;
   use Config;
 use lib "/usr/local/libexec/nagios";  use lib "/usr/local/libexec/nagios";
 use lib '.';  
 use utils qw($TIMEOUT %ERRORS &print_revision &support);  use utils qw($TIMEOUT %ERRORS &print_revision &support);
   
 use Getopt::Long;  use Getopt::Long;
Line 29 
Line 29 
 my $GETCAP = '/usr/bin/getcap';  my $GETCAP = '/usr/bin/getcap';
 my $BASE   = 'hw.sensors';  my $BASE   = 'hw.sensors';
 my $DEFAULT_CONFIG = '/etc/sensorsd.conf';  my $DEFAULT_CONFIG = '/etc/sensorsd.conf';
   my $OSVer = $Config{'osvers'} || 0;
   
 my $state = 'UNKNOWN'; # tells whether the it is warning, critical, or OK  my $state = 'UNKNOWN'; # tells whether the it is warning, critical, or OK
 my %states; # This stores the count of states;  my %states; # This stores the count of states;
Line 158 
Line 159 
   
         $source = $o[0];          $source = $o[0];
         $descr  = $o[1];          $descr  = $o[1];
         $type   = $o[-2] if @o >= 4;  
         $data   = $o[-1];  
   
         $status = $o[2] if ($type && @o == 5) || @o == 4;          if ($OSVer >= 4.0) {
                   $data   = $o[2];
         unless ($type) {                  $status = $o[3];
                 foreach my $t (@Type_Map) {                  foreach my $t (@Type_Map) {
                         if ($data =~ /$t->{'regex'}/) {                          if ($data =~ /$t->{'regex'}/) {
                                 $type = $t->{'type'};                                  $type = $t->{'type'};
                                 last;                                  last;
                         }                          }
                 }                  }
           }  else {
                   $data   = $o[-1];
                   $status = $o[2] if @o == 5;
                   $type   = $o[-2];
         }          }
   
         $type ||= 'unknown';          $type ||= 'unknown';
Line 309 
Line 312 
         return $result unless ref $sensor eq 'HASH';          return $result unless ref $sensor eq 'HASH';
         $check = parse_check($sensor->{'type'}, $check) if $check;          $check = parse_check($sensor->{'type'}, $check) if $check;
   
         unless ($check) {          # It looks like doing this should be safe, from
                 if ($sensor->{'status'}) {          # src/sbin/sysctl/sysctl.c
                         # It looks like doing this should be safe, from          return $sensor->{'status'} unless $check;
                         # src/sbin/sysctl/sysctl.c  
                         $result = $sensor->{'status'}  
                 } else {  
                         return undef;  
                 }  
                 return $result;  
         }  
   
         return undef if $check eq 'IGNORE';          return undef if $check eq 'IGNORE';
   
         $result = 'OK';          $result = 'OK';
         foreach my $code ('warn', 'crit') {          foreach my $code ('warn', 'crit') {
                 if (                  if (
                         $sensor->{'type'} eq 'volts_dc' ||  
                         $sensor->{'type'} eq 'fanrpm'   ||                          $sensor->{'type'} eq 'fanrpm'   ||
                         $sensor->{'type'} eq 'raw'                          $sensor->{'type'} eq 'volts_dc' ||
                           $sensor->{'type'} eq 'amps'     ||
                           $sensor->{'type'} eq 'watthour' ||
                           $sensor->{'type'} eq 'amphour'  ||
                           $sensor->{'type'} eq 'integer'  ||
                           $sensor->{'type'} eq 'raw'      ||
                           $sensor->{'type'} eq 'percent'  ||
                           $sensor->{'type'} eq 'lux'      ||
                           $sensor->{'type'} eq 'timedelta'
                 ) {                  ) {
                         my $data = $sensor->{'data'};                          my $data = $sensor->{'data'};
                         $data =~ s/[^\d\.]//g;                          $data =~ s/[^\d\.]//g;
Line 479 
Line 482 
                         }                          }
   
                 } else {                  } else {
                           print STDERR 'Unknown Sensor Type: ',
                               $sensor->{'id'},
                               '=',
                               $sensor->{'type'},
                               "\n";
                         $result = 'UNKNOWN';                          $result = 'UNKNOWN';
                 }                  }
   
Line 516 
Line 524 
 An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)  An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)
 can be used when appropriate, or you can use the following:  can be used when appropriate, or you can use the following:
   
     volts_dc, fanrpm or raw - Anything that includes digits.      fanrpm, volts_dc, amps, watthour, amphour, integer (raw), percent,
     Both the value of the check and the value of the sensor      lux or timedelta - Anything that includes digits.  Both the value of
     response that are not either a digit or period are stripped      the check and the value of the sensor response that are not either a
     and then the two resultant values are compared.      digit or period are stripped and then the two resultant values are
       compared.
   
     temp - Can be as above, but if the entry has an F in it,      temp - Can be as above, but if the entry has an F in it,
     it compares farenheit, otherwise it uses celcius.      it compares farenheit, otherwise it uses celcius.
   
     indicator or drive - does a case sensitive match of each      indicator or drive - does a case sensitive match of each
     entry in the comma separated list and if it does not match      entry in the comma separated list and if it does not match
     any of the entries, it matches the status.      any of the entries, it sets the status.
   
 The entries 'crit' or 'warn' (or the -c or -w on the command line)  The entries 'crit' or 'warn' (or the -c or -w on the command line)
 may be a RANGE or a comma separated list of acceptable values.  may be a RANGE or a comma separated list of acceptable values.

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>