fix hp-p2000-xmlapi - add ok state for health mode

This commit is contained in:
Stephane Duret 2019-08-07 11:34:56 +02:00
parent 757390d6ce
commit e2b56a7696
1 changed files with 5 additions and 2 deletions

View File

@ -38,19 +38,22 @@ sub set_system {
$self->{thresholds} = {
# disk, enclosure, vdisk
default => [
['ok', 'OK'],
['degraded', 'WARNING'],
['failed', 'CRITICAL'],
['failed|fault', 'CRITICAL'],
['unknown|not available', 'UNKNOWN'],
],
fru => [
['ok', 'OK'],
['absent', 'WARNING'],
['fault', 'CRITICAL'],
['not available', 'UNKNOWN'],
],
sensor => [
['ok', 'OK'],
['warning|not installed|unavailable', 'WARNING'],
['error|unrecoverable', 'CRITICAL'],
['nknown|unsupported', 'UNKNOWN'],
['unknown|unsupported', 'UNKNOWN'],
],
};