Comments
-
No news at this time. It's in the system, but not scheduled for a release right now.
-
That's a table OID. One Universal Device Poller will get all of the values. It's the same effort for you whether there is 1 VIP or 1000.
-
Good suggestion - updated.
-
Justin, Another suggestion: rename the \Inetpub\Solarwinds\Orion\custom.config.txt to just "custom.config" (that is, remove the .txt extension) and restart IIS. That will cause the website to use "localhost:80" when making these problematic requests back to itself.
-
Let me try to break it down another way. I'll use this query: SELECT V.VolumeID, V.Node.NodeName, V.Caption, V.TypeFROM Orion.Volumes AS VWHERE V.NodeID=123 This is basically the same as a query from earlier in this thread, but this time I gave Orion.Volumes an alias "V" that will hopefully make things easier to refer to.…
-
Yes, against the NCM server. You don't need SWQL Studio installed on the NCM server. SWQL Studio can connect to it remotely. Or you can use the rest API to run the query.
-
The NCM-1604 bug is fixed in NCM 7.7.
-
The NCM team reminded me that there is another, newer API for performing these operations. It doesn't solve problem you are having with certificate authentication, but it does make it easier to track the progress and results of operations. See NCM Config Transfer · solarwinds/OrionSDK Wiki · GitHub for documentation on…
-
Oops - I forgot there were two problems in this thread! To debug the hang, I'm going to need a memory dump. You can create that using Microsoft's "ADPlus" tool, which is part of Debugging Tools for Windows. You can download this from www.microsoft.com/.../installx86.mspx Once that's installed, wait for NetPerfMonService to…
-
Strange. That type is not mentioned in the configuration you are sending to StartDiscovery, so I don't know how it is entering the picture. At any rate, you said at the beginning of this thread that this operation works in lab but not production. That points to some difference between those installations. The…
-
This line: results = swis.invoke('Orion.Nodes', **props) Should be this: results = swis.create('Orion.Nodes', **props)
-
This should be fixed in SP1. We're sorry about this, but it will be sorted out soon.
-
There are a number of timeouts in the system. Apparently increasing that one wasn't enough to get this operation to succeed. Let me answer your numbered questions first: 1. We do have a guide on configuring SQL Server and its hardware for best performance in Orion (SQL Server Configuration Best Practices - SolarWinds…
-
ExecuteScript is expecting not one Guid but an array of Guids. From python you can just send a list: swis.invoke('Cirrus.ConfigArchive', 'ExecuteScript', [ 'f7afc7ef-3055-4b49-93e0-d5ef33479964' ], 'sh mac address-table')
-
Generally the Alerting Engine runs as Local System. This service can't launch GUI programs like Notepad or Calc. I don't know how it's succeeding in your tests. When I want a simple external program to check that an alert is firing, I use this VB script: Const ForReading = 1, ForWriting = 2, ForAppending = 8 set args =…
-
So your curl is built with gnutls instead of openssl. Searching for the "Error in the pull function" message, I see various reports of things that turned out to be network issues. Let's try two commands to get more information: gnutls-cli -p 17778 -d 99 yourserver.hostname And: gnutls-cli-debug -p 17778 yourserver.hostname
-
Another possibility is that your Orion user account could have a specific node details view set rather than "By Device Type". You can check this under Admin > Account Views.
-
A bunch of stuff about thresholds, but nothing about credentials. Did you visit the Edit Node page again to reproduce the error so it would be fresh in the log first?
-
SWQL supports the "GROUP BY GROUPING SETS" feature for doing these kinds of subtotal/grand total rows. Here's an explanation of it from a SQL perspective - the SWQL version works the same way. GROUPING SETS in SQL Server 2008 – Craig Freedman's SQL Server Blog
-
Are lsdorionwest and co1minswonwb503 the same box?
-
I opened feature request IPAM-705 for creating supernets and groups through the API. Are there other properties you want to edit that you still don't have an API for yet? I want to get all of your needs captured.
-
Can you show the command line you are using for Connect-Swis?
-
I suggest using Fiddler (http://www.fiddler2.com) with the "Decrypt HTTPS traffic" option turned on. Then you can use SWQL Studio (connecting to the "Orion over HTTPS") server type to generate some working requests and compare them to what is being generated by SOAP::Lite. It may also be helpful to use soapUI…
-
This will be fixed in the next service pack. There will be a new URL for charts that (like the old one) supplies all of the parameters needed to generate the chart instead of using ChartImagePipe.aspx and relying on the asp.net session.
-
Using the webbased Node Manager - when I List Resources for a CMTS (Cisco UBR7246) i get the usual options under each interface - Interface Traffic Charts and Interface Error Charts - but I also get an option called Signal Quality Charts - I assume this is a leftover from the old Broadband version ?? the Signal quality…
-
I recommend you open a case with Microsoft. You can show them a very short powershell script that works as a regular user but fails as local system.
-
You need a newer version of the Orion SDK. Here's the download link for the current one: http://downloads.solarwinds.com/solarwinds/Release/Orion/OrionSDK-1.8.zip
-
I opened two issues. One internal (NCM-1604) to get NCM to deal properly with certificate auth for these calls. The other on GitHub (Support impersonation for certificate authentication in PowerShell Connect-Swis · Issue #68 · solarwinds/OrionSDK · GitH… ) to offer another possible workaround. See that issue for details.
-
If by "from notepad" you mean "from a text file", then you can put one server name per line in a text file and load it in powershell with a line like "Get-Content servers-to-unmanage.txt". This will load it as an array of strings with one entry per line in the file. Loop through that, query SWIS to get the Uri for each…
-
There is an "AddNote" verb on the Orion.AlertStatus entity. This entity is part of the API for the older "Advanced Alerting" system. It still works, but the current and preferred APIs are listed on this page: Alerts · solarwinds/OrionSDK Wiki · GitHub