I have seen the light! This make life so much easier (in some parts anyway). Have you, like me, struggled with getting the correct status icons when writing SWQL for Custom Query widgets? Created long CASE statements or complex JOIN’s to translate the statusID of Nodes, Components, applications etc into icon url's. If so…
Hello there, we are trying to create some automations via Solarwinds's API, the problem is, i could never find any book or any description what i can do, or what are the URLs or Body to begin with. Does anyone care to explain is such thing is even possible? or everyone around the world just guessing stuff? We did one…
ForEach ($node in $list) { $swis = Connect-Swis -host $orion_server -UserName $username -Password $passwd $nodeID = Get-SwisData $swis "Select NodeID From Orion.Nodes where Caption = '$node'" Invoke-SwisVerb $swis Orion.Nodes Unmanage @("N:$nodeID",$StartDate,$EndDate,"false") } In the above script am storing the node…
We are trying to use a PowerShell script to create Dependencies in Solarwinds and getting the below errors: We tried to use both the If logics (Snippet1 and Snippet 2), but no luck. It seems that the CreateDependency the verb is not available in the Orion.Container the entity in SolarWinds. Unfortunately, the…
We have a widget for Applications and I am trying to include a field to show if the application is in maintenance. I have not been able to find the field for the Application if it is in maintenance. Tried: SELECT c.Name as [Component Name] , c.DetailsUrl as [Component URL] , c.Application.DetailsUrl as [App URL] ,…
I specifically want those related to Node availability and Interface availability. Management wants something better than the existing availability widgets out of the box. Management doesn't like the availability widgets that come out of the box and I find that I can build better tables with SWQL But, I cannot find the…
My company has almost 300 sites. There are about 60 network engineers that support these sites. I want to create a network landing page for these guys with a standard modern dashboard. I want to provide a drop down box with all of the sites and whatever site they pick, that sited will feed all of the widgets in the…
SELECT N.Caption AS Node, N.IPAddress AS Node_IP, I.Name AS Node_Int, NCE.DeviceId AS AP_Name, NCE.IpAddress AS AP_IP, NCE.DevicePort AS AP_Int FROM Orion.NodeCdpEntry NCE INNER JOIN Orion.Nodes N ON N.NodeID = NCE.NodeID INNER JOIN Orion.NPM.Interfaces I ON I.NodeID = NCE.NodeID AND I.Index = NCE.IfIndex WHERE AP_Name…
Hi, I'm using the 'DiscoverAndAddInterfacesOnNode' script from Github. # The node ID to discovery interfaces on $nodeId = 99 # Discover interfaces on the node $discovered = Invoke-SwisVerb $swis Orion.NPM.Interfaces DiscoverInterfacesOnNode $nodeId if ($discovered.Result -ne "Succeed") { Write-Host "Interface discovery…
Hi all, I've created a script that assigns pollers to certain interfaces over network devices like a switch, etc. This script was written in Python and tested successfully, as a premise it receives the node name (caption) and SwisClient connection. It uses the AddInterfacesOnNode Verb to assign the Pollers and…
It looks like you're new here. Sign in or register to get started.