when "mptsas"
tools_packages << "lsiutil"
# status_packages["mpt-status"] ||= []
- when "mpt2sas"
+ when "mpt2sas", "mpt3sas"
tools_packages << "sas2ircu"
status_packages["sas2ircu-status"] ||= []
when "megaraid_mm"
Dir.glob("/sys/class/scsi_host/host*") do |host|
driver = File.new("#{host}/proc_name").read.chomp
- next unless driver == "mpt2sas"
+ next unless driver == "mpt2sas" || driver == "mpt3sas"
bus = host.sub("/sys/class/scsi_host/host", "")
Dir.glob("/sys/bus/scsi/devices/#{bus}:0:*/scsi_generic/*").each do |sg|
+ next if File.directory?("#{sg}/../../block")
+
disks << { :device => File.basename(sg) }
end
end
supports :status => true, :restart => true, :reload => true
end
+ # Don't try and do munin monitoring of disks behind
+ # an Areca controller as they only allow one thing to
+ # talk to the controller at a time and smartd will
+ # throw errors if it clashes with munin
+ disks = disks.reject { |disk| disk[:driver] == "areca" }
+
disks.each do |disk|
munin_plugin "smart_#{disk[:munin]}" do
target "smart_"