Deployment API - View process module configuration for OneAgent
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/installer/agent/processmoduleconfig | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig |
Authentication
To execute this request, you need an access token with InstallerDownload
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
revision | integer | The previously received revision to compare against. | query | optional |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Agent | Success |
304 | Not modified. |
Response body objects
The AgentProcessModuleConfigResponse
object
The response to a process module config request.
Element | Type | Description |
---|---|---|
revision | integer | The new revision associated with the config. |
properties | Section | The properties and their sections in this response. |
The SectionProperty
object
A single agent property with it's associated section.
Element | Type | Description |
---|---|---|
section | string | The section this property belongs to. |
key | string | The property key. |
value | string | The property value. |
Response body JSON model
{
"revision": 64459404400310540,
"properties": [
{
"section": "general",
"key": "dockerInjection",
"value": "on"
}
]
}