Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
The plugin did not process the status for me correctly as it was always selecting the SCSI/MEGARAID line_str to match on due to a comparison error. Line 110 is as follows in the download:
if ($interface eq ‘megaraid’.”,”.$number or ‘scsi’){
Replace this line by the following 2 lines below:
if (!defined($number)) { $number = 0; } if ($interface eq ‘megaraid’.”,”.$number or $interface eq ‘scsi’){
Aside from this the plugin works brilliant!