[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.6 and 1.33

version 1.6, 2006/05/02 20:59:47 version 1.33, 2009/11/10 23:11:18
Line 1 
Line 1 
 #!/usr/bin/perl  #!/usr/bin/perl -T
 # $RedRiver: check_hw_sensors,v 1.5 2006/05/02 19:49:29 andrew Exp $  # $RedRiver: check_hw_sensors,v 1.32 2009/11/10 19:46:06 andrew Exp $
 ########################################################################  ########################################################################
 # check_hw_sensors *** A nagios check for OpenBSD hw.sensors  # check_hw_sensors *** A nagios check for OpenBSD sysctl hw.sensors
 #  #
 # 2006.05.01 #*#*# andrew fresh <andrew@mad-techies.org>  # 2006.05.01 #*#*# andrew fresh <andrew@afresh1.com>
 ########################################################################  ########################################################################
 # TODO:  
 #   Really need to fix the documentation issue.  
 #  
 #   I want the ability to just check the "status" entry that is in some output.  For example the OK here:  
 #     hw.sensors.1=esm0, CPU 1, OK, temp, 31.00 degC / 87.80 degF  
 ########################################################################  
 use strict;  use strict;
 use warnings;  use warnings;
   
 #use Data::Dumper;  local %ENV = ();
   
 use constant NAGIOS_OUTPUT => 1;  my $NAGIOS_OUTPUT => 1;
   
   my $LICENSE = <<'EOL';
   Copyright (c) 2009 Andrew Fresh <andrew@afresh1.com>
   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.
   
   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   EOL
   
 use POSIX;  use POSIX;
 use lib "/usr/local/libexec/nagios";  use Config;
 #use lib $ENV{'HOME'};  use lib '/usr/local/libexec/nagios';
 use utils qw($TIMEOUT %ERRORS &print_revision &support);  use utils qw($TIMEOUT %ERRORS &support);
   
 use Getopt::Long;  use Getopt::Long;
 Getopt::Long::Configure('bundling');  Getopt::Long::Configure('bundling');
   
 my $PROGNAME = "check_hw_sensors";  my $PROGNAME = 'check_hw_sensors';
   
 my $SYSCTL = '/sbin/sysctl';  my $SYSCTL         = '/sbin/sysctl';
 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 $opt_V;
 my $filename;  my $opt_h;
 my $sensor;  my $IGNORE_STATUS;
 my $warning;  my $FILENAME;
 my $critical;  my $SENSOR;
 my $opt_h ;  my $WARNING;
 my $opt_V ;  my $CRITICAL;
   
 my $CHECK_SENSOR = $BASE;  
 my %CHECKS;  
 my %SENSORS;  
   
 #Option checking  #Option checking
 my $status = GetOptions(  my $getopt_status = GetOptions(
         "version|V"    => \$opt_V,      'version|V'       => \$opt_V,
         "help|h"       => \$opt_h,      'help|h'          => \$opt_h,
         "filename|f:s" => \$filename,      'ignore-status|i' => \$IGNORE_STATUS,
         "sensor|s=s"   => \$sensor,      'filename|f:s'    => \$FILENAME,
         "warning|w=s"  => \$warning,      'sensor|s=s'      => \$SENSOR,
         "critical|c=s" => \$critical,      'warning|w=s'     => \$WARNING,
       'critical|c=s'    => \$CRITICAL,
 );  );
   
 # set the default this way so it only happens if someone typed -f or --filename  
 $filename = $DEFAULT_CONFIG if (defined $filename && $filename eq '');  
   
 if ($status == 0) {  if ( $getopt_status == 0 ) {
         print_help() ;      print_help();
         exit $ERRORS{'OK'};      exit $ERRORS{'OK'};
 }  }
   
 if ($opt_V) {  if ($opt_V) {
         print_revision($PROGNAME,'$Revision$ ');      print_revision( $PROGNAME, '$Revision$ ' );
         exit $ERRORS{'OK'};      exit $ERRORS{'OK'};
 }  }
   
 if ($opt_h) {  if ($opt_h) {
         print_help();      print_help();
         exit $ERRORS{'OK'};      exit $ERRORS{'OK'};
 }  }
   
 unless ( (  # set the default this way so it only happens if someone typed -f or --filename
                 defined $filename ||  $FILENAME = $DEFAULT_CONFIG if ( defined $FILENAME && $FILENAME eq q{} );
                 (defined $sensor && ($warning || $critical))  
          ) &&  
                 ( (!defined $filename) || (!defined $sensor) )  
 ) {  
         print_help();  
         exit $ERRORS{'OK'};  
 }  
   
   # Stuff is output in this file by print_sensor()
   # http://www.openbsd.org/cgi-bin/cvsweb/src/sbin/sysctl/sysctl.c
   my @TYPE_MAP = (
       {   type  => 'temp',
           regex => qr/\sdegC$/xms,
       },
       {   type  => 'fanrpm',
           regex => qr/\sRPM$/xms,
       },
       {   type  => 'volts_dc',
           regex => qr/\sV\sDC$/xms,
       },
       {   type  => 'amps',
           regex => qr/\sA$/xms,
       },
       {   type  => 'watthour',
           regex => qr/\sWh$/xms,
       },
       {   type  => 'amphour',
           regex => qr/\sAh$/xms,
       },
       {   type  => 'indicator',
           regex => qr/^(On|Off)$/xms,
       },
       {   type  => 'integer',
           regex => qr/\sraw$/xms,
       },
       {   type  => 'percent',
           regex => qr/\s\%$/xms,
       },
       {   type  => 'lux',
           regex => qr/\slx$/xms,
       },
       {   type  => 'drive',
           regex => qr/^drive\s/xms,
       },
       {   type  => 'timedelta',
           regex => qr/\ssecs$/xms,
       },
   );
   
 if (defined $sensor) {  my $CHECK_SENSOR = $BASE;
         if ($sensor !~ /^$BASE/) {  my %CHECKS;
                 $sensor = $BASE . '.' . $sensor;  if ( defined $SENSOR ) {
         }      if ( $SENSOR !~ /^$BASE/xms ) {
         $CHECK_SENSOR = $sensor;          $SENSOR = join q{.}, $BASE, $SENSOR;
       }
       $CHECK_SENSOR = $SENSOR;
   
         $CHECKS{$sensor} = {      $CHECKS{$SENSOR}{'warn'} = $WARNING;
                 'warn' => $warning,      $CHECKS{$SENSOR}{'crit'} = $CRITICAL;
                 'crit' => $critical,  
         };  
 } elsif (defined $filename) {  
         %CHECKS = parse_file($filename);  
 }  }
   elsif ( defined $FILENAME ) {
       %CHECKS = read_file($FILENAME);
   }
   
 open my $sysctl, "-|", $SYSCTL, $CHECK_SENSOR  my @SENSORS = read_sensors($CHECK_SENSOR);
     or die "Couldn't open sysctl: $!";  my %STATES = check_sensors( \@SENSORS, \%CHECKS,
 while (<$sysctl>) {      { IGNORE_STATUS => $IGNORE_STATUS } );
 #while (<>) {  
         chomp;  
         my ($id, $output) = split /=/;  
         my @o = split /,\s*/, $output;  
   
         my $source = $o[0];  my $have_results = 0;
         my $descr  = $o[1];  $state = 'OK';
         my $status = $o[2] if @o == 5;  foreach my $error ( sort { $ERRORS{$b} <=> $ERRORS{$a} } keys %ERRORS ) {
         my $type   = $o[-2];      if ( exists $STATES{$error} ) {
         my $data   = $o[-1];          $have_results++;
           $state = $error if $ERRORS{$state} < $ERRORS{$error};
   
         $SENSORS{$id} = {          if ($NAGIOS_OUTPUT) {
                 id          => $id,              print "$error (" . scalar( @{ $STATES{$error} } ) . ")";
                 output      => $output,              if ( $error ne 'OK' ) {
                 source      => $source,                  s/\s+/ /gxms;
                 description => $descr,                  print '<br>';
                 status      => $status,                  print map {" - $_<br>"} @{ $STATES{$error} };
                 type        => $type,              }
                 data        => $data,          }
         };          else {
               print "$error (" . scalar( @{ $STATES{$error} } ) . "):\n";
               foreach ( @{ $STATES{$error} } ) {
                   print "   $_\n";
               }
           }
       }
 }  }
 close $sysctl;  if ( $have_results == 0 ) {
       print "No results found\n";
 sub as_if_numeric {  
         my $_a = $a;  
         my $_b = $b;  
         $_a =~ s/\D//g;  
         $_b =~ s/\D//g;  
         $_a <=> $_b;  
 }  }
   exit $ERRORS{$state};
   
 foreach my $check (sort as_if_numeric keys %CHECKS) {  sub read_sensors {
         if (exists $SENSORS{$check}) {      my ($sensor) = @_;
                 my $r = check_sensor($CHECKS{$check}, $SENSORS{$check});      my @S;
                 push @{ $states{ $r } },      open my $sysctl, '-|', $SYSCTL, $sensor
                         $check . '=' . $SENSORS{$check}{'output'};          or die "Couldn't open sysctl: $!\n";
         } else {      while (<$sysctl>) {
                 # XXX Error missing sensor          chomp;
                 push @{ $states{'UNKNOWN'} }, $check . '=No sensor with this id';          push @S, parse_sensor($_);
         }      }
       ## no critic 'die'
       close $sysctl
           or die $!
           ? "Error closing sysctl pipe: $!\n"
           : "Exit status $? from sysctl\n";
   
       return @S;
 }  }
   
 #print Dumper \%states;  sub parse_sensor {
       my ($sensor) = @_;
   
 $state = 'OK';      my ( $id, $output ) = split /=/xms, $sensor;
 my $have_results = 0;      my @s = split /\./xms,   $id;
 foreach my $error (sort { $ERRORS{$a} <=> $ERRORS{$b} } keys %ERRORS) {      my @o = split /,\s*/xms, $output;
         if (exists $states{$error}) {  
                 $have_results++;  
                 $state = $error;  
         }  
 }  
 if (NAGIOS_OUTPUT && $have_results) {  
         print '<ul>';  
 }  
 foreach my $error (sort { $ERRORS{$b} <=> $ERRORS{$a} } keys %ERRORS) {  
         if (exists $states{$error}) {  
                 if (NAGIOS_OUTPUT) {  
                         print "<li>$error (" . scalar(@{ $states{ $error } }) . ")";  
                         unless ($error eq 'OK') {  
                                 print '<ul>';  
                                 foreach (@{ $states{ $error } }) {  
                                         print "<li>$_</li>";  
                                 }  
                                 print '</ul>';  
                         }  
                         print "</li>"  
                 } else {  
                         print "$error (" . scalar(@{ $states{ $error } }) . "):\n";  
                         foreach (@{ $states{ $error } }) {  
                                 print "   $_\n";  
                         }  
                 }  
         }  
 }  
 if ($have_results == 0) {  
         print "No results found\n";  
 }  
 if (NAGIOS_OUTPUT && $have_results) {  
         print '</ul>' . "\n";  
 }  
 exit $ERRORS{$state};  
   
       my ( $type, $source, $descr, $data, $status );
   
 sub parse_file {      $source = $o[0];
         my $filename = shift;      $descr  = $o[1];
         my %contents;  
   
         open my $fh, '-|', $GETCAP, '-a', '-f', $filename      if ( $OSVer >= 4.1 ) {
                 or die "Couldn't open FILE '$GETCAP -a -f $filename': $!";          $data = $o[0];
         while (<$fh>) {          if ( $data =~ s/\s+\((.*)\).*$//xms ) {
                 chomp;              $descr = $1;
                 my ($key, @c) = split /\:/;          }
                 foreach (@c) {          $status = $o[1];
                         my ($k, $v) = split /\=/;          ( $source, $type ) = $id =~ /([^\.]+)\.([^\.]+?)\d+$/xms;
                         $contents{$key}{$k} = $v;      }
                 }      elsif ( $OSVer >= 4.0 ) {
         }          $data   = $o[2];
         close $fh;          $status = $o[3];
           foreach my $t (@TYPE_MAP) {
               if ( $data =~ /$t->{'regex'}/xms ) {
                   $type = $t->{'type'};
                   last;
               }
           }
       }
       else {
           $data   = $o[-1];
           $status = $o[2] if @o == 5;
           $type   = $o[-2];
       }
   
         return %contents;      $type ||= 'unknown';
   
       return {
           id          => $id,
           output      => $output,
           source      => $source,
           description => $descr,
           status      => $status,
           type        => $type,
           data        => $data,
       };
 }  }
   
 sub parse_check {  sub read_file {
         my $type  = shift;      my $filename = shift;
         my $check = shift;      my %contents;
   
         if (defined $check->{'warn'} && $check->{'warn'} =~ /:/) {      die "file '$filename' does not exist.\n" unless -e $filename;
                 if (my ($low, $high) = split /:/, $check->{'warn'}) {  
                         $check->{'warn.low'}  = $low;  
                         $check->{'warn.high'} = $high;  
                 }  
                 delete $check->{'warn'};  
         }  
         if (defined $check->{'crit'} && $check->{'crit'} =~ /:/) {  
                 if (my ($low, $high) = split /:/, $check->{'crit'}) {  
                         $check->{'crit.low'}  = $low;  
                         $check->{'crit.high'} = $high;  
                 }  
                 delete $check->{'crit'};  
         }  
   
         if (defined $check->{'low'}) {      open my $fh, '-|', $GETCAP, '-a', '-f', $filename
                 $check->{'warn.low'} = $check->{'low'}          or die "Couldn't open '$GETCAP -a -f $filename': $!\n";
                         unless defined $check->{'warn.low'};      while (<$fh>) {
                 $check->{'crit.low'} = $check->{'low'}          chomp;
                         unless defined $check->{'crit.low'};          my ( $s, @c ) = split /\:/xms;
         }          $contents{$s} = parse_line(@c);
         if (defined $check->{'high'}) {      }
                 $check->{'warn.high'} = $check->{'high'}      ## no critic 'die'
                         unless defined $check->{'warn.high'};      close $fh
                 $check->{'crit.high'} = $check->{'high'}          or die $!
                         unless defined $check->{'crit.high'};          ? "Error closing getcap pipe: $!\n"
         }          : "Exit status $? from getcap\n";
   
         no warnings 'uninitialized';      return %contents;
         $check->{'warn'} = [ split /,\s*/, $check->{'warn'} ];  }
         $check->{'crit'} = [ split /,\s*/, $check->{'crit'} ];  
   
         return $check;  sub parse_line {
       my (@c) = @_;
       my %c;
       foreach (@c) {
           my ( $k, $v ) = split /\=/xms;
           if    ( lc($k) eq 'ignore' ) { $c{'IGNORE'} = 1; }
           elsif ( lc($k) eq 'status' ) { $c{'STATUS'} = 1; }
           else                         { $c{$k}       = $v; }
       }
       return \%c;
 }  }
   
 sub check_sensor {  sub parse_check {
         my $check  = shift;      my $check = shift;
         my $sensor = shift;  
         my $result = 'UNKNOWN';  
         my %errors = (  
                 'warn' => 'WARNING',  
                 'crit' => 'CRITICAL',  
         );  
   
         return $result unless ref $sensor eq 'HASH';      return unless $check;
       return 'STATUS' if $check->{'STATUS'};
       return 'IGNORE' if $check->{'IGNORE'};
   
         $check = parse_check($sensor->{'type'}, $check);      foreach my $code ( 'crit', 'warn' ) {
         #print Dumper $check, $sensor;          if ( defined $check->{$code} && $check->{$code} =~ /:/xms ) {
               if ( my ( $low, $high ) = split /:/xms, $check->{$code} ) {
                   $check->{ $code . '.low' }  = $low  if length $low;
                   $check->{ $code . '.high' } = $high if length $high;
               }
               delete $check->{$code};
           }
   
         $result = 'OK';          foreach my $direction ( 'low', 'high' ) {
               my $c = $code . '.' . $direction;
               if ( defined $check->{$direction} ) {
                   $check->{$c} ||= $check->{$direction};
               }
   
         foreach my $code ('warn', 'crit') {              if ( defined $check->{$c} ) {
                 if (                  my $old = $check->{$c};
                         $sensor->{'type'} eq 'volts_dc' ||                  $check->{$c} =~ s/[^\d\.]//gxms;
                         $sensor->{'type'} eq 'fanrpm'   ||                  if ( !length $check->{$c} ) {
                         $sensor->{'type'} eq 'raw'                      warn "INVALID CHECK ($old)\n";
                 ) {                      delete $check->{$c};
                         my $data = $sensor->{'data'};                  }
                         $data =~ s/[^\d\.]//g;              }
                         unless (length $data) {          }
                                 warn "INVALID DATA ($sensor->{'data'}) for '$sensor->{'id'}'";  
                                 next;  
                         }  
   
                         if (          if ( defined $check->{$code} ) {
                                 defined $check->{$code . ".low"} ||              $check->{$code} = [ split /,\s*/xms, $check->{$code} ];
                                 defined $check->{$code . ".high"}          }
                         ) {          else {
                                 if (defined $check->{$code . ".low"}) {              $check->{$code} = [];
                                         my $c =  $check->{$code . ".low"};          }
                                         $c =~ s/[^\d\.]//g;      }
   
                                         unless (length $c) {  
                                                 warn "INVALID CHECK (" . $check->{$code . ".low"} .  
                                                       ") for '$sensor->{'id'}:$code.low'";  
                                                 next;  
                                         }  
   
                                         $result = $errors{$code}      return $check;
                                                 if ($c >= $data);  }
                                 }  
                                 if (defined $check->{$code . ".high"}) {  
                                         my $c =  $check->{$code . ".high"};  
                                         $c =~ s/[^\d\.]//g;  
                                         unless (length $c) {  
                                                 warn "INVALID CHECK (" . $check->{$code . ".high"} .  
                                                       ") for '$sensor->{'id'}:$code.high'";  
                                                 next;  
                                         }  
   
                                         $result = $errors{$code}  sub check_sensors {
                                                 if ($c <= $data);      my ( $S, $C, $O ) = @_;
                                 }  
                         } elsif (defined $check->{$code}) {  
                                 my $matched = 0;  
                                 foreach my $c (@{ $check->{$code} }) {  
                                         $c =~ s/[^\d\.]//g;  
                                         unless (length $c) {  
                                                 warn "INVALID CHECK (" . $check->{$code} .  
                                                       ") for '$sensor->{'id'}:$code'";  
                                                 next;  
                                         }  
   
                                         if ($_ eq $data) {      my %states;
                                                 $matched = 1;      foreach my $sensor ( @{$S} ) {
                                                 last;          my ( $r, $data );
                                         }          if ( exists $C->{ $sensor->{id} } ) {
                                 }              $r = check_sensor( $sensor, $C->{ $sensor->{id} } );
                                 $result = $errors{$code} unless $matched;              $data = $sensor->{id} . '=' . $sensor->{output};
                         }          }
           elsif ( !$O->{ignore_status} && $sensor->{status} ) {
               $r = check_sensor( $sensor, { STATUS => 1 } );
               $data = $sensor->{id} . '=' . $sensor->{output};
           }
           else {
   
                 } elsif ($sensor->{'type'} eq 'temp') {              # ignore this sensor, theoretically you could do the check and
                         my ($degC, $degF) = split /\//, $sensor->{'data'};              # that would show unknown sensors.
                         $degC =~ s/[^\d\.]//g;          }
                         $degF =~ s/[^\d\.]//g;          if ( defined $r ) {
                         if (              push @{ $states{$r} }, $data;
                                 defined $check->{$code . ".low"} ||          }
                                 defined $check->{$code . ".high"}      }
                         ) {  
                                 if (defined $check->{$code . ".low"}) {  
                                         my $c =  $check->{$code . ".low"};  
                                         my $data = $degC;  
   
                                         $data = $degF if ($c =~ /F/i);      return %states;
                                         unless (length $data) {  }
                                                 warn "INVALID DATA (" . $sensor->{'data'} .  
                                                           ") for '$sensor->{'id'}'";  
                                                 next;  
                                         }  
   
                                         $c =~ s/[^\d\.]//g;  sub check_sensor {
                                         unless (length $c) {      my ( $sensor, $check ) = @_;
                                                 warn "INVALID CHECK (" . $check->{$code . ".low"} .      my $result = 'UNKNOWN';
                                                          ") for '$sensor->{'id'}':$code.low";  
                                                 next;  
                                         }  
   
                                         $result = $errors{$code}      return $result unless ref $sensor eq 'HASH';
                                                 if ($c >= $data);      $check = parse_check($check) if $check;
                                 }  
                                 if (defined $check->{$code . ".high"}) {  
                                         my $c =  $check->{$code . ".high"};  
   
                                         my $data = $degC;      if ( !$check ) { return $result; }
                                         $data = $degF if ($c =~ /F/i);      elsif ( $check eq 'STATUS' ) {
                                         unless (length $data) {  
                                                 warn "INVALID DATA (" . $sensor->{'data'} .  
                                                           ") for '$sensor->{'id'}'";  
                                                 next;  
                                         }  
   
                                         $c =~ s/[^\d\.]//g;          # It looks like returning $sensor->{status} should be safe, from
                                         unless (length $c) {          # src/sbin/sysctl/sysctl.c
                                                 warn "INVALID CHECK (" . $check->{$code . ".high"} .          return ( $sensor->{'status'} || $result );
                                                          ") for '$sensor->{'id'}:$code.high'";      }
                                                 next;      elsif ( $check eq 'IGNORE' ) { return; }
                                         }  
   
                                         $result = $errors{$code}      my $type = $sensor->{'type'};
                                                 if ($c <= $data);      if (grep { $type eq $_ }
                                 }          qw(
                         } elsif (defined $check->{$code}) {          fan fanrpm
           volt volts_dc
           amps watthour amphour
           integer raw percent
           lux temp timedelta
           )
           )
       {
           $result = check_sensor_numeric( $sensor->{'data'}, $check );
       }
       elsif ( grep { $type eq $_ } qw( drive indicator ) ) {
           my $data = $sensor->{'data'};
           $data =~ s/^drive\s+//xms;
           $result = check_sensor_list( $data, $check );
       }
       else {
           warn 'Unknown Sensor Type: ', $sensor->{'id'}, '=', $type, "\n";
       }
   
                                 my $matched = 0;      return $result;
                                 foreach my $c (@{ $check->{$code} }) {  }
                                         my $data = $degC;  
   
                                         $data = $degF if ($c =~ /F/i);  sub check_sensor_numeric {
                                         unless (length $data) {      my ( $data, $check ) = @_;
                                                 warn "INVALID DATA (" . $sensor->{'data'} .  
                                                           ") for '$sensor->{'id'}'";  
                                                 next;  
                                         }  
   
                                         $c =~ s/[^\d\.]//g;      my $result = 'UNKNOWN';
                                         unless (length $c) {      my %errors = (
                                                 warn "INVALID CHECK (" . $check->{$code} .          'warn' => 'WARNING',
                                                          ") for '$sensor->{'id'}':$code";          'crit' => 'CRITICAL',
                                                 next;      );
                                         }  
   
                                         if ($_ eq $data) {      $data =~ s/[^\d\.]//gxms;
                                                 $matched = 1;      if ( !length $data ) {
                                                 last;          warn "INVALID DATA ($data)\n";
                                         }          return $result;
                                 }      }
                                 $result = $errors{$code} unless $matched;  
                         }  
   
                 } elsif (      foreach my $code ( 'warn', 'crit' ) {
                         $sensor->{'type'} eq 'drive' ||          if (   defined $check->{ $code . ".low" }
                         $sensor->{'type'} eq 'indicator'              || defined $check->{ $code . ".high" } )
                 ) {          {
                         if (defined $check->{$code}) {              if ((   defined $check->{ $code . ".low" }
                                 my $matched = 0;                      && $check->{ $code . ".low" } >= $data
                                 foreach (@{ $check->{$code} }) {                  )
                                         if ($_ eq $sensor->{'data'}) {                  || ( defined $check->{ $code . ".high" }
                                                 $matched = 1;                      && $check->{ $code . ".high" } <= $data )
                                                 last;                  )
                                         }              {
                                 }                  $result = $errors{$code};
                                 $result = $errors{$code} unless $matched;              }
                         }              $result = 'OK' if $result eq 'UNKNOWN';
           }
           elsif ( @{ $check->{$code} } ) {
               my $matched = 0;
           NUMERIC_CHECK: foreach ( @{ $check->{$code} } ) {
                   my $c = $_;
                   $c =~ s/[^\d\.]//gxms;
                   if ( !length $c ) {
                       warn "INVALID CHECK (" . $_ . ") for '$code'\n";
                       next;
                   }
   
                 } else {                  if ( $c eq $data ) {
                         $result = 'UNKNOWN';                      $matched = 1;
                 }                      last NUMERIC_CHECK;
                   }
               }
               if ($matched) {
                   $result = 'OK' if $result eq 'UNKNOWN';
               }
               else {
                   $result = $errors{$code};
               }
           }
       }
   
         }      return $result;
   }
   
         return $result;  sub check_sensor_list {
       my ( $data, $check ) = @_;
   
       my $result = 'UNKNOWN';
       my %errors = (
           'warn' => 'WARNING',
           'crit' => 'CRITICAL',
       );
   
       foreach my $code ( 'warn', 'crit' ) {
           if ( @{ $check->{$code} } ) {
               my $matched = 0;
           LIST_CHECK: foreach ( @{ $check->{$code} } ) {
                   if ( $_ eq $data ) {
                       $matched = 1;
                       last LIST_CHECK;
                   }
               }
               if ($matched) {
                   $result = 'OK' if $result eq 'UNKNOWN';
               }
               else {
                   $result = $errors{$code};
               }
           }
       }
   
       return $result;
 }  }
   
 sub print_help {  sub print_help {
         print <<EOL;      print <<"EOL";
 $PROGNAME plugin for Nagios monitors sysctl hw.sensors on OpenBSD  $PROGNAME - monitors sysctl hw.sensors on OpenBSD
         $PROGNAME (-f [<FILENAME>]|(-s <hw.sensors id> -w limit -c limit))      $PROGNAME [-i] [-f [<FILENAME>]|(-s <hw.sensors id> [-w limit] [-c limit])]
   
 Usage:  Usage:
         -f, --filename=FILE      -i, --ignore-status
                 FILE to load checks from (defaults to /etc/sensorsd.conf)          Don't automatically check the status of sensors that report it.
         -s, --sensor=ID      -f, --filename=FILE
                 ID of a single sensor.  "-s 0" means hw.sensors.0.          FILE to load checks from (defaults to /etc/sensorsd.conf)
         -w, --warning=RANGE or single ENTRY      -s, --sensor=ID
                 Exit with WARNING status if outside of RANGE or if != ENTRY          ID of a single sensor.  "-s kate0.temp0" means hw.sensors.kate0.temp0
         -c, --critical=INTEGER          Overrides --filename.
                 Exit with CRITICAL status if outside of RANGE or if != ENTRY      -w, --warning=RANGE or single ENTRY
           Exit with WARNING status if outside of RANGE or if != ENTRY
       -c, --critical=RANGE or single ENTRY
           Exit with CRITICAL status if outside of RANGE or if != ENTRY
   
         -h (--help)       usage help  FILE is in the same format as sensorsd.conf(5) plus some additional
   entries.  These additional entries in the file are ignored by
   sensorsd(8) this means you can use the same config file for $PROGNAME
   as well as sensorsd(8).
   
 FILE is in the same format as sensorsd.conf(5).  These additional entries in the file are ignored by sensorsd(8).  $PROGNAME understands the following entries:  $PROGNAME understands the following entries:
         low, high, crit, warn, crit.low, crit.high, warn.low, warn.high  
   
 An ENTRY depends on the type.  The descriptions in sensorsd.conf(5) can be used when appropriate, or you can use the following:      low, high, crit, warn, crit.low, crit.high, warn.low, warn.high,
         volts_dc, fanrpm or raw - Anything that includes digits.  Anything that isn't a digit or period is stripped from the entry and the sensor output and they are compared.      ignore, status
         temp - Can be as above, but if the entry has an F in it, it compares farenheit, otherwise it uses celcius.  
         indicator or drive - does a case sensitive match of each entry in the comma separated list and if it does not match any of the entries, it matches the status.  
   
 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.  The comma separated list of values contains a list of things that will NOT cause the status.  This is possibly counterintuitive, but you are more likely to know good values than bad values.  An ENTRY depends on the type.  The descriptions in sensorsd.conf(5)
   can be used when appropriate, or you can use the following:
   
 A RANGE is a low ENTRY and a high ENTRY separated by a colon (:).      fanrpm, volts_dc, amps, watthour, amphour, integer (raw), percent,
       lux, temp or timedelta - Anything that includes digits.  Both the
       value of the check and the value of the sensor response that are not
       either a digit or period are stripped and then the two resultant
       values are compared.
   
       indicator or drive - does a case sensitive match of each
       entry in the comma separated list and if it does not match
       any of the entries, it sets the status.
   
   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.
   The comma separated list of values contains a list of things that
   will NOT cause the status.  This is possibly counterintuitive, but
   you are more likely to know good values than bad values.
   
   A RANGE is a low ENTRY and a high ENTRY separated by a colon (:).
   It can also be low: or :high with the other side left blank to only
   make the single check.
   
   An entry marked "ignore" will cause that sensor to be skipped.
   Generally used with state checking of all sensors to ignore sensors you
   don't care about or that report incorrectly.
   
   If you are using --ignore-status, you can still check the status of
   individual sensors with a status entry.
   
 EOL  EOL
   
         print_revision($PROGNAME, '$Revision$');      print_revision( $PROGNAME, '$Revision$' );
   
       print $LICENSE;
   
       return;
   }
   
   sub print_revision {
       my ( $prog, $rev ) = @_;
       $rev =~ s/^\D+([\d\.]+)\D+$/v$1/xms;
   
       print "$prog $rev\n";
   
       return;
 }  }
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.33

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