-
Solarwinds API for Interface Stats
Hello, I am looking for Solarwinds Orion API which can provide me interface stats. Please share if anyone developed this for third party integration.
-
ERROR: Invoke-SwisVerb : Verb Orion.AlertSuppression.SuppressAlerts cannot unpackage parameter 0 of type System.String
Trying to create a function that will mute a node on the fly and I am getting the following error: Invoke-SwInvoke-SwisVerb : A positional parameter cannot be found that accepts argument 'System.Object[]'. At line:41 char:9 + Invoke-SwisVerb -SwisConnection $Swis -EntityName $Entity -Ve ... +…
-
Rest API / PowerShell / Unmanage Nodes
Hi all, I'm trying to write a PowerShell script that uses REST to connect to our Orion installation, and, in this instance, sets the node to unmanaged for 10 years (part of our decom process so really it can be indefinite). I have been banging my head against the wall with this for almost a week. Can someone please take a…
-
How to a sign Node to existing DeviceStudioPoller by using Python Orion sdk.
Many thanks
Hi All, I found the PollerID by displaying all existing PollerID from Orion.DeviceStudio.Pollers with the request below SELECT TOP 1000 PollerID, TechnologyID, Name, Description, Author, Vendor, Tags, Priority, Enabled, TechnologyPollingID FROM Orion.DeviceStudio.Pollers and now: I would like to assign Node to this…
-
SWQL Development in VS Code / Visual Studio
Coming from a SQL background I've started working with Solarwinds SWQL and using the SWQL Studio. All things the same, though, I like developing in VS Code or Visual Studio. Things like the black background, color-coded syntax checking, other features are a real plus. I'm wondering if some kind of template or plug-in for…
-
Can I create a dashboard that I can limit access to, where users with rights can put nodes I pre-select in and out of maintenance (mute alerts)?
So, completely new to SolarWinds and I am familiarizing myself with the platform. Some things seem very intuitive, and others counter intuitive. What I would like to do is create a Dashboard for our On Call rotation, where they have access to view a group of pre-selected Nodes and mute or unmute alerts on them, but…
-
Solarwinds automatic ticketing using GLPI via API
Dear Everyone, We have a task to connect the Solarwinds to GLPI for automatic ticket creation of new alerts generated on the alert dashboard but as per support GLPI is not currently support ted by the current version of Solarwinds, we are using 2023.4.2. I managed to create an endpoint but we are having issue with regards…
-
Import-module 3.2.0.50049 fails with error on System.ServiceModel.Primitives in Azure
Hello all, I am using Azure Functions with managedDependency setup in requirements.psd1 to use specific PS module versions. It was working properly, when I configured required module to be 'SwisPowerShell' = '3.1.0.343'. All the module commands worked properly in scripts behind for months. But as soon as I recently updated…
-
SWQL query results not showing under powershell script
Hi All, To identify components that have not been NOT UP for 180 days and delete them from the node level, first I have generated the following SWQL query, which produces the expected result when executed via SWQL Studio: select c.ComponentID ,c.DetailsUrl ,cst.Timestamp from orion.nodes n join orion.apm.Application a on…
-
Adding Custom Properties to a SWQL query
Hi So I'm creating a dashboard and want to add a table that shows node that are down and how long they have been i achieved that by the below SWQL SELECT TOUPPER(SUBSTRING (n.Caption,1, CASE WHEN CHARINDEX('.',n.Caption,1) <=4 THEN LENGTH(n.Caption) ELSE (CHARINDEX('.',n.Caption,1)-1) END)) AS [IP] ,case when…