Skip to main content

Dynatrace

Dynatrace configuration for monitoring and alerting

Type: dynatrace

Properties

NameTypeDescriptionRequired
login
(Authentication)
objectCredentials required to authenticate with the Dynatrace API
yes
environmentobjectDetails 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

NameTypeDescriptionRequired
api_keystringThe API key used to authenticate requests to Dynatrace API
Minimal Length: 1
yes
client_idstringThe client ID used to identify your application when accessing Dynatrace API
Minimal Length: 1
yes
client_secretstringThe 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

NameTypeDescriptionRequired
env_id
(Id)
stringThe unique identifier of the Dynatrace environment
Minimal Length: 1
yes
env_url
(URL)
stringThe base URL of the Dynatrace environment. Ensure it matches the format provided by Dynatrace
Minimal Length: 1
Format: "uri"
no
env_name
(Name)
stringThe 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"
}