I think the problem is that you have not setup your Universal device poller settings correctly.
Can you post screenshots of how you setup your pollers, customer poller table viewer, and results of your SQL query?
Which MIB table? what is the OID?
Have you used the 'label' option in the universal device poller to say which column contains the label for the row?
this is what this data looks like in the WEB UI; I was lazy and didn't use enumeration for the poller type and map the values onto up/down, etc
here is a query to gather data from the labels and status:
SELECT nodeid,CPL.label, CPS.Status FROM CustomPollerStatus CPS INNER JOIN CustomPollerAssignment CPA ON CPS.CustomPollerAssignmentID = CPA.CustomPollerAssignmentID Inner Join CustomPollerLabels CPL on CPL.CustomPollerAssignmentID=CPA.CustomPollerAssignmentID and CPL.rowid=CPS.rowid inner join CustomPollers ON CPA.CustomPollerID = CustomPollers.CustomPollerID and CustomPollers.UniqueName = 'wlanAPStatus' where label like '%RJL%'
5432 | ADS.RJL-TEST.AP01 | 2 |
5435 | ADS.RJL-TEST.AP01 | 1 |
The rowid is something horrible and not human readable.