Fix #1522
This commit is contained in:
parent
9de7e3c3c3
commit
991f1b5145
|
@ -26,27 +26,27 @@ use warnings;
|
|||
sub load {}
|
||||
|
||||
my $bits_alarm = {
|
||||
0 => 'at least two fans have been operating at less than 90% of their nominal speed for 5 minutes or more',
|
||||
1 => 'the power supply fan has been operating at less than 90% of its nominal speed for 10 minutes or more, but less than 15 minutes',
|
||||
2 => 'the power supply fan has been operating at less than 90% of its nominal speed for 15 minutes or more',
|
||||
4 => 'cmgCpuTemp has exceeded its warning threshold',
|
||||
5 => 'mgDspTemp has exceeded its warning threshold',
|
||||
7 => 'Power On Status Test failure -NCE, QUICC test failures on power up',
|
||||
8 => 'The +5.1 v power supply to the MG processor is out of range',
|
||||
9 => 'The +3.3 v power supply to the VoIP complexes is out of range',
|
||||
10 => 'The +3.3 v power supply to the VoIP complexes is out of range',
|
||||
11 => 'The +1.58 v power supply to the DSP units is out of range',
|
||||
12 => 'The +2.5 v power supply to the 8260 processor is out of range',
|
||||
13 => 'The -48 v auxiliary power supply to the endpoints is out of range',
|
||||
14 => 'The +12 v power supply to the fans is out of range',
|
||||
16 => 'Clock synchronization signal is lost',
|
||||
17 => 'Clock synchronization signal warning. Only one clock syncronization signal source remains',
|
||||
18 => 'Clock synchronization signal excessive switching',
|
||||
19 => 'TDM Test Expansion Box 1 Failure',
|
||||
20 => 'TDM Test Expansion Box 2 Failure',
|
||||
21 => 'PoE Power Supply Base Box Failure',
|
||||
22 => 'PoE Power Supply Expansion Box 1 Failure',
|
||||
23 => 'PoE Power Supply Expansion Box 2 Failure',
|
||||
23 => 'at least two fans have been operating at less than 90% of their nominal speed for 5 minutes or more',
|
||||
22 => 'the power supply fan has been operating at less than 90% of its nominal speed for 10 minutes or more, but less than 15 minutes',
|
||||
21 => 'the power supply fan has been operating at less than 90% of its nominal speed for 15 minutes or more',
|
||||
19 => 'cmgCpuTemp has exceeded its warning threshold',
|
||||
18 => 'mgDspTemp has exceeded its warning threshold',
|
||||
16 => 'Power On Status Test failure -NCE, QUICC test failures on power up',
|
||||
15 => 'The +5.1 v power supply to the MG processor is out of range',
|
||||
14 => 'The +3.3 v power supply to the VoIP complexes is out of range',
|
||||
13 => 'The +3.3 v power supply to the VoIP complexes is out of range',
|
||||
12 => 'The +1.58 v power supply to the DSP units is out of range',
|
||||
11 => 'The +2.5 v power supply to the 8260 processor is out of range',
|
||||
10 => 'The -48 v auxiliary power supply to the endpoints is out of range',
|
||||
9 => 'The +12 v power supply to the fans is out of range',
|
||||
7 => 'Clock synchronization signal is lost',
|
||||
6 => 'Clock synchronization signal warning. Only one clock syncronization signal source remains',
|
||||
5 => 'Clock synchronization signal excessive switching',
|
||||
4 => 'TDM Test Expansion Box 1 Failure',
|
||||
3 => 'TDM Test Expansion Box 2 Failure',
|
||||
2 => 'PoE Power Supply Base Box Failure',
|
||||
1 => 'PoE Power Supply Expansion Box 1 Failure',
|
||||
0 => 'PoE Power Supply Expansion Box 2 Failure',
|
||||
};
|
||||
|
||||
sub check {
|
||||
|
|
Loading…
Reference in New Issue