HI
Apologies if this has been answered but I am unable to find anything.
I am a network engineer and have no knowledge of sql but we are now using Solarwinds to monitor our network.
I managed to get lists of all our devices that are unmanaged/ alerts muted (basically mixing alot of swql queries found on this website)
I am now trying to create a custom swql query that will show any interface on all our nodes that has a specific Alias/Description .
I can get a list using the Basic SQL query but it just displays how many interfaces, does not show nodes or interfaces so we can easily click on link and load the page.
I believe i have the start to get what i want displayed . But am not sure what to query to list interfaces that have a specific Alias or description (looks like when i change description on an interface the alias also changed so either will work)
SELECT
,n.Caption AS [Node]
,i.interfacename as [Interface]
,i.interfacealias as [Alias]
,n.DetailsURL AS [_LinkFor_Node]
,i.DetailsURL AS [_LinkFor_Interface]
,'/Orion/images/StatusIcons/Small-' + n.StatusLED AS [_IconFor_Node]
,'/Orion/images/StatusIcons/Small-' + i.StatusLED AS [_IconFor_Interface]
?????????
ORDER BY [node] asc
Thanks