• Home
  • Dynatrace API
  • Configuration
  • Extensions
  • GET global configuration

Extensions API - GET global configuration

Gets the global configuration of the specified OneAgent or JMX extension.

The request produces an application/json payload.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/config/v1/extensions/{id}/global
SaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/extensions/{id}/global
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/extensions/{id}/global

Authentication

To execute this request, you need an access token with ReadConfig scope.

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
idstring

The ID of the extension to be updated.

pathrequired

Response

Response codes

CodeTypeDescription
200GlobalExtensionConfiguration

Global configuration of given extension.

Response body objects

The GlobalExtensionConfiguration object

Global Configuration of OneAgent and JMX extension

ElementTypeDescription
extensionIdstring

The ID of the extension.

enabledboolean

The extension is enabled (true) or disabled (false).

infraOnlyEnabledboolean

The plugin is enabled (true) or disabled (false) globally for hosts in infrastructure-only monitoring mode

propertiesobject

The list of configuration parameters.

Each parameter is a key-value pair.

Response body JSON model

json
{ "id": "custom.remote.python.demo", "properties": [ { "key": "serverIp", "type": "STRING", "defaultValue": "127.0.0.1" }, { "key": "password", "type": "PASSWORD", "defaultValue": "" }, { "key": "username", "type": "STRING", "defaultValue": "dynatrace" }, { "key": "dropdownProperty", "type": "DROPDOWN", "defaultValue": "one", "dropdownValues": [ "one", "two", "three" ] } ] }
Related topics
  • Extensions

    Learn about the extensions framework offered by Dynatrace.