I have a custom SNMP sensor that shows integer values (100, 101, 102 and 103) but the PRTG shows the graphs with the vertical axis in percentage (%). I have already adjusted the manual vertical scale with the value 100 as minimum and 103 as maximum, but the problem continues, the percentage continues to appear. What I want is for the vertical axis scale to show me the values in the same format that the sensor receives, I do not want them in percentage. What could I do?.
Additionally, for this sensor I am using the following Lookups file:
<? xml version = "1.0" encoding = "UTF-8"?> <ValueLookup id = "StateOfBodies" desiredValue = "1" undefinedState = "Warning" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: noNamespaceSchemaLocation = "PaeValueLookup.xsd"> <Lookups> <SingleInt state = "Ok" value = "100"> Float </ SingleInt> <SingleInt state = "Ok" value = "101"> Download </ SingleInt> <SingleInt state = "Ok" value = "102"> Load </ SingleInt> <SingleInt state = "Ok" value = "103"> Not Available </ SingleInt> </ Lookups> </ ValueLookup>
Add comment