Comments
-
Did you tell it to 'Ignore CA Errors' ?
-
Take a look here: https://thwack.solarwinds.com/product-forums/the-orion-platform/f/orion-sdk/45716/solarwinds-orion-accounts I think it be what you need
-
I just thought of one more thing. It give 100 records at a time I think, if you need more than that, we can talk about paging through the results.
-
@"jlanaux" Hearing that you need to pull from the API can be intimidating. It will be easier than you think, use the links to dig into stuff I mention. First do you have curl? Its not in windows by default, and the examples provided use it. I downloaded the version for windows. The documentation is good, and accurate, but…
-
Anything that a user can do in the website it can do in the API. Do you need to use the API to create users?
-
Well, I can't change the whole thing, but if you hit ctrl and use the scroll wheel you query will get bigger. It also works on the documentation pane, but not the Data table for results or the object explorer tree.
-
If the agent is already installed and connected to Orion it won't ask for credentials. If not, you need to install the agent, and the credentials here will attempt that.
-
Maybe some of this will assist: https://docs.microsoft.com/en-us/windows/win32/wmisdk/connecting-to-wmi-remotely-starting-with-vista https://docs.microsoft.com/en-us/windows/win32/wmisdk/troubleshooting-a-remote-wmi-connection Also from Microsoft: "The previous code samples are arguably the most basic remote connection you…
-
For a lot of places, that would be like saying I can't trust a digital display, I need an analog one in case the power goes out. Yes it might happen, but you don't need that function at that time. We have 4 points of connections in an out of our data centers. 2 to different internet providers, 2 to other data centers on…
-
It works, I have had to use local credentials from time to time. I assume you are using the computer name for the domain if the domain is requested or computer\user format? Something like the code below would allow you to remotely test a WMI connection to the computer with your local accounts to isolate possible issues.…
-
Piggybacking on this, the specific query will make a big difference, it likely has parameter you need to populate.
-
Is it listed at https:// <FQDN> /Orion/VIM/Admin/HyperVServers.aspx If so, check the credentials. If not, re-discover it.
-
Your web page pulls data from it, so if Orion's site is working, likely the API is too. Its just a matter of querying it. I like to start with the code straight out of SWQL studio I mentioned above, but Postman @"dan_jagnow" mentioned is great tool also.
-
You might want: API methods (solarwinds.com) And https://github.com/solarwinds/OrionSDK Both will jump start the process. The SDK has a program called SWQL studio will will also allow you to copy out curl queries to the REST api which may assist you.
-
The port the api can be queried on is 17778
-
They are separate, but you can use the IPAM scan to narrow the discovery for other parts of Orion if you want. I used to have a script that sent IPs to a discovery job, but I can't find it. You could use the examples in the SDK to completely automate it. Or just use something like the SWQL below to export it from IPAM and…
-
@"zharrison1989" My bad, I copied the wrong block, the case statement was unfinished. Try this: SELECT Count(N.NodeID) as Item_Count , N.Status , Case When N.Status = 0 Then 'Unknown' When N.Status = 1 Then 'Up' When N.Status = 2 Then 'Down' When N.Status = 3 Then 'Warning' -- When N.Status = 4 Then 'Shutdown' -- When…
-
So I would write it as shown below. Most of my changes are cosmetic, some use the features of SWQL (which if you don't have SWQL studio installed from GitHub - solarwinds/OrionSDK: SDK for the SolarWinds Orion platform, including tools, documentation, and samples in PowerShell, C#, Go, Perl, and Java., you should ). I…
-
I typically use the PowerShell, but if I use curl, I can use an AD account as long as I specify the domain and user. curl.exe -k -u domain\user:password https://server:17778/SolarWinds/InformationService/v3/Json/Query?query=SELECT+TOP+100+NodeID%2c+IPAddress%2c+Caption+FROM+Orion.Nodes
-
Not that I can think of. Once an email is sent from Orion, it doesn't know if the recipient is a user or shared mailbox.
-
This is what I did, and it worked great: Migrate the Orion Platform server with minimal downtime (solarwinds.com)
-
I would reboot the server and start the wizard manaully from the Start menu, but more important, Open an incident with support for a down system. They will get you moving quickly if you haven't already fixed it. ( I see the post is 8 hours old)
-
You are likely just using the default, go to the All Settings -> Configure Default Send Email Action and update it with your information: Run the query again after and lets see if you need to update anything.
-
Sure: Schedule when an alert monitors your environment (solarwinds.com) You want to schedule it weekly and select Saturday and Sunday.
-
Also you can call support with demo install issues. They may be able to fix it faster
-
I agree with @vinay.by and I would also start with re-running the Config Wizard: Run the Orion Configuration Wizard to refresh Orion files (solarwinds.com) If that doesn't work, I would open a ticket with support. On my install, I have no issues just hitting create new on the Jobs page.
-
I think it could be a number of things but I can't know for sure. So if the config wizard fixes it, it could be the registering of a resource IIS uses, or something like the .Net cache getting cleared out. The Configuration Wizard does a ton of housekeeping when its run, which you can get some idea of by looking at the…
-
Does netbox discover something for the circuits that you don't get from NPM? I don't use Netbox so I don't have that half the story. I do track Circuit data that isn't discoverable in Orion using Custom Properties. In my case they just update a spreadsheet which gets imported. I wouldn't track that data 2 places if its…
-
What are you trying to do, what type of job are you creating, what steps do you take that lead to the the error? You posted in the NPM forum is this maybe a NCM question? The error means that its expecting a true/false or 0/1 for some input, but it got anything but that. Without context of how you got to the error, I can't…
-
For Pulse devices, enable SNMP on them, and import into Orion. Mine still show as Neotaris, but I think this will override that: (+) Pulse Connect Secure PSA7000-V Node Details - Device Pollers - Network Performance Monitor - THWACK (solarwinds.com) To get application specific details use the OIDs Pulse Provides: Pulse…