Hello all,
I'm polling an OID for the AC voltage on a device, the problem is that if there is a power failure the device doesn't return a zero, it returns 32767000 and that makes the graphs unreadable. I need to use a transform to divide the results by 1000 anyway so I was hoping that I could use an IF statement like this "IF PolledValue = 32767000 THEN 0 ELSE PolledValue/1000" but I can't seem to get it to work. I searched the documentation and I'm getting the impression that you can't use an IF/THEN/ELSE in a transform. Any ideas?
Thank you