Like the title says I would like to have a little table at the top of my node detail page in NPM that shows the node name, ip address, mac address, switch and switch port. Is such a thing possible? So far I've been able to get the node name and IP to show but when I try to add the PhysicalAddress to the query it fails. Here's what I have that works so far and what I tried that failed.
Working- SELECT Caption AS NodeName, IPAddress FROM Orion.Nodes WHERE NodeID = ${NodeID}
Not Working - SELECT Caption AS NodeName, IPAddress, PhysicalAddress FROM Orion.Nodes WHERE NodeID = ${NodeID}