]> git.uio.no Git - check_openmanage.git/blobdiff - check_openmanage
et par kommentarer
[check_openmanage.git] / check_openmanage
index 88d1dc537bd1a853046aca111b0edd184db467f2..d9102fb5bb39a34829f16484b52a4365e95bb5c0 100755 (executable)
@@ -34,11 +34,11 @@ use vars qw( $NAME $VERSION $AUTHOR $CONTACT $E_OK $E_WARNING $E_CRITICAL
             $E_UNKNOWN $FW_LOCK $USAGE $HELP $LICENSE
             $snmp_session $snmp_error $omreport $globalstatus $global
             $linebreak $omopt_chassis $omopt_system $blade
-            $exit_code $snmp
+            $exit_code $snmp $original_sigwarn
             %check %opt %perfdata %reverse_exitcode %status2nagios
             %snmp_status %snmp_probestatus %probestatus2nagios %sysinfo
             %blacklist %nagios_alert_count %count
-            @controllers @enclosures
+            @perl_warnings @controllers @enclosures
             @report_storage @report_chassis @report_other
          );
 
@@ -46,17 +46,18 @@ use vars qw( $NAME $VERSION $AUTHOR $CONTACT $E_OK $E_WARNING $E_CRITICAL
 # Initialization and global variables
 #---------------------------------------------------------------------
 
-# If we don't have a TTY, the plugin is probably run by Nagios. In
-# that case, redirect all output to STDERR to STDOUT. Nagios ignores
-# output to STDERR.
-if (! isatty *STDOUT) {
-    open STDERR, '>&', 'STDOUT'
-      or do { print "ERROR: Couldn't redirect STDERR to STDOUT\n"; exit 2; }
+# Small subrouting to collect any perl warnings during execution
+sub collect_perl_warning {
+  push @perl_warnings, [@_];
 }
 
+# Set the WARN signal to use our collect subroutine above
+$original_sigwarn = $SIG{__WARN__};
+$SIG{__WARN__} = \&collect_perl_warning;
+
 # Version and similar info
 $NAME    = 'check_openmanage';
-$VERSION = '3.5.0-beta14';
+$VERSION = '3.5.4-beta2';
 $AUTHOR  = 'Trond H. Amundsen';
 $CONTACT = 't.h.amundsen@usit.uio.no';
 
@@ -239,7 +240,7 @@ $omreport = undef;
         );
 
 # Default line break
-$linebreak = isatty *STDOUT ? "\n" : '<br/>';
+$linebreak = isatty(*STDOUT) ? "\n" : '<br/>';
 
 # Line break from option
 if (defined $opt{linebreak}) {
@@ -607,7 +608,7 @@ sub snmp_detect_blade {
 sub find_omreport {
     # If user has specified path to omreport
     if (defined $opt{omreport} and -x $opt{omreport}) {
-       $omreport = $opt{omreport};
+       $omreport = qq{"$opt{omreport}"};
        return;
     }
 
@@ -615,6 +616,7 @@ sub find_omreport {
     my @omreport_paths
       = (
         '/usr/bin/omreport',                            # default on Linux
+        '/opt/dell/srvadmin/bin/omreport',              # default on Linux with OMSA 6.2.0
         '/opt/dell/srvadmin/oma/bin/omreport.sh',       # alternate on Linux
         '/opt/dell/srvadmin/oma/bin/omreport',          # alternate on Linux
         'C:\Program Files (x86)\Dell\SysMgt\oma\bin\omreport.exe', # default on Windows x64
@@ -627,7 +629,7 @@ sub find_omreport {
   OMREPORT_PATH:
     foreach my $bin (@omreport_paths) {
        if (-x $bin) {
-           $omreport = $bin;
+           $omreport = qq{"$bin"};
            last OMREPORT_PATH;
        }
     }
@@ -741,7 +743,7 @@ sub adjust_checks {
            print qq{ERROR: Wrong simultaneous usage of the "--only" and "--check" options\n};
            exit $E_UNKNOWN;
        }
-       if (! exists $check{$opt{only}} and $opt{only} ne 'chassis') {
+       if (! exists $check{$opt{only}} && $opt{only} ne 'chassis') {
            print qq{ERROR: "$opt{only}" is not a known keyword for the "--only" option\n};
            exit $E_UNKNOWN;
        }
@@ -825,6 +827,7 @@ sub run_omreport {
           | No\scontrollers\sfound                                     # No RAID controller
           | No\sbattery\sprobes\sfound\son\sthis\ssystem               # No battery probes
           | Invalid\scommand:\spwrmonitoring                           # Older OMSAs lack this command(?)
+#          | Current\sprobes\snot\sfound                                # No power monitoring capability
         }xms;
 
     # Errors that are OK on blade servers
@@ -838,11 +841,15 @@ sub run_omreport {
     return [] if !defined $rawtext;
 
     # Workaround for Openmanage BUG introduced in OMSA 5.5.0
-    $rawtext =~ s/\n;/;/gxms if $command eq 'storage controller';
+    $rawtext =~ s{\n;}{;}gxms if $command eq 'storage controller';
+
+    # Openmanage sometimes puts a linebreak between "Error" and the
+    # actual error text
+    $rawtext =~ s{^Error\s*\n}{Error: }xms;
 
     # Parse output, store in array
-    for ((split /\n/xms, $rawtext)) {
-       if (m/\A Error/xms) {
+    for ((split m{\n}xms, $rawtext)) {
+       if (m{\AError}xms) {
            next if m{$ok_errors}xms;
            next if ($blade and m{$ok_blade_errors}xms);
            report('other', "Problem running 'omreport $command': $_", $E_UNKNOWN);
@@ -850,7 +857,7 @@ sub run_omreport {
 
        next if !m/(.*?;){2}/xms;  # ignore lines with less than 3 fields
        my @vals = split /;/xms;
-       if ($vals[0] =~ m/\A (Index|ID|Severity) \z/xms) {
+       if ($vals[0] =~ m/\A (Index|ID|Severity|Processor|Current\sSpeed) \z/xms) {
            @keys = @vals;
        }
        else {
@@ -878,7 +885,7 @@ sub blacklisted {
 
     if (defined $blacklist{$name}) {
        foreach my $comp (@{ $blacklist{$name} }) {
-           if (defined $id and $comp eq $id) {
+           if (defined $id and ($comp eq $id or $comp eq 'ALL')) {
                $ret = 1;
            }
        }
@@ -1345,8 +1352,8 @@ sub check_physical_disks {
           ? sprintf '%.1fTB', ($capacity / 1000**4)
            : sprintf '%.0fGB', ($capacity / 1000**3);
        $capacity = '450GB' if $capacity eq '449GB';  # quick fix for 450GB disks
+       $capacity = '300GB' if $capacity eq '299GB';  # quick fix for 300GB disks
        $capacity = '146GB' if $capacity eq '147GB';  # quick fix for 146GB disks
-       $capacity = '300GB' if $capacity eq '299GB';  # quick fix for 146GB disks
 
        # Capitalize only the first letter of the vendor name
        $vendor = (substr $vendor, 0, 1) . lc (substr $vendor, 1, length $vendor);
@@ -1490,6 +1497,9 @@ sub check_virtual_disks {
        next VDISK if blacklisted('vdisk', $nexus);
        $count{vdisk}++;
 
+       # The device name is undefined sometimes
+       $dev = q{} if !defined $dev;
+
        # Special case: Regenerating
        if ($state eq 'Regenerating') {
            my $msg = sprintf q{Logical drive %d '%s' [%s, %s] on ctrl %d is %s%s},
@@ -1566,6 +1576,7 @@ sub check_cache_battery {
         36 => 'Learning',
        );
 
+    # Specifies the learn state activity of the battery
     my %bat_learn_state
       = (
         1  => 'Failed',
@@ -1575,6 +1586,7 @@ sub check_cache_battery {
         16 => 'Idle',
        );
 
+    # This property displays the battery's ability to be charged
     my %bat_pred_cap
       = (
         1 => 'Failed',  # The battery cannot be charged and needs to be replaced
@@ -1612,22 +1624,32 @@ sub check_cache_battery {
 
        # Special case: Charging
        if ($state eq 'Charging') {
+           next BATTERY if blacklisted('bat_charge', $nexus);
            my $msg = sprintf 'Cache battery %d in controller %d is %s (%s) [probably harmless]',
              $id, $ctrl, $state, $pred;
            report('storage', $msg, $E_WARNING, $nexus);
        }
        # Special case: Learning (battery learns its capacity)
        elsif ($state eq 'Learning') {
+           next BATTERY if blacklisted('bat_charge', $nexus);
            my $msg = sprintf 'Cache battery %d in controller %d is %s (%s) [probably harmless]',
              $id, $ctrl, $state, $learn;
            report('storage', $msg, $E_WARNING, $nexus);
        }
        # Special case: Power Low (first part of recharge cycle)
        elsif ($state eq 'Power Low') {
+           next BATTERY if blacklisted('bat_charge', $nexus);
            my $msg = sprintf 'Cache battery %d in controller %d is %s [probably harmless]',
              $id, $ctrl, $state;
            report('storage', $msg, $E_WARNING, $nexus);
        }
+       # Special case: Degraded and Non-Critical (usually part of recharge cycle)
+       elsif ($state eq 'Degraded' && $status eq 'Non-Critical') {
+           next BATTERY if blacklisted('bat_charge', $nexus);
+           my $msg = sprintf 'Cache battery %d in controller %d is %s (%s) [probably harmless]',
+             $id, $ctrl, $state, $status;
+           report('storage', $msg, $E_WARNING, $nexus);
+       }
        # Default
        elsif ($status ne 'Ok') {
            my $msg = sprintf 'Cache battery %d in controller %d needs attention: %s (%s)',
@@ -2723,7 +2745,7 @@ sub check_temperatures {
                else {
                    $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
                      $min_warn, $min_crit, $max_warn, $max_crit;
-               }                   
+               }
                my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
                report('chassis', $msg, $err, $index);
            }
@@ -2751,36 +2773,33 @@ sub check_processors {
     my $index   = undef;
     my $status  = undef;
     my $state   = undef;
-    my $oid_ver = 'new';
-    my @output  = ();
+    my $brand   = undef;
+    my $family  = undef;
+    my $man     = undef;
+    my $speed   = undef;
+    my @output = ();
 
     if ($snmp) {
 
        # NOTE: For some reason, older models don't have the
-       # "Processor Device Status" OIDs. We first check the newer
-       # (preferred) OIDs, and if that doesn't work, check the "old"
-       # OIDs.
+       # "Processor Device Status" OIDs. We check both the newer
+       # (preferred) OIDs and the old ones.
 
-       my %cpu_oid_new  # for newer models
+       my %cpu_oid
          = (
-            '1.3.6.1.4.1.674.10892.1.1100.32.1.2.1' => 'processorDeviceStatusIndex',
-            '1.3.6.1.4.1.674.10892.1.1100.32.1.5.1' => 'processorDeviceStatusStatus',
-            '1.3.6.1.4.1.674.10892.1.1100.32.1.6.1' => 'processorDeviceStatusReading',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.2.1'  => 'processorDeviceIndex',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.5.1'  => 'processorDeviceStatus',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.8.1'  => 'processorDeviceManufacturerName',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.9.1'  => 'processorDeviceStatusState',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.10.1' => 'processorDeviceFamily',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.12.1' => 'processorDeviceCurrentSpeed',
+             '1.3.6.1.4.1.674.10892.1.1100.30.1.23.1' => 'processorDeviceBrandName',
+            '1.3.6.1.4.1.674.10892.1.1100.32.1.2.1'  => 'processorDeviceStatusIndex',
+            '1.3.6.1.4.1.674.10892.1.1100.32.1.5.1'  => 'processorDeviceStatusStatus',
+            '1.3.6.1.4.1.674.10892.1.1100.32.1.6.1'  => 'processorDeviceStatusReading',
            );
 
-       my %cpu_oid_old  # for older models
-         = (
-             '1.3.6.1.4.1.674.10892.1.1100.30.1.2.1' => 'processorDeviceIndex',
-             '1.3.6.1.4.1.674.10892.1.1100.30.1.5.1' => 'processorDeviceStatus',
-             '1.3.6.1.4.1.674.10892.1.1100.30.1.9.1' => 'processorDeviceStatusState',
-           );
-
-       my $result = $snmp_session->get_entries(-columns => [keys %cpu_oid_new]);
-
-       if (!defined $result) {
-           $oid_ver = 'old';
-           $result = $snmp_session->get_entries(-columns => [keys %cpu_oid_old]);
-       }
+       my $result = $snmp_session->get_entries(-columns => [keys %cpu_oid]);
 
        if (!defined $result) {
            printf "SNMP ERROR [processors]: %s.\n", $snmp_session->error;
@@ -2788,12 +2807,7 @@ sub check_processors {
            exit $E_UNKNOWN;
        }
 
-       if ($oid_ver eq 'new') {
-           @output = @{ get_snmp_output($result, \%cpu_oid_new) };
-       }
-       else {
-           @output = @{ get_snmp_output($result, \%cpu_oid_old) };
-       }
+       @output = @{ get_snmp_output($result, \%cpu_oid) };
     }
     else {
        @output = @{ run_omreport("$omopt_chassis processors") };
@@ -2820,14 +2834,65 @@ sub check_processors {
         1024 => 'Throttled',           # Processor Throttled
        );
 
+    # Mapping between family numbers from SNMP and actual CPU family
+    my %cpu_family
+      = (
+        1   => 'Other',                2   => 'Unknown',              3   => '8086',
+        4   => '80286',                5   => '386',                  6   => '486',
+        7   => '8087',                 8   => '80287',                9   => '80387',
+        10  => '80487',                11  => 'Pentium',              12  => 'Pentium Pro',
+        13  => 'Pentium II',           14  => 'Pentium with MMX',     15  => 'Celeron',
+        16  => 'Pentium II Xeon',      17  => 'Pentium III',          18  => 'Pentium III Xeon',
+        19  => 'Pentium III',          20  => 'Itanium',              21  => 'Xeon',
+        22  => 'Pentium 4',            23  => 'Xeon MP',              24  => 'Itanium 2',
+        25  => 'K5',                   26  => 'K6',                   27  => 'K6-2',
+        28  => 'K6-3',                 29  => 'Athlon',               30  => 'AMD2900',
+        31  => 'K6-2+',                32  => 'Power PC',             33  => 'Power PC 601',
+        34  => 'Power PC 603',         35  => 'Power PC 603+',        36  => 'Power PC 604',
+        37  => 'Power PC 620',         38  => 'Power PC x704',        39  => 'Power PC 750',
+        48  => 'Alpha',                49  => 'Alpha 21064',          50  => 'Alpha 21066',
+        51  => 'Alpha 21164',          52  => 'Alpha 21164PC',        53  => 'Alpha 21164a',
+        54  => 'Alpha 21264',          55  => 'Alpha 21364',          64  => 'MIPS',
+        65  => 'MIPS R4000',           66  => 'MIPS R4200',           67  => 'MIPS R4400',
+        68  => 'MIPS R4600',           69  => 'MIPS R10000',          80  => 'SPARC',
+        81  => 'SuperSPARC',           82  => 'microSPARC II',        83  => 'microSPARC IIep',
+        84  => 'UltraSPARC',           85  => 'UltraSPARC II',        86  => 'UltraSPARC IIi',
+        87  => 'UltraSPARC III',       88  => 'UltraSPARC IIIi',      96  => '68040',
+        97  => '68xxx',                98  => '68000',                99  => '68010',
+        100 => '68020',                101 => '68030',                112 => 'Hobbit',
+        120 => 'Crusoe TM5000',        121 => 'Crusoe TM3000',        122 => 'Efficeon TM8000',
+        128 => 'Weitek',               131 => 'Athlon 64',            132 => 'Opteron',
+        133 => 'Sempron',              134 => 'Turion 64 Mobile',     135 => 'Dual-Core Opteron',
+        136 => 'Athlon 64 X2 DC',      137 => 'Turion 64 X2 M',       138 => 'Quad-Core Opteron',
+        139 => '3rd gen Opteron',      144 => 'PA-RISC',              145 => 'PA-RISC 8500',
+        146 => 'PA-RISC 8000',         147 => 'PA-RISC 7300LC',       148 => 'PA-RISC 7200',
+        149 => 'PA-RISC 7100LC',       150 => 'PA-RISC 7100',         160 => 'V30',
+        171 => 'Dual-Core Xeon 5200',  172 => 'Dual-Core Xeon 7200',  173 => 'Quad-Core Xeon 7300',
+        174 => 'Quad-Core Xeon 7400',  175 => 'Multi-Core Xeon 7400', 176 => 'M1',
+        177 => 'M2',                   180 => 'AS400',                182 => 'Athlon XP',
+        183 => 'Athlon MP',            184 => 'Duron',                185 => 'Pentium M',
+        186 => 'Celeron D',            187 => 'Pentium D',            188 => 'Pentium Extreme',
+        189 => 'Core Solo',            190 => 'Core2',                191 => 'Core2 Duo',
+        198 => 'Core i7',              199 => 'Dual-Core Celeron',    200 => 'IBM390',
+        201 => 'G4',                   202 => 'G5',                   203 => 'ESA/390 G6',
+        204 => 'z/Architectur',        210 => 'C7-M',                 211 => 'C7-D',
+        212 => 'C7',                   213 => 'Eden',                 214 => 'Multi-Core Xeon',
+        215 => 'Dual-Core Xeon 3xxx',  216 => 'Quad-Core Xeon 3xxx',  218 => 'Dual-Core Xeon 5xxx',
+        219 => 'Quad-Core Xeon 5xxx',  221 => 'Dual-Core Xeon 7xxx',  222 => 'Quad-Core Xeon 7xxx',
+        223 => 'Multi-Core Xeon 7xxx', 250 => 'i860',                 251 => 'i960',
+       );
 
   CPU:
     foreach my $out (@output) {
        if ($snmp) {
-           if ($oid_ver eq 'new') {
+           $index  = exists $out->{processorDeviceStatusIndex}
+             ? $out->{processorDeviceStatusIndex} - 1
+               : $out->{processorDeviceIndex} - 1;
+           $status = exists $out->{processorDeviceStatusStatus}
+             ? $snmp_status{$out->{processorDeviceStatusStatus}}
+               : $snmp_status{$out->{processorDeviceStatus}};
+           if (exists $out->{processorDeviceStatusReading}) {
                my @states  = ();  # contains states for the CPU
-               $index  = $out->{processorDeviceStatusIndex} - 1;
-               $status = $snmp_status{$out->{processorDeviceStatusStatus}};
 
                # get the combined state from the StatusReading OID
                foreach my $mask (sort keys %cpu_reading) {
@@ -2840,15 +2905,23 @@ sub check_processors {
                $state = join q{, }, @states;
            }
            else {
-               $index  = $out->{processorDeviceIndex} - 1;
-               $status = $snmp_status{$out->{processorDeviceStatus}};
                $state  = $cpu_state{$out->{processorDeviceStatusState}};
            }
+           $man    = $out->{processorDeviceManufacturerName};
+           $family = (exists $out->{processorDeviceFamily}
+                      and exists $cpu_family{$out->{processorDeviceFamily}})
+             ? $cpu_family{$out->{processorDeviceFamily}} : undef;
+           $speed  = $out->{processorDeviceCurrentSpeed};
+           $brand  = $out->{processorDeviceBrandName};
        }
        else {
            $index  = $out->{'Index'};
            $status = $out->{'Status'};
            $state  = $out->{'State'};
+           $brand  = exists $out->{'Processor Brand'} ? $out->{'Processor Brand'} : undef;
+           $family = exists $out->{'Processor Family'} ? $out->{'Processor Family'} : undef;
+           $man    = exists $out->{'Processor Manufacturer'} ? $out->{'Processor Manufacturer'} : undef;
+           $speed  = exists $out->{'Current Speed'} ? $out->{'Current Speed'} : undef;
        }
 
        next CPU if blacklisted('cpu', $index);
@@ -2866,16 +2939,30 @@ sub check_processors {
 
        $count{cpu}++;
 
+       if (defined $brand) {
+           $brand =~ s{\s\s+}{ }gxms;
+           $brand =~ s{\((R|tm)\)}{}gxms;
+           $brand =~ s{\s(CPU|Processor)}{}xms;
+           $brand =~ s{\s\@}{}xms;
+       }
+       elsif (defined $family and defined $man and defined $speed) {
+           $speed =~ s{\A (\d+) .*}{$1}xms;
+           $brand = sprintf '%s %s %.2fGHz', $man, $family, $speed / 1000;
+       }
+       else {
+           $brand = "unknown";
+       }
+
        # Default
        if ($status ne 'Ok') {
-           my $msg = sprintf 'CPU %d needs attention: %s',
-             $index, $state;
+           my $msg = sprintf 'Processor %d [%s] needs attention: %s',
+             $index, $brand, $state;
            report('chassis', $msg, $status2nagios{$status}, $index);
        }
        # Ok
        else {
-           my $msg = sprintf 'CPU %d is %s',
-             $index, $state;
+           my $msg = sprintf 'Processor %d [%s] is %s',
+             $index, $brand, $state;
            report('chassis', $msg, $E_OK, $index);
        }
     }
@@ -3114,7 +3201,7 @@ sub check_pwrmonitoring {
        }
        else {
            $index    = $out->{'Index'};
-           next if $index !~ m/^\d+$/x;
+           next AMP if (!defined $index || $index !~ m/^\d+$/x);
            $status   = $out->{'Status'};
            $reading  = $out->{'Reading'};
            $location = $out->{'Probe Name'};
@@ -3128,7 +3215,7 @@ sub check_pwrmonitoring {
            $max_crit =~ s{\A (\d+.*?)\s+[a-zA-Z]+ \s*\z}{$1}xms;
        }
 
-       next AMP if blacklisted('pm', $index);
+       next AMP if blacklisted('amp', $index);
        next AMP if $index !~ m{\A \d+ \z}xms;
        $count{amp}++;
 
@@ -3606,6 +3693,11 @@ sub get_sysinfo
        $snmp ? get_snmp_chassis_bios() : get_omreport_chassis_bios();
     }
 
+    # Get OMSA information. Only if needed
+    if ($opt{okinfo} >= 3 or $opt{debug}) {
+       $snmp ? get_snmp_about() : get_omreport_about();
+    }
+
     # Return now if debug
     return if $opt{debug};
 
@@ -3614,11 +3706,6 @@ sub get_sysinfo
        $snmp ? get_snmp_system_operatingsystem() : get_omreport_system_operatingsystem();
     }
 
-    # Get OMSA information. Only if needed
-    if ($opt{okinfo} >= 3) {
-       $snmp ? get_snmp_about() : get_omreport_about();
-    }
-
     return;
 }
 
@@ -3787,8 +3874,10 @@ if ($snmp) {
 # Print messages
 if ($opt{debug}) {
     print "   System:      $sysinfo{model}\n";
-    print "   ServiceTag:  $sysinfo{serial}\n";
-    print "   BIOS/date:   $sysinfo{bios} $sysinfo{biosdate}\n";
+    print "   ServiceTag:  $sysinfo{serial}";
+    print q{ } x (25 - length $sysinfo{serial}), "OMSA version:    $sysinfo{om}\n";
+    print "   BIOS/date:   $sysinfo{bios} $sysinfo{biosdate}";
+    print q{ } x (25 - length "$sysinfo{bios} $sysinfo{biosdate}"), "Plugin version:  $VERSION\n";
     if ($#report_storage >= 0) {
        print "-----------------------------------------------------------------------------\n";
        print "   Storage Components                                                        \n";
@@ -3806,7 +3895,7 @@ if ($opt{debug}) {
        print "-----------------------------------------------------------------------------\n";
        print "   Chassis Components                                                        \n";
        print "=============================================================================\n";
-       print "  STATE  |  ID  |  MESSAGE TEXT                                          \n";
+       print "  STATE  |  ID  |  MESSAGE TEXT                                              \n";
        print "---------+------+------------------------------------------------------------\n";
        foreach (@report_chassis) {
            my ($msg, $level, $nexus) = @{$_};
@@ -4005,6 +4094,18 @@ else {
     }
 }
 
+# Print any perl warnings that have occured
+if (@perl_warnings) {
+    foreach (@perl_warnings) {
+       chop @$_;
+       print "${linebreak}INTERNAL ERROR: @$_";
+    }
+    $exit_code = $E_UNKNOWN;
+}
+
+# Reset the WARN signal
+$SIG{__WARN__} = $original_sigwarn;
+
 # Print performance data
 if (defined $opt{perfdata} && !$opt{debug} && %perfdata) {
     my $lb = $opt{perfdata} eq 'multiline' ? "\n" : q{ };  # line break for perfdata