Dynatrace
Dynatrace configuration for monitoring and alerting
Properties
Name | Type | Description | Required |
---|---|---|---|
login (Authentication) | object | Credentials required to authenticate with the Dynatrace API | yes |
environment | object | Details required to configure the Dynatrace environment | yes |
Additional Properties: not allowed
Example
{
"login": {
"api_key": "ghi13579",
"client_id": "abc12345",
"client_secret": "def67890"
},
"environment": {
"env_id": "abc12345",
"env_url": "https://abc12345.live.dynatrace.com",
"env_name": "Production"
}
}
login: Authentication
Credentials required to authenticate with the Dynatrace API
Properties
Name | Type | Description | Required |
---|---|---|---|
api_key | string | The API key used to authenticate requests to Dynatrace API Minimal Length: 1 | yes |
client_id | string | The client ID used to identify your application when accessing Dynatrace API Minimal Length: 1 | yes |
client_secret | string | The secret key associated with your client ID for secure API access Minimal Length: 1 | yes |
Additional Properties: not allowed
Example
{
"api_key": "ghi13579",
"client_id": "abc12345",
"client_secret": "def67890"
}
environment: Environment
Details required to configure the Dynatrace environment
Properties
Name | Type | Description | Required |
---|---|---|---|
env_id (Id) | string | The unique identifier of the Dynatrace environment Minimal Length: 1 | yes |
env_url (URL) | string | The base URL of the Dynatrace environment. Ensure it matches the format provided by Dynatrace Minimal Length: 1 Format: "uri" | no |
env_name (Name) | string | The name of the environment (e.g., Production, Staging, etc.) Minimal Length: 1 | yes |
Additional Properties: not allowed
Example
{
"env_id": "abc12345",
"env_url": "https://abc12345.live.dynatrace.com",
"env_name": "Production"
}