This API is deprecated.
Lists events linked to the specified monitoring configuration.
The request produces an application/json payload.
| GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/extensions/{extensionName}/monitoringConfigurations/{configurationId}/events |
| Environment ActiveGateCluster ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/extensions/{extensionName}/monitoringConfigurations/{configurationId}/events |
To execute this request, you need an access token with extensionConfigurations.read scope.
To learn how to obtain and use it, see Tokens and authentication.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| extensionName | string | The name of the requested extension 2.0. | path | required |
| configurationId | string | The ID of the requested monitoring configuration. | path | required |
| from | string | The start of the requested timeframe. You can use one of the following formats:
If not set, the relative timeframe of two hours is used ( | query | optional |
| to | string | The end of the requested timeframe. You can use one of the following formats:
If not set, the current timestamp is used. | query | optional |
| dt.entity.host | string | Host that uses this monitoring configuration. Example: | query | optional |
| dt.active_gate.id | string | Hexadecimal ID of Active Gate that uses this monitoring configuration. Example: | query | optional |
| dt.extension.ds | string | Data source that uses this monitoring configuration. Example: | query | optional |
| content | string | Content of the event | query | optional |
| status | string | Status of the event
| query | optional |
| Code | Type | Description |
|---|---|---|
| 200 | Extension | Success |
| 404 | Error | Failed. The requested resource doesn't exist. |
| 4XX | Error | Client side error. |
| 5XX | Error | Server side error. |
ExtensionEventsList object| Element | Type | Description |
|---|---|---|
| extensionEvents | Extension | A list of extension events. |
ExtensionEventDto objectA list of extension events.
| Element | Type | Description |
|---|---|---|
| content | string | Content of the event |
| dt.active_gate.id | string | Hexadecimal ID of Active Gate that uses this monitoring configuration. Example: |
| dt.entity.host | string | Host that uses this monitoring configuration. Example: |
| dt.extension.ds | string | Data source that uses this monitoring configuration. Example: |
| severity | string | Severity of the event |
| status | string | Status of the event
|
| timestamp | string | Timestamp of the event |
{"extensionEvents": [{"content": "string","dt.active_gate.id": "string","dt.entity.host": "string","dt.extension.ds": "string","severity": "string","status": "ERROR","timestamp": "string"}]}