Comments
-
Oh, I see - you want to update Orion's configuration, not the configuration of the devices themselves. I'll get someone from the NTA team to look at this question.
-
I'll need to get the product team involved to figure this out then. What product version(s) are you running?
-
The internal number is IPAM-730 - I linked this thread to it. I don't know if there is a thwack "idea" page for this.
-
In that case, I recommend you open a ticket with SolarWinds Support. They should be able to get you back on track.
-
No problem. And the wiki update is so I don't have to jump on it at all next time someone has this question.
-
Not instead of - in addition to. CustomPollerStatus always has the most recent polled value. For pollers configured to keep historical information (such as for charts), CustomPollerStatistics_Detail should have a whole sequence of values. You should update CustomPollerStatus and add a row to CustomPollerStatistics_Detail.…
-
Could you post a screenshot?
-
I'm sorry, but I can't give you a timeline.
-
You could probably put together a calculated SQL column. First add a custom property (I call it "CustomLocation" but you could call it anything), then run SQL like this: ALTER TABLE Nodes ADD COLUMN EitherLocation AS ISNULL(CustomLocation, Location) Then use Custom Property Editor to update your report schemas again. Now…
-
Are you looking for this? SolarWinds Information Service v3.0 Schema Documentation Index
-
Try opening a web browser to https://orionserver:17778/SolarWinds/InformationService (where "orionserver" is the hostname of your Orion server). You should get a warning from the browser about an invalid certificate, since SWIS generates a self-signed certificate. What happens?
-
Yes, you should delete the row. I'm talking with the dev team about this now. Short answer: there are some extra values you will need to supply to New-SwisObject when creating dependencies. Longer answer: details to follow.
-
That quantity of dependencies would be well beyond what we have tested today. We have already identified some of the bottlenecks that we need to fix to enable that kind of scale. We will have to fix them before we can get to the magical world of automatic dependency mapping Rob mentioned in Re: What aspect of Orion/NPM do…
-
When we ship a release that includes the fix, I'll update this thread. If you would like a status check ahead of that, SolarWinds Support can look it up with that number.
-
Docs for the discovery API are here: Discovery · solarwinds/OrionSDK Wiki · GitHub . Please let me know if there are specific areas you would like to see fleshed out.
-
Here's a sample PowerShell script that shows how to call DiscoverInterfacesOnNode: OrionSDK/NPM.DiscoverAndAddInterfacesOnNode.ps1 at master · solarwinds/OrionSDK · GitHub
-
Ok, that makes sense. There's no way to do this now that wouldn't be a nasty pile of hacks. When we update Traps and Syslog to use the new (well, 2015) alerting system, this will be perfectly natural, but that's not in this release.
-
You can toggle the Enabled property of the Orion.AlertConfigurations instances using the "update" call. Get the Uri values of the alert rules you want to turn off, then call update and set Enabled to false. When you want to turn them back on, call update again and set Enabled to true.
-
The Voip.BusinessLayer.log file will have information about this. You could attach it to a post in this thread or open a ticket with support and handle it that way.
-
If those docs don't get you going, I recommend calling SolarWinds Support.
-
I think the problem is how you are setting the credential ID. To create a NodeSettings entry, you need to post to this URL: /SolarWinds/InformationService/v3/Json/Create/Orion.NodeSettings With contents like this: {"NodeID":"11006", "SettingName":"WMICredential", "SettingValue": 22} You might find it helpful to refer to…
-
I'm glad coffee got you straightened out. The rollups (both of historical data in the database and to prepare for chart display) are independent of the polling schedule. If it's doing hourly rollup, it is on the hour (like 1pm to 2pm) regardless of where that falls in the particular device's polling schedule.
-
Sorry for the late reply. I tried reproducing your issue, but this is working for me. I tried variations like with and without a trailing newline in the file and different character encodings for the text file. Some of the encoding options did fail, but not with this error. What version of the SDK are you using? This will…
-
What XML error?
-
You can't set it to null, but you can set it to something 100 years in the future.
-
If you are sending SNMP traps from Orion, then the relevant MIB is SolarWinds-Traps.mib, which you can find in C:\Program Files (x86)\SolarWinds\Common\ or wherever Orion is installed.
-
Sure. You can call the GetFirstAvailableIp verb: https://github.com/solarwinds/OrionSDK/wiki/IPAM-4.7-API#get-first-available-ip-address-for-specific-subnet From curl, that would look like this: curl -k -v -u "myuser:password" -d '["10.248.1.0","24"]' -H "Content-Type: application/json"…
-
What language/runtime are you working in?
-
Oh, I see. The real-time process monitor feature is not available through the API.
-
This will be fixed in the next SP. If you want it sooner (I would!) you can replace \inetpub\solarwinds\orion\js\jquery\ui.datepicker.js with a newer version downloaded from http://ui.jquery.com/download. You'll need the "development version" (1.6.2rc2 currently) as the released version has this bug. It's somehow related…