• Home
  • Dynatrace API
  • Configuration
  • Frequent issue detection
  • GET configuration

Frequent issue detection API - GET configuration

Gets the configuration of frequent issue detection. To learn more about it, see Detection of frequent issues.

The request produces an application/json payload.

GETManaged https://{your-domain}/e/{your-environment-id}/api/config/v1/frequentIssueDetection
SaaS https://{your-environment-id}.live.dynatrace.com/api/config/v1/frequentIssueDetection
Environment ActiveGate https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/frequentIssueDetection

Authentication

To execute this request, you need an access token with Read configuration (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
200FrequentIssueDetectionConfig

Success

Response body objects

The FrequentIssueDetectionConfig object

Parameters of the frequent issue detection. To learn more about it, see Detection of frequent issues in Dynatrace Documentation.

ElementTypeDescription
metadataConfigurationMetadata

Metadata useful for debugging

frequentIssueDetectionApplicationEnabledboolean

The detection for applications is enabled (true) or disabled (false).

frequentIssueDetectionServiceEnabledboolean

The detection for services is enabled (true) or disabled (false).

frequentIssueDetectionInfrastructureEnabledboolean

The detection for infrastructure is enabled (true) or disabled (false).

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.

Response body JSON model

json
{ "frequentIssueDetectionApplicationEnabled": true, "frequentIssueDetectionServiceEnabled": true, "frequentIssueDetectionInfrastructureEnabled": true }

Example

In this example, the request lists the current configuration of frequent issue detection.

The API token is passed in the Authorization header.

The configuration has the following settings:

Anomaly detection configuration

Curl

bash
curl -L -X GET 'https://mySampleEnv.live.dynatrace.com/api/config/v1/frequentIssueDetection' \ -H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'

Request URL

plaintext
https://mySampleEnv.live.dynatrace.com/api/config/v1/frequentIssueDetection

Response body

json
{ "metadata": { "configurationVersions": [ 0 ], "clusterVersion": "1.194.0.20200427-192742" }, "frequentIssueDetectionApplicationEnabled": false, "frequentIssueDetectionServiceEnabled": true, "frequentIssueDetectionInfrastructureEnabled": false }

Response code

200

Related topics
  • Detection of frequent issues

    Understand how Dynatrace detects and manages recurring problem patterns as frequent issues.