Missing QOS_TEMPERATURE_TEMPERATURECELSIUS - CheckpointRhEnvCPUTemp
search cancel

Missing QOS_TEMPERATURE_TEMPERATURECELSIUS - CheckpointRhEnvCPUTemp

book

Article ID: 189644

calendar_today

Updated On:

Products

DX Unified Infrastructure Management (Nimsoft / UIM)

Issue/Introduction

We are missing CheckpointRhEnvCPUTemp QOS_TEMPERATURE_TEMPERATURECELSIUS from some Checkpoint devices.

UIM Server 20.1.0

SNMPC: 4.04

 

 

 

Environment

Release : 20.1

Component : UIM - SNMPCOLLECTOR

Resolution

Follow these steps to resolve the issue:

1) Stop the Snmpcollector probe

2) Update the file "snmp-checkpoint-rh-env-cpu-temp.xml" file present in Nimsoft probe directory with change value mentioned  as below.

Eg: Nimsoft Probe directory location : -  C:\Program Files (x86)\Nimsoft\probes\network\snmpcollector\VendorCertifications

Existing value : <Expression destAttr="TemperatureCelsius">snmpOctetStringFloat(tempertureSensorValue)</Expression>

Change value : <Expression destAttr="TemperatureCelsius">Double.parseDouble(tempertureSensorValue)</Expression>

Existing value : <Expression destAttr="TemperatureFahrenheit">snmpProtectedDiv((1.8*(snmpOctetStringFloat(tempertureSensorValue))),1)+snmpProtectedDiv((32*(snmpOctetStringFloat(tempertureSensorValue))),(snmpOctetStringFloat(tempertureSensorValue)))</Expression>

Change value :<Expression destAttr="TemperatureFahrenheit">snmpProtectedDiv((1.8*(Double.parseDouble(tempertureSensorValue))),1)+snmpProtectedDiv((32*(Double.parseDouble(tempertureSensorValue))),(Double.parseDouble(tempertureSensorValue)))</Expression>

3) Start the Snmpcollector probe.

Attachments