Comments
-
An X on the tabs would be a nice addition. Tracked as https://github.com/solarwinds/OrionSDK/issues/48 .
-
Orion Platform 2018.2 (NPM 12.3) adds BETWEEN to SWQL. It works the same way as in SQL. I'm planning to make a post in this forum listing new SWQL features soon.
-
PreferredPollingMethod has two possible values: SNMP and WMI. It does exist on the CoreDiscoveryPluginConfiguration object, but the CreateCorePluginConfiguration verb does not give you a way to control it - you always get the default "SNMP". However, it's just XML and if you don't mind some ugly syntax, you can change the…
-
For the second parameter to Invoke, you don't need to include the name of the entity again. Try this: print $swis->Invoke('Orion.NPM.Interfaces', 'DiscoverInterfacesOnNode', [22]);
-
That body is JSON format. Specifically, it is a JSON array.
-
What version of the product do you have installed? And what version of .NET on the Orion server?
-
That's weird. It's probably best to open a support ticket for this one. Let us know how it goes with the firmware rollback.
-
A curl command line for calling Orion.AlertActive.Acknowledge would look like this: curl -u admin: -k -d '[[48],"my note"]' -H "Content-Type: application/json" https://hostname:17778/SolarWinds/InformationService/v3/Json/Invoke/Orion.AlertActive/Acknowledge
-
SWQL Studio has a hard-coded list of keywords to highlight. ISNULL isn't in the list, though it should be. Don't read too much into it. ISNULL works fine with SWIS. "ISA" is a keyword that gets highlighted because it is in SWQL Studio's list. This is an operator in SWQL that doesn't really have a direct equivalent in SQL.…
-
Thanks, Jay! Mind if I use this in the next SDK release?
-
I don't know of any PHP examples for this. I know very little about PHP and nothing about the application you are working in, so I'm hesitant to give advice. The JSON API is pretty straightforward, so you should be able to use any general purpose HTTP client to work with it. Surprisingly (to me, anyway), Stack Overflow…
-
You can find the documention on the Start menu. Start > SolarWinds Orion SDK > Technical Reference.
-
You are right - this sample apparently didn't get added. The post is incorrect. I'll get it updated. Sorry about that.
-
Can you monitor the VPN interface using NPM?
-
Yes, there will. No significant changes to the SDK are planned, just some general updates and fixes.
-
No, this is not currently possible. (There is a CreateAccount verb on Orion.Accounts, but at this time it only allows you to create system-level accounts. It is not suitable for creating regular website user accounts.) If you use Active Directory authentication, you could [manually] create one or more AD groups for your…
-
What command are you issuing?
-
I'm afraid I don't understand this question. We don't provide any salesforce.com-related APIs at all - you'll need to talk to salesforce for that.
-
The first URL should have worked. Can you give more detail about what parameters you sent and what response you received?
-
This may just be a side effect of stripping down the script for posting here, but I noticed two problems with how you are creating the pollers for the volume: 1. You are taking the VolumeID value from the $newVolProps object, which doesn't have that property at all. You can get the new VolumeID from $VolProps. 2. You are…
-
I don't know how to control how the dates are formatted when traps are sent. However if you want to pursue the Custom SWQL option, then you can use a CASE expression to convert the numerical month to an English name. Like this: CONCAT( CASE WHEN DAY(GETUTCDATE()) < 10 THEN '0' ELSE '' END, DAY(GETUTCDATE()), ' ', CASE…
-
You can use the TOLOCAL function to translate a datetime into the local time of your SQL Server box. If you want to move to a specific other time zone, you could use the ADDHOUR function and put the target time zone offset in the query. I've also seen users put a time zone offset in a custom property so they can report in…
-
Almost there. <prop:type> should be System.Boolean instead of Yes/No, and <prop:value> should be true or false instead of Yes or No.
-
Richard, there are multiple possible causes for this problem. Let's work on diagnosing it and then find the most appropriate resolution for your environment. If you have an additional web server that you can take out of service briefly, that would help reduce the noise in the WCF trace.
-
Please follow the same steps I just posted for rjordan to generate a WCF trace log and send it to me.
-
Could you provide some more details about what exactly you are seeing? Please include product version, screenshots, type of credentials used, etc.
-
Could you provide some more details about what exactly you are seeing? Please include product version, screenshots, type of credentials used, etc.
-
The syntax for referencing a custom property in an alert action is ${nodes.property_name}. So if your property is called "ContactEmail" you would put ${nodes.ContactEmail} in the To field.
-
Richard is correct - this is not available in the product. I added this thread to the internal feature request case.
-
3. I was able to run the sample on JDK 1.5 with just a small tweak (there was an @Override on a method that was overriding an interface method instead of a class method - 1.5 does not allow this). I'll make sure the doc reflects this in the next SDK release.