I am looking to build an information table similar to the SNMP tab for devices. I have tried using the oid_column command but the data comes in an unusable string. If this data where able to be run vertically instead of horizontally you could actually read the information.
What I need would be to add custom columns to the snmp tab. I need to see the if_alias of a port so that I know whats pugged in where.
Here are a couple of things I have tried with limited to no success.
I tried this in tool tip but it is unreadable in this format.
[oid_column("1.3.6.1.2.1.31.1.1.1.18")][oid_column("1.3.6.1.2.1.2.2.1.7")][oid_column("1.3.6.1.2.1.2.2.1.8")]
This works but you need to reproduce this for every port manually. This gives me the PORT -- SPEED -- OPER UP/DOWN -- ADMIN UP/DOWN -- PORT ALIAS.
if (string_size(oid("1.3.6.1.2.1.31.1.1.1.1.1")),concatenate (oid("1.3.6.1.2.1.31.1.1.1.1.1")," ",oid("1.3.6.1.2.1.31.1.1.1.15.1")," ",oid("1.3.6.1.2.1.2.2.1.8.1")," ",oid("1.3.6.1.2.1.2.2.1.7.1")," ",oid("1.3.6.1.2.1.31.1.1.1.18.1")),"")
Anybody have any ideas on how to make this information available automatically without having to customize every single device I add or how to create a custom table of information?