Problems API - GET count

This API is deprecated. Use the Problems API v2 instead.

Gets the count of problems in your environment and their distribution by impact level.

The request produces an application/json payload.

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

Authentication

To execute this request, you need an access token with DataExport 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

Code
Type
Description
4XX

Client side error.

5XX

Server side error.

Response body objects

The ProblemStatusResultWrapper object

Element
Type
Description
result

The count of open problems in your environment.

The GlobalProblemStatus object

The count of open problems in your environment.

Element
Type
Description
openProblemCounts
object

Numbers of open problems per impact level.

totalOpenProblemsCount
integer

The total number of open problems in your environment.

Response body JSON model

{
"result": {
"openProblemCounts": {
"APPLICATION": 1,
"ENVIRONMENT": 1,
"INFRASTRUCTURE": 1,
"SERVICE": 1
},
"totalOpenProblemsCount": 1
}
}

Example

In this example, the request gets the number of problems in an environment.

The API token is passed in the Authorization header.

The response shows there are 34 problems detected:

  • 4 affect the infrastructure.
  • 30 affect applications.

Curl

curl -X GET \
https://mySampleEnv.live.dynatrace.com/api/v1/problem/status \
-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dynatrace.com/api/v1/problem/status

Response content

{
"result": {
"totalOpenProblemsCount": 34,
"openProblemCounts": {
"INFRASTRUCTURE": 4,
"SERVICE": 0,
"APPLICATION": 30,
"ENVIRONMENT": 0
}
}
}

Response code

200