Is it possible to convert the values being received from SNMP monitors to floating point before conversion?
I have some equipment that is reporting environment values as integers - example: room temperature is 257, when it is actually 25.7 deg celcius. I can do the divide by 10 in the monitor, but the value is kept as integer and thus truncated to 25.
This lack of precision in the converted value makes it difficult to spot trends across a day or week, when the variation may be < 1 or 2 deg C through the whole period. I am also wanting to compare the data between several sources, so getting the data into a common format prior to comparison is essential.

