Hello,
I'm getting an SNMP value for temperature that is something like 229.
To get the real value I divide this returned value by 10 using <Sequence noset="true">div:10</Sequence>.
The result is showed is rounded though: I got 23 ºC in Dataminer user interface.
What must I do to get the 22.9 ºC value I was expecting in this case? Can you help?
Thank you.
Best regards
Bruno Sousa
Hi Bruno,
Do you have the Decimals tag defined in your parameter under the Interprete and also under the Display tags?
If you define there as having Decimals to 1 you should be able to see the 22.9 that you want
Thanks a lot, It woks!
< >
<Interprete>
<RawType>numeric text</RawType>
<LengthType>next param</LengthType>
<Type>double</Type>
<Sequence noset=”true”>div:10</Sequence>
</Interprete>
Hi João,
Forgot to put in the Display tag! Thank you!