Process groups anomaly detection API - GET configuration
Gets the configuration of anomaly detection for the specified process group.
The request produces an application/json
payload.
This request is an Early Adopter release and may be changed in non-compatible way.
GET |
|
Authentication
To execute this request, you need the Read configuration (ReadConfig
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
id | string |
The Dynatrace entity ID of the required process group. |
path | required |
Response
Response codes
Code | Description |
---|---|
200 | Success |
400 | Failed. The input is invalid. |
404 | Process group doesn't exist |
Response body
The AnomalyDetectionPG object
Configuration of anomaly detection for the process group.
Element | Type | Description |
---|---|---|
availabilityMonitoring | AvailabilityMonitoringPG |
The AvailabilityMonitoringPG object
Configuration of the availability monitoring for the process group.
Element | Type | Description |
---|---|---|
method | string | How to monitor the availability of the process group:
|
minimumThreshold | integer | Alert if the number of active processes in the group is lower than this value. |
{
"availabilityMonitoring": {
"method": "MINIMUM_THRESHOLD",
"minimumThreshold": 5
}
}
Example
In this example, the request gets the configuration of anomaly detection for the process group with the ID of PROCESS_GROUP-52B42D0616D556F5.
The API token is passed in the Authorization header.
The configuration has the following settings:
Curl
curl -L -X GET 'https://mySampleEnv.live.dynatrace.com/api/config/v1/anomalyDetection/processGroups/PROCESS_GROUP-52B42D0616D556F5' \
-H 'Authorization: Api-token abcdefjhij1234567890'
Request URL
https://mySampleEnv.live.dynatrace.com/api/config/v1/anomalyDetection/processGroups/PROCESS_GROUP-52B42D0616D556F5
Response body
{
"availabilityMonitoring": {
"method": "MINIMUM_THRESHOLD",
"minimumThreshold": 10
}
}
Response code
200