I have created a custom lookup with the range type. When I try to load the new lookup file, I get an error message ('''' is not a valid integer value).
If I define the range type with a single value instead of a from-to range, I can import it. But that is pretty useless.
<?xml version="1.0" encoding="UTF-8"?>
<ValueLookup id="beit.cisco.switch.hsrp.state" desiredValue="6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="PaeValueLookup.xsd">
<Lookups>
<SingleInt state="Ok" value="6">
active
</SingleInt>
<Range state="Warning" from="2" to="5">
standby
</Range>
<SingleInt state="Error" value="1">
down
</SingleInt>
</Lookups>
</ValueLookup>
Add comment