Go to main content
Oracle® Server Management Agents for Oracle Solaris 11.3 ユーザーズガイド

印刷ビューの終了

更新: 2017 年 3 月
 
 

センサーグループ情報の取得方法

  • コマンドプロンプトで次のように入力します。

    # snmpwalk -v 2c -c public -m ALL localhost SUN-HW-MONITORING-MIB::sunHwMonSensorGroup | grep '\.9 = '

    ここで、grep '\.9 = ' は、対象の FRU のプロパティーをフィルタしています。

    次のような出力が表示されます。

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorType.9 = INTEGER: voltage(133)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorName.9 = STRING: /SYS/MB/V_+12V

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruIndex.9 = INTEGER: 146

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruName.9 = STRING: /SYS/MB

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorAlarmStatus.9 = INTEGER: cleared(1)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorStateDescr.9 = STRING: Normal

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorCurrentValue.9 = INTEGER: 12160

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorBaseUnit.9 = INTEGER: volts(4)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorExponent.9 = INTEGER: -3

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperNonRecoverableThreshold.9 = INTEGER: 14994

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperCriticalThreshold.9 = INTEGER: 13986

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorUpperNonCriticalThreshold.9 = INTEGER: 12978

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerNonRecoverableThreshold.9 = INTEGER: 8946

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerCriticalThreshold.9 = INTEGER: 9954

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorLowerNonCriticalThreshold.9 = INTEGER: 10962

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorEnabledThresholds.9 = BITS: FC lowerThresholdNonCritical(0) upperThresholdNonCritical(1) lowerThresholdCritical(2) upperThresholdCritical(3) lowerThresholdFatal(4) upperThresholdFatal(5)


    注 -  サーバーで Oracle ILOM 2.0 が使用されている場合は、次の行が返されます。

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorType.9 = INTEGER: unknown(1)

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruIndex.9 = INTEGER: -1

    SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorParentFruName.9 = STRING:

    この情報は Oracle ILOM 3.0 に固有であるため、これは予想される動作です。



    ヒント  - 次の行を分析するときは、sunHwMonNumericVoltageSensorCurrentValue は sunHwMonNumericVoltageSensorExponent に設定されている指数を使用して返されることを忘れないでください。SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorCurrentValue.9 = INTEGER: 12290SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorBaseUnit.9 = INTEGER: volts(4)SUN-HW-MONITORING-MIB::sunHwMonNumericVoltageSensorExponent.9 = INTEGER: -3この例では指数が -3 であり、これは sunHwMonNumericVoltageSensorCurrentValue の電圧値に 10-3 を乗算する必要があることを意味します。結果は 12.290 ボルトです。