This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

API/SDK for a REST call to update Component settings

Is there a way using the SWQL REST calls to update the Component Settings for a Application monitor assigned to a node?

Example:

I have a Node and I have created an Application Monitor for HTTP.  The URL and proxy settings need to be updated for the Node, however, I would like to do this via an API/SDK.  The GUI interface is not an option.

Parents
  • For anyone else that comes across this thread, this is now possible to do. For a bit more information, check out Dan's answer to my questions at the bottom of this thread.

    Here is an example of modifying the Url field of an HTTPS component monitor using the REST API.

    Override a component setting:

    POST to https://orionserver:17778/SolarWinds/InformationService/v3/Json/Create/Orion.APM.ComponentSetting with a JSON payload that looks like this:

    {"Key":"Url","Value":"YourCustomValue","ValueType":0,"Required":true,"ComponentID":YourComponentID}

    Edit an component setting that is already overridden:

    POST to https://orionserver:17778/SolarWinds/InformationService/v3/Json/swis://orionserver/Orion/Orion.APM.ComponentSetting/ComponentID=YourComponentID,Key="Url" with a JSON payload that looks like this:{"Value":"YourCustomValue"}

  • Hello , Any chance you still have a link to this thread? Every reference I've found to it is broken and I'm facing a similar need.

  • I am also not able to find that the thread I refer to in my previous post. I checked my profile and it doesn't come up in my post history, either. I believe the information I put in this thread is the gist of what you need to know to get going. I can try to answer any questions you may have about what I did.

Reply
  • I am also not able to find that the thread I refer to in my previous post. I checked my profile and it doesn't come up in my post history, either. I believe the information I put in this thread is the gist of what you need to know to get going. I can try to answer any questions you may have about what I did.

Children
No Data