• Home
  • Dynatrace API
  • Configuration
  • OneAgent configuration
  • Environment-wide configuration
  • GET Technology monitoring configuration

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.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/config/v1/technologies
SaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/technologies
Environment ActiveGatehttps://{your-activegate-domain}/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
configurationVersionsinteger[]

A sorted list of the version numbers of the configuration.

currentConfigurationVersionsstring[]

A sorted list of version numbers of the configuration.

clusterVersionstring

Dynatrace version.

The Technology object

Configuration of technology monitoring.

ElementTypeDescription
typestring

The type of the technology.

The element can hold these values
  • 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_WIN
  • PROCESS
  • RUBY
  • SDK
  • VARNISH
  • Z_OS
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.
The element can hold these values
  • ENVIRONMENT
  • HOST

Response body JSON model

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