|
View:
New views
6 Messages
—
Rating Filter:
Alert me
|
|
|
Ipmi-sensors threshold valuesI have inte'l SR2500 server running with freeipmi-0.3.1. I see ipmi-sensor output as "At or Below
(<=) Lower Critical Thre shold" even the actual RPM is greater than threshold. Can someone please explain why it so .. Thanks, Ashish /usr/local/sbin/ipmi-sensors 13: Fan 1 (Fan): 8299.00 RPM (1720.00/NA): [OK] 14: Fan 2 (Fan): 9030.00 RPM (1720.00/NA): [At or Below (<=) Lower Critical Thre shold] 15: Fan 3 (Fan): 7955.00 RPM (1720.00/NA): [OK] 16: Fan 4 (Fan): 8901.00 RPM (1720.00/NA): [OK] 17: Fan 5 (Fan): 10478.00 RPM (2046.00/NA): [OK] 18: Fan 6 (Fan): 9672.00 RPM (2046.00/NA): [OK] _______________________________________________ Freeipmi-users mailing list Freeipmi-users@... http://lists.gnu.org/mailman/listinfo/freeipmi-users |
|
|
Re: Ipmi-sensors threshold valuesHi Ashish,
On Thu, 2009-10-08 at 17:12 -0400, Ashish Ray wrote: > 14: Fan 2 (Fan): 9030.00 RPM (1720.00/NA): [At or Below (<=) Lower > Critical Thre shold] (Note: 0.3.1 is quite old. I believe my statements are valid for the 0.3.1 release, but it's a release from quite some time ago, so maybe the code changed significantly.) If I had to bet there, may be a bug on your motherboard. The "At or below lower critical threshold" comes directly from the sensor. So if I had to guess: A) the 1720 rpm threshold listed by the sensor is invalid. B) the sensor indicating the "At or below lower critical threshold" flag is invalid. Any chance you could update your copy FreeIPMI and run w/ --debug? I can give you additional information if you can. Al -- Albert Chu chu11@... Computer Scientist High Performance Systems Division Lawrence Livermore National Laboratory _______________________________________________ Freeipmi-users mailing list Freeipmi-users@... http://lists.gnu.org/mailman/listinfo/freeipmi-users |
|
|
RE: Ipmi-sensors threshold valuesThanks Al. It seems that MB sensor flag is invalid. A different system (SR2500) is showing the
correct value. 13: Fan 1 (Fan): 6450.00 RPM (1720.00/NA): [OK] 14: Fan 2 (Fan): 7009.00 RPM (1720.00/NA): [OK] 15: Fan 3 (Fan): 6364.00 RPM (1720.00/NA): [OK] 16: Fan 4 (Fan): 6837.00 RPM (1720.00/NA): [OK] 17: Fan 5 (Fan): 9176.00 RPM (2046.00/NA): [OK] 18: Fan 6 (Fan): 8060.00 RPM (2046.00/NA): [OK] 19: PS1 AC Current (Current): 2.60 A (NA/11.90): [OK] Thanks aray > -----Original Message----- > From: Al Chu [mailto:chu11@...] > Sent: Thursday, October 08, 2009 5:37 PM > To: Ashish Ray > Cc: freeipmi-users@... > Subject: Re: [Freeipmi-users] Ipmi-sensors threshold values > > Hi Ashish, > > On Thu, 2009-10-08 at 17:12 -0400, Ashish Ray wrote: > > 14: Fan 2 (Fan): 9030.00 RPM (1720.00/NA): [At or Below (<=) Lower > > Critical Thre shold] > > (Note: 0.3.1 is quite old. I believe my statements are valid for the > 0.3.1 release, but it's a release from quite some time ago, > so maybe the code changed significantly.) > > If I had to bet there, may be a bug on your motherboard. The > "At or below lower critical threshold" comes directly from > the sensor. So if I had to guess: > > A) the 1720 rpm threshold listed by the sensor is invalid. > > B) the sensor indicating the "At or below lower critical > threshold" flag is invalid. > > Any chance you could update your copy FreeIPMI and run w/ > --debug? I can give you additional information if you can. since it is integrated with other software we can't upgrated to newer ver. > > Al > > -- > Albert Chu > chu11@... > Computer Scientist > High Performance Systems Division > Lawrence Livermore National Laboratory > _______________________________________________ Freeipmi-users mailing list Freeipmi-users@... http://lists.gnu.org/mailman/listinfo/freeipmi-users |
|
|
Re: Ipmi-sensors threshold valuesThe same strange thing happens to me. I have intel SR1500SAS chassis and S5000PAL board. One of three fans have correct status, and others - invalid. Is it MB bug or something else? ipmi-sensors -s 13,14,15 13: Fan 1A (Fan): 10730.00 RPM (3422.00/NA): [At or Below (<=) Lower Non-Critical Threshold] 14: Fan 2A (Fan): 13224.00 RPM (3422.00/NA): [OK] 15: Fan 3A (Fan): 10382.00 RPM (3422.00/NA): [At or Below (<=) Lower Critical Threshold] ipmi-sensors --version ipmi-sensors - 0.7.14 Debug output for impi-sensors --debug -s 13,14,15 command attached. debug.log |
|
|
Re: Ipmi-sensors threshold valuesHey Maxim,
This definitely looks like a bug on the motherboard: ===================================================== Get Sensor Reading Response ===================================================== [ 2Dh] = cmd[ 8b] [ 0h] = comp_code[ 8b] [ B1h] = sensor_reading[ 8b] [ 0h] = reserved1[ 5b] [ 0h] = reading_state[ 1b] [ 1h] = sensor_scanning[ 1b] [ 1h] = all_event_messages[ 1b] [ 3h] = sensor_event_bitmask1[ 8b] the sensor event bitmask is indicating "at or below lower critical threshold" (and also "at or below lower non-critical", but FreeIPMI only outputs the "worst" one). Using your debug output for sensor #15, I'm calculating: sensor reading = 10266 lower non critical threshold = 3944 lower critical threshold = 3422 The 3422 matches the output, so I'm pretty sure I'm calculating correctly :-) So clearly, the sensor reading is no where near the thresholds. At first, I thought it could be a bug w/ endian, perhaps the bits were flipped and the upper critical threshold had been triggered instead. However: [ 1h] = readable_thresholds.lower_non_critical_threshold[ 1b] [ 1h] = readable_thresholds.lower_critical_threshold[ 1b] [ 0h] = readable_thresholds.lower_non_recoverable_threshold[ 1b] [ 0h] = readable_thresholds.upper_non_critical_threshold[ 1b] [ 0h] = readable_thresholds.upper_critical_threshold[ 1b] [ 0h] = readable_thresholds.upper_non_recoverable_threshold[ 1b] indicates there are no upper thresholds. Only lower ones. I was hoping I could add a workaround to deal with this, but I'm not sure if I can. It just seems to be an outright bug in the firmware. The "lower critical threshold" flag shouldn't be set. I suppose I could try and add some type of "check the thresholds manually" type of option. In other words, manually check the thresholds instead of trusting the motherboard. Would that be something you guys would be interested in having to help deal with this problem? Al On Tue, 2009-11-03 at 04:00 -0800, Maxim Kuleshov wrote: > > Ashish Ray wrote: > > > > I have inte'l SR2500 server running with freeipmi-0.3.1. I see ipmi-sensor > > output as "At or Below > > (<=) Lower Critical Thre shold" even the actual RPM is greater than > > threshold. Can someone please > > > The same strange thing happens to me. I have intel SR1500SAS chassis and > S5000PAL board. One of three fans have correct status, and others - invalid. > Is it MB bug or something else? > > ipmi-sensors -s 13,14,15 > > 13: Fan 1A (Fan): 10730.00 RPM (3422.00/NA): [At or Below (<=) Lower > Non-Critical Threshold] > 14: Fan 2A (Fan): 13224.00 RPM (3422.00/NA): [OK] > 15: Fan 3A (Fan): 10382.00 RPM (3422.00/NA): [At or Below (<=) Lower > Critical Threshold] > > ipmi-sensors --version > > ipmi-sensors - 0.7.14 > > Debug output for impi-sensors --debug -s 13,14,15 command attached. > http://*old.nabble.com/file/p26160080/debug.log debug.log > Albert Chu chu11@... Computer Scientist High Performance Systems Division Lawrence Livermore National Laboratory _______________________________________________ Freeipmi-users mailing list Freeipmi-users@... http://lists.gnu.org/mailman/listinfo/freeipmi-users |
|
|
Re: Ipmi-sensors threshold valuesThank you, I also guess the same. In my case, I was only interested why alert LED on front of chassis turned amber, so I found ipmi utilities and tried to get details. But, I'm unable to reset LED state as soon as MB thinks there are some thresholds exceeded... |
| Free embeddable forum powered by Nabble | Forum Help |