HI, We monitor our HP server temperatures with NPM via HP Insight Manager. We also need to monitor the temperature on our HP Z440 workstations. Unfortunately HP Insight Manager does not support their Z440 workstations.
Using powershell on the Z440 I can query the sensors. How do I get NPM to read these values?
Here is the output of the powershell query:
PS C:\> Get-WmiObject -namespace "ROOT\HP\InstrumentedBIOS" -query "SELECT * FROM HPBIOS_BIOSNumericSensor WHERE InstanceName='ACPI\\PNP0C14\\3_13' "
__GENUS : 2
__CLASS : HPBIOS_BIOSNumericSensor
__SUPERCLASS : HP_BIOSNumericSensor
__DYNASTY : HP_BIOSSensor
__RELPATH : HPBIOS_BIOSNumericSensor.InstanceName="ACPI\\PNP0C14\\3_13"
__PROPERTY_COUNT : 14
__DERIVATION : {HP_BIOSNumericSensor, HP_BIOSSensor}
__SERVER : SWIL-S2-WS9
__NAMESPACE : ROOT\HP\InstrumentedBIOS
__PATH : \\SWIL-S2-WS9\ROOT\HP\InstrumentedBIOS:HPBIOS_BIOSNumericSensor.InstanceName="ACPI\\PNP0C14\\3_13"
Active : True
BaseUnits : 2
CurrentReading : 39
CurrentState : Normal
Description : Reports CPU0 temperature
InstanceName : ACPI\PNP0C14\3_13
Name : CPU0 Temperature
OperationalStatus : 2
OtherSensorType :
PossibleStates : {Normal, Caution, Critical, Not Present}
RateUnits : 0
SensorType : 2
Size : 4
UnitModifier : 0
PSComputerName : SWIL-S2-WS9
Thanks