I'm working on creating a dashboard that displays nodes down, based on IP address. Is there a way to order the down nodes IP address? The down nodes are showing up but not in order.
Example: IP_Address Like ' *192.168.' AND Status=2
Hi Kyle,
You would need to create a custom widget something along the lines of:
SELECTn.Caption AS [Node],'/Orion/images/StatusIcons/Small-' + n.StatusIcon AS [_IconFor_Node],n.DetailsUrl AS [_LinkFor_Node],n.IP_AddressFROM Orion.Nodes nWHERE n.Status = 2 AND n.IP_Address LIKE '192.168.%'ORDER By n.IP_Address ASC
Hope that helps.