OneAgent on a host API - Technology monitoring configuration
Gets the configuration of monitored technologies on the specified host.
The request produces an application/json
payload.
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 host. |
path | required |
Response
Response codes
Code | Description |
---|---|
200 | Success |
Response body
The TechMonitoringList object
A list of technology monitoring configurations.
Element | Type | Description |
---|---|---|
metadata | ConfigurationMetadata | |
technologies | Technology[] | A list of technology monitoring configurations. |
The Technology object
Configuration of technology monitoring.
Element | Type | Description |
---|---|---|
type | string | The type of the technology. |
monitoringEnabled | boolean | The monitoring of the technology is enabled ( |
scope | string | The validity of the configuration:
|
The ConfigurationMetadata object
Metadata useful for debugging
Element | Type | Description |
---|---|---|
configurationVersions | integer[] | A Sorted list of the version numbers of the configuration. |
currentConfigurationVersions | string[] | A Sorted list of string version numbers of the configuration. |
clusterVersion | string | Dynatrace server version. |
{
"metadata": {
"configurationVersions": [
"integer"
],
"currentConfigurationVersions": [
"string"
],
"clusterVersion": "1.192.1"
},
"technologies": [
{
"type": "JAVA",
"monitoringEnabled": true,
"scope": "ENVIRONMENT"
}
]
}