Build precise queries to find exactly what you need
Press ESC to close
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!
We’ve completely redesigned the world’s largest repository of Nagios plugins and monitoring tools. Join thousands of users sharing monitoring solutions for servers, applications, and everything in between.
Due to our redesign, all existing accounts require a password reset to access your account again.
Ready to explore 6,100+ projects and contribute to the community?
Reset Password Create Account
Happy Monitoring!