OneAgent environment-wide configuration API - GET Technology monitoring configuration

Gets the environment-wide technology monitoring configuration of OneAgent.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/technologies
Environment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/technologies

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

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200TechMonitoringList

Success

Response body objects

The TechMonitoringList object

A list of technology monitoring configurations.

ElementTypeDescription
metadataConfigurationMetadata

Metadata useful for debugging

technologiesTechnology[]

A list of technology monitoring configurations.

The ConfigurationMetadata object

Metadata useful for debugging

ElementTypeDescription
clusterVersionstring

Dynatrace version.

configurationVersionsinteger[]

A sorted list of the version numbers of the configuration.

currentConfigurationVersionsstring[]

A sorted list of version numbers of the configuration.

The Technology object

Configuration of technology monitoring.

ElementTypeDescription
monitoringEnabledboolean

The monitoring of the technology is enabled (true) or disabled (false).

scopestring

The validity of the configuration:

  • HOST: The setting is valid for OneAgent on host only. Other OneAgents, connected to the same Dynatrace server may have different setting.
  • ENVIRONMENT: The setting is valid for all OneAgents, connected to the Dynatrace server.
  • ENVIRONMENT
  • HOST
typestring

The type of the technology.

  • AIX_KERNEL_EXT
  • APACHE
  • CIM_V2
  • DOCKER
  • DOCKER_WIN
  • DOT_NET
  • DOT_NET_CORE
  • EXTENSIONS
  • EXTENSIONS_DS_GENERIC
  • EXTENSIONS_STATSD
  • GARDEN
  • GO
  • GO_STATIC
  • IBM_INTEGRATION_BUS
  • IIS
  • JAVA
  • LOG_ANALYTICS
  • NETTRACER
  • NETWORK
  • NGINX
  • NODE_JS
  • OPENTRACINGNATIVE
  • PHP
  • PHP_81
  • PHP_CGI
  • PHP_CLI
  • PHP_CLI_SERVER
  • PHP_WIN
  • PROCESS
  • RUBY
  • SDK
  • VARNISH
  • Z_OS

Response body JSON model

{
"metadata": {
"clusterVersion": "1.192.1",
"configurationVersions": [
4,
2
],
"currentConfigurationVersions": [
"1.0.4",
"1.23"
]
},
"technologies": [
{
"monitoringEnabled": true,
"scope": "ENVIRONMENT",
"type": "JAVA"
}
]
}