Comments
-
I'm not sure exactly what you're looking for here. On any Orion Custom Chart page, there are buttons at the bottom for "Chart Data" (which gives you an HTML table of the values used to build the chart) and "Raw Data" (which is also an HTML table, but formatted and tagged in such a way that Excel will load it).
-
Unfortunately, the code that computes this set of objects and applicable alerts (or vice versa) is pretty complex and not currently exposed through SWIS.
-
No, this is not possible at this time.
-
This is a known problem in 8.5. It will be fixed in 8.5.1.
-
Right now the best way to do this is to use Integrated Windows authentication. This way your users don't have to explicitly log in to Orion. We don't have a mechanism for generating single-use login token values or anything like that.
-
Can you post the script?
-
Certainly. You can query Orion for a list of nodes. What kind of web page are you trying to populate?
-
You can find the Uris for monitored interfaces that are operationally down using a query like this: SELECT Uri FROM Orion.NPM.Interfaces WHERE OperStatus=2 Then you can call Delete on those Uris to remove them. Unfortunately, we don't have a good way of getting unmonitored Up interfaces added because the…
-
Are you looking for help with a specific issue or just some guidance on how to get started? If the latter, here are some docs to start with: Adding Avaya Call Manager Devices to VoIP and Network Quality Manager Configure an Avaya Call Manager for VoIP and Network Quality Manager - SolarWinds Worldwide, LLC. Help and…
-
Right now the best available documentation for the group API is comments in the powershell sample: OrionSDK/Groups.ps1 at master · solarwinds/OrionSDK · GitHub . There's a python sample for groups as well, but it doesn't cover as many use cases as the powershell sample. orionsdk-python/groups.py at master ·…
-
The green blocks represent inherited properties. The root type of the SWIS entity type hierarchy is System.Entity. It defines a few properties - DisplayName, Description, InstanceSiteId, InstanceType, and Uri - so all SWIS entity types will have those (because of how SWQL Studio builds that tree, an inherited property will…
-
We don't have an API for SNMP testing, but you could download the net-snmp client and use that for testing.
-
Correct - this service is not part of 9.0. It will be uninstalled when you upgrade. The new services that handle the functionality of the old OrionCustomPollingService.exe are: display name/service name/executable SolarWinds Job Engine/SWJobEngineSvc/SWJobEngineSvc.exe SolarWinds Job…
-
Yes, this is a bug in SAM 6.2, NPM 11.5, and other releases based on Orion Platform 2015.1. Please see the workaround in this thread: https://thwack.solarwinds.com/thread/75743#270516
-
It looks like you are providing a blank password. You need to provide the actual password. When you use Windows authentication with Orion, it will validate the username and password against Active Directory. If AD gives the thumbs up, then Orion will consider you authenticated. If you want, you can provide the "-Trusted"…
-
This is a fine place to ask about features. Another good place is here: Network Performance Monitor Feature Requests . There isn't a feature request section for the Orion platform, so these kinds of platform-level feature request land on NPM since it is the flagship product. That includes API-related requests (for example:…
-
Please run \Program Files\Solarwinds\Orion\SolarwindsDiagnostics.exe. That will produce a .zip file with information that will help us troubleshoot this issue. You can then attach that .zip file to this thread or you can open a ticket with support and send them the .zip file.
-
1 = Access port 2 = Trunk port
-
No, the API does not support config change templates at this time.
-
The Incident Number field is used by the ServiceNow integration feature. It is not available for directly populating from a script. You can add a custom property to nodes and use that to hold other kinds of incident numbers.
-
When a node is currently unmanaged, the Status will be '9' (see the Orion.StatusInfo entity to translate this enumeration; note that only a few of these status apply to nodes - many are specific to Interfaces, Applications, etc.), and the Unmanaged property will be true. When a node is not currently unmanaged (e.g.,…
-
The DownloadConfig verb will use the same connection profile that the website uses for the same operation. Are you use the Orion credentials you provide in $cred are for a user allowed to do downloads? If so this would seem to be some kind of bug.
-
Can you provide more context? Was this in a script or on the website?
-
It is normal for TrapVarbinds to have several times more rows than Traps. For each SNMP trap we receive, the Traps table gets one row and TrapVarbinds gets one row for each OID in the trap. A 10:1 ratio sounds a bit high, but it's not outside the possible range. What version of Orion are you running?
-
This is fixed in Orion Platform 2018.2 / NPM 12.3, out today.
-
Custom Query Resource does not have a way to specify conditional styles for columns, but that's a great idea.
-
This is not supported by the API today. If you want to try the database modification on your own, create one custom poller through the GUI that does what you want, then look at the table to see what it looks like. In SQL, "newid()" will generate a guid for you.
-
For getting the arguments into the "XmlElement[]" format in C#, try something like this: private static XmlElement[] PrepareInvokeArguments(params object[] args) { var elements = new List<XmlElement>(args.Length); foreach (var arg in args) { var dcs = new DataContractSerializer(arg.GetType()); var doc = new XmlDocument();…
-
I agree that the schema doc is not very descriptive. Unfortunately, we don't have the extra information written yet, so it wouldn't just be a matter of automatically generating it. 1. DisplayName is the preferred property. Caption and NodeName are aliases for backwards compatibility. 2. IPAddress is the preferred property.…