We need to access the information on all the devices present in the snmpcollector.
Where can I get this information from the UIM Database?
SNMPcollector maintains its own DB.
You can access this DB
going to:
http://<snmpcollector_ip>:9715/database
The first screen is an authentication page with several parameters. Just click "Connect" without changing anything.
**This is a relational database and we strongly discourage changing values here unless specifically instructed to do so by Support.**
If you need to find a specific device attribute:
Identify the ID of the device:
SELECT * FROM SNMPDEVICE
And then:
SELECT * FROM SNMPDEVICE_ATTRIBUTES where ID_OID = '<id_from_query_above>'