Comments
-
You can certainly uninstall those services if you want. But the easiest thing would be to just disable them using the Services snapin. We are planning to change the Configuration Wizard to do this for you in the future.
-
If the node/interface/volume IDs match up, then you should be able to copy rows between the two tables ok. You would just need to make sure you don't get EventID collisions. One way to avoid that would be to just leave the EventID column out of the copy operation. When you say "it balked" when you tried to copy the events,…
-
Yes. Also NPM 12.0.1.
-
You can use the Universal Device Poller to monitor each CPU independently. Create a table poller for 1.3.6.1.2.1.25.3.3.1.2 (hrProcessorLoad). There's no one-gauge-for-each-CPU resource in 9.0, but you can add a summary chart for this poller. That will give you a line for each CPU. The report you are using is accurate for…
-
Unfortunately, the agent management API does not support adding a connection to an existing agent. This lack is tracked as DC-1045 internally; I'll add your vote to it.
-
My first recommendation would be to upgrade. But I understand if you are not able. A couple of possible workarounds: * Just add the interfaces without regard to their status, wait for NPM to poll them (watch for their status to go from Unknown to either Up or Down) and then delete the Down ones. * Use a separate tool (such…
-
It looks like this is a known issue (bug 174380) with SAM 5.2 and SWISv3. Try the Unmanage call while connected to SWISv2 (Connect-Swis -v2).
-
This bug is tracked internally as CORE-8845. It is fixed in code that hasn't shipped yet. When the fix ships, I'll update this thread.
-
I went through the history to see what was going on here. Orion.NPM.CustomPollerLabels was added to the Information Service schema in NPM 10.5, and only to the SWISv3 schema. , if you are on NPM 10.5 or later, check that you are connecting to SWISv3.
-
The problem is not with your installation or your understanding. The problem is that our schema does not have a relationship defined for these two combinations. Other than this forum thread, there is no documentation of these two connections.
-
The logs are in c:\ProgramData\SolarWinds\InformationService\v3.0\ (not under Program Files (x86)).
-
SELECT Caption, ToLocal(LastBoot) AS LocalLastBoot FROM Orion.Nodes
-
In general, anywhere you can refer to a property in SWQL, you can refer to a chain of navigation properties - the SELECT clause, WHERE clause, the ON clause of an explicit JOIN, etc. The syntax looks C-family languages accessing a property on an object. To see what navigation properties are available from what entity…
-
In that case I recommend using ExecuteScript to dump the mac table and getting the results from NCM.TransferResults.
-
What command line are you using for your action?
-
The license errors are harmless and unrelated. Have you tried restarting SWISv3?
-
1. The "Adding a Node for Monitoring" section of Orion SDK.pdf, the names of pollers (like "Poller_RT", "Poller_CR", etc.) are given. The poller names to use have changed in 10.2. We're working on updating that document to reflect the new names. 2. Right now we don't have any plans to offer formal support for SDK users. I…
-
That's very strange. Some other things to try: - Turn on debugging for the python requests module - http://stackoverflow.com/a/16630836/13012 - Run python on a different machine and connect remotely. - If you are in python2, try python3 and vice versa. - Use the Fiddler proxy to see the request from Python - Fiddler free…
-
I added a page on the GitHub wiki to describe this verb: https://github.com/solarwinds/OrionSDK/wiki/NCM-Config-Search
-
The log file on lsdorioneast doesn't have the error? That is very strange. What version(s) of the .NET Framework are installed on that server?
-
Can you post more of your script plus the versions of the Orion product(s) you are using it with?
-
1. Add a "Custom Table" resource to a Node Details view. 2. Edit the resource to set it up. 3. Uncheck "Use current network object as Data Source". 4. Click "SELECT DATASOURCE" button. 5. Change "Selection method:" to "Advanced Database Query (SQL, SWQL)" 6. Enter a SWQL query in the box. Use a macro like ${NodeID} to…
-
Also, what is the URL when you get "the page cannot be found"?
-
It sounds like you might have a row in your Interfaces table whose NodeID points to a non-existent node. I have no idea how it could have gotten that way. You could use Database Manager to find all interfaces associated with NodeID 2169 (SELECT * FROM Interfaces WHERE NodeID=2169) and delete them. That should get the…
-
This API exists now in Orion Platform 2018.4/NPM 12.4. It is documented at Credential Management · solarwinds/OrionSDK Wiki · GitHub .
-
9.1 also has a search box in web node management. By changing which columns are displayed you can control what the search box searches.
-
NPM 11.5.1 has been released. It addresses this bug.
-
Connect-Swis creates an object to hold the connection details, but doesn't actually open a network connection. The connection will be opened when it is first used. Get-SwisData and the other cmdlets that take a connection object will open the connection (if not already opened). This is a TCP connection from the powershell…
-
It is still not possible to add just the hardware health polling, but you can use the discovery API to add everything for a node, including hardware health. See this post for details: Re: Re: How do we programmatically discover the non-interface properties [in Orion] and enable them
-
The first parameter to Orion.AlertActive.Acknowledge is an array of ints containing the AlertObjectID values of the alerts to ack. Your code sends a single int, not an array of ints, so it doesn't work. (Error message needs some work, for sure...) This will work: $swis = Connect-Swis -Hostname blah -Username blah -Password…