Update a configuration property for the Process Tracker module. See Configuration properties in Configuration API.
Request
HTTP Verb | Path | Parameters |
|---|---|---|
PUT | hx/api/services/config/tree | node_name=/config/process-tracker |
Request Headers
The following header indicates that there will be JSON formatted request data within the body.
Content-Type | Application/json |
Request Body
The request body contains a list of configuration properties to be set, formatted as JSON. For example, the following request body will specify that the Logging level be updated to a value of Error.
{"data": [{"default_value": "notice", "name": "/config/process-tracker/logging/level", "type":
"string", "value": "error" }]}Note
If an invalid value is specified, this request will not provide feedback. The Process Tracker accepts the value and finds an invalid configuration property, it replaces the value with the default value for that property. You also cannot modify the default value of a configuration property using this request.