Update lsi-raid parameters

This commit is contained in:
akrus 2018-05-15 11:38:36 +03:00
parent ffcdf266c0
commit 7e1d91c456
1 changed files with 80 additions and 4 deletions

View File

@ -31,16 +31,92 @@ object CheckCommand "lsi-raid" {
arguments = {
"-C" = {
required = true
value = "$lsi_controller_number$"
description = "Insert the controller number to be checked."
}
"-p" = {
required = true
value = "$storcli_path$"
description = "Insert the path to storcli (e.g. /usr/sbin/storcli)."
}
"-EID" = {
value = "$lsi_enclosure_id$"
description = "Enclosure numbers to be checked, comma-separated."
}
"-LD" = {
value = "$lsi_ld_id$"
description = "Logical devices to be checked, comma-separated."
}
"-PD" = {
value = "$lsi_pd_id$"
description = "Physical devices to be checked, comma-separated."
}
"-Tw" = {
value = "$lsi_temp_warning$"
description = "RAID controller warning temperature."
}
"-Tc" = {
value = "$lsi_temp_critical$"
description = "RAID controller critical temperature."
}
"-PDTw" = {
value = "$lsi_pd_temp_warning$"
description = "Disk warning temperature."
}
"-PDTc" = {
value = "$lsi_pd_temp_critical$"
description = "Disk critical temperature."
}
"-BBUTw" = {
value = "$lsi_bbu_temp_warning$"
description = "Battery warning temperature."
}
"-BBUTc" = {
value = "$lsi_bbu_temp_critical$"
description = "Battery critical temperature."
}
"-CVTw" = {
value = "$lsi_cv_temp_warning$"
description = "CacheVault warning temperature."
}
"-CVTc" = {
value = "$lsi_cv_temp_critical$"
description = "CacheVault critical temperature."
}
"-Im" = {
value = "$lsi_ignored_media_errors$"
description = "Warning threshold for media errors."
}
"-Io" = {
value = "$lsi_ignored_other_errors$"
description = "Warning threshold for other errors."
}
"-Ip" = {
value = "$lsi_ignored_predictive_fails$"
description = "Warning threshold for predictive failures."
}
"-Is" = {
value = "$lsi_ignored_shield_counters$"
description = "Warning threshold for shield counter."
}
"-Ib" = {
value = "$lsi_ignored_bbm_counters$"
description = "Warning threshold for BBM counter."
}
"-b" = {
value = "$lsi_bbu$"
description = "Define if BBU is present and it's state should be checked."
}
"--noenclosures" = {
set_if = "$lsi_noenclosures$"
description = "Define if enclosures are present."
}
"--nosudo" = {
set_if = "$lsi_nosudo$"
description = "Do not use sudo when running storcli."
}
"--nocleanlogs" = {
set_if = "$lsi_nocleanlogs$"
description = "Do not clean up the log files after executing storcli checks."
}
}
vars.storcli_path = "/usr/sbin/storcli"
}