Good afternoon THWACK Community,
I apologize if this is an old topic but I have a question about adding Icons with the SWQL Query. I am using the following to get the vendor Icon to show with the node name. I am also attempting to get the status Icon of the node to appear as well but when I try to get both Icons I will either get no Icons or an error message. The question is Is it possible to get the Vendor Icon and the Node Status Icon to appear with the Node Name? My latest try is below
SELECT top 100
CONCAT(' ', N.Caption) AS [Node], -- Use CONCAT to Add spaces before Node Name for Icon spacing
CONCAT('/NetPerfMon/Images/Vendors/', N.Icon) AS [_IconFor_Node] -- Vendor Icon
CONCAT('/Orion/images/StatusIcons/Small-', N.StatusLED) AS [_IconFor_Status] -- Status Icon
FROM Orion.Nodes N