Azure credentials API - PUT monitored services
Updates the list of Azure services that are monitored by an Azure configuration. Note that the request overwrites an existing configuration. Any services that you want to continue monitoring must be presented in the payload.
The request consumes an application/json
payload.
PUT | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/azure/credentials/{id}/services |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/azure/credentials/{id}/services |
Authentication
To execute this request, you need an access token with WriteConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
The ID of the Azure credentials to be updated with new monitored services configuration.
The JSON body of the request. Contains updated monitored services configuration for Azure credentials.
Request body objects
The AzureMonitoredServicesDto
object
A list of Azure services to be monitored. Available services are listed by /azure/supportedServices operation.
For each service, a list of metrics and dimensions can be specified. A list of supported metrics and dimensions for a given service can be checked in documentation.
List of metrics can be skipped (set to null), resulting in recommended (default) set of metrics and dimensions being chosen for monitoring. For built-in services, adjusting the list of metrics is not supported, therefore it needs to be null.
The ConfigurationMetadata
object
Metadata useful for debugging
Dynatrace version.
A sorted list of the version numbers of the configuration.
A sorted list of version numbers of the configuration.
The AzureSupportingService
object
A service to be monitored.
A list of metrics to be monitored for this service. It must include all the recommended metrics. If the list is null then recommended list of metrics for this service will be monitored.
The name of the service. Valid supported service names can be discovered using /azure/supportedServices restAPI
The AzureMonitoredMetric
object
A metric of service to be monitored.
A list of metric's dimensions names. It must include all the recommended dimensions.
The name of the metric of the service.
Request body JSON model
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"metadata": {"clusterVersion": "1.192.1","configurationVersions": [4,2],"currentConfigurationVersions": ["1.0.4","1.23"]},"services": [{"monitoredMetrics": [{"dimensions": ["string"],"name": "string"}],"name": "string"}]}
Response
Response codes
Success. The Azure credentials configuration has been updated. Response doesn't have a body.
Validate payload
We recommend that you validate the payload before submitting it with an actual request. A response code of 204 indicates a valid payload.
The request consumes an application/json
payload.
The request consumes an application/json
payload.
POST | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/azure/credentials/{id}/services/validator |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/azure/credentials/{id}/services/validator |
Authentication
To execute this request, you need an access token with WriteConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
Response
Response codes
Validated. The submitted configuration is valid. The response doesn't have a body.