IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Create or update configuration
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Create or update configuration
editRequest
editPUT /api/apm/settings/agent-configuration
Request body
edit-
service -
(required, object) Service identifying the configuration to create or update.
Properties of
service-
name - (required, string) Name of service
-
environment - (optional, string) Environment of service
-
-
settings - (required) Key/value object with option name and option value.
-
agent_name - (optional) The agent name is used by the UI to determine which settings to display.
Example
editPUT /api/apm/settings/agent-configuration
{
"service": {
"name": "frontend",
"environment": "production"
},
"settings": {
"transaction_sample_rate": "0.4",
"capture_body": "off",
"transaction_max_spans": "500"
},
"agent_name": "nodejs"
}