This API is deprecated. Use the Events API v2 instead.
Pushes custom events from third-party integrations to one or more monitored entities.
This endpoint enables third-party systems such as CI platforms (Jenkins, Bamboo, Electric Cloud, etc.) to provide additional details for Dynatrace automated root cause analysis.
You can use this endpoint to:
CUSTOM_ANNOTATION
CUSTOM_CONFIGURATION
CUSTOM_DEPLOYMENT
CUSTOM_INFO
MARKED_FOR_TERMINATION
AVAILABILITY_EVENT
ERROR_EVENT
PERFORMANCE_EVENT
RESOURCE_CONTENTION
The request consumes and produces an application/json
payload.
POST | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/events |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/events |
To execute this request, you need an access token with DataExport
scope.
To learn how to obtain and use it, see Tokens and authentication.
The set of parameters depends on the event type. See Parameters mapping below for details.
Parameter | Type | Description | In | Required |
---|---|---|---|---|
body | Event | The JSON body of the request, containing parameters of the event. | body | optional |
EventCreation
objectConfiguration of the custom event.
Element | Type | Description | Required |
---|---|---|---|
allowDavisMerge | boolean | Allow Davis AI to merge this event into existing problems (true) or force creating a new problem (false). This only applies to problem-opening event types. | optional |
annotationDescription | string | A detailed description of the custom annotation, for example | optional |
annotationType | string | The type of the custom annotation, for example | optional |
attachRules | Push | The set of rules defining Dynatrace entities to be associated with the event. You can specify tags to dynamically match Dynatrace entities or IDs of specific entities. At least one entity ID or tag is required. | required |
changed | string | The new value of the configuration that has been set by the event. | optional |
ciBackLink | string | The link to the deployed artifact within the 3rd party system. | optional |
configuration | string | The ID or the name of the configuration that has been changed by the event. | optional |
customProperties | object | The set of any properties related to the event, in the "key" : "value" format. | optional |
deploymentName | string | The ID of the triggered deployment. | optional |
deploymentProject | string | The project name of the deployed package. | optional |
deploymentVersion | string | The version of the triggered deployment. | optional |
description | string | The textual description of the configuration change. | optional |
end | integer | The end timestamp of the event, in UTC milliseconds. If not set, the current time is used for information-only events. Not applicable to problem-opening events. Such an event stays open until it times out depending on the timeoutMinutes parameter. | optional |
eventType | string | The type of the event.
| required |
original | string | The previous value of the configuration. | optional |
remediationAction | string | The link to the deployment related remediation action within the external tool. | optional |
source | string | The name or ID of the external source of the event. | required |
start | integer | The start timestamp of the event, in UTC milliseconds. If not set, the current timestamp is used. You can report information-only events up to 30 days into the past. You can report problem-opening events up to 60 minutes into the past. | optional |
timeoutMinutes | integer | The timeout for problem-opening events in minutes. Not applicable to information-only events. If not set, 15 minutes is used. The maximum allowed value is 120 minutes. You can refresh the event by sending the same payload again. | optional |
timeseriesIds | string[] | A list of timeseries IDs, related to the event. | optional |
title | string | The title of the configuration that has been set by the event. | optional |
PushEventAttachRules
objectThe set of rules defining Dynatrace entities to be associated with the event.
You can specify tags to dynamically match Dynatrace entities or IDs of specific entities.
At least one entity ID or tag is required.
Element | Type | Description | Required |
---|---|---|---|
entityIds | string[] | A list of entity IDs to which the event should be attached. | optional |
tagRule | Tag | A set of matching rules to dynamically pick up entities based on tags. Only entities seen within the last 24 hours are taken into account for tag-based matching rules. | optional |
TagMatchRule
objectThe list of tags to be used for matching Dynatrace entities.
Element | Type | Description | Required |
---|---|---|---|
meTypes | string[] | The list of types of the Dynatrace entities (for example hosts or services) you want to pick up by matching.
| required |
tags | Tag | The list of tags you want to use for matching. At least one tag is required. You can use custom tags from the UI, imported tags, and tags based on environment variables. | required |
TagInfo
objectTag of a Dynatrace entity.
Element | Type | Description | Required |
---|---|---|---|
context | string | The origin of the tag, such as AWS or Cloud Foundry. Custom tags use the
| required |
key | string | The key of the tag. Custom tags have the tag value here. | required |
value | string | The value of the tag. Not applicable to custom tags. | optional |
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"annotationDescription": "The coffee machine is broken","annotationType": "defect","attachRules": {"entityIds": ["CUSTOM_DEVICE-0000000000000007"],"tagRule": [{"meTypes": ["HOST"],"tags": [{"context": "CONTEXTLESS","key": "customTag"}]}]},"end": 1521542929000,"eventType": "CUSTOM_ANNOTATION","source": "OpsControl","start": 1521042929000}
Availability event
Custom annotation
Custom config
Custom deployment
Custom info
Error event
Performance event
Resource contention
Marked for termination
description
req
opt
req
n/a
req
req
req
req
req
title
req
n/a
n/a
n/a
opt
req
req
req
opt
source
req
req
req
req
req
req
req
req
req
annotationType
n/a
req
n/a
n/a
n/a
n/a
n/a
n/a
n/a
annotationDescription
n/a
req
n/a
n/a
n/a
n/a
n/a
n/a
n/a
deploymentName
n/a
n/a
n/a
req
n/a
n/a
n/a
n/a
n/a
deploymentVersion
n/a
n/a
n/a
req
n/a
n/a
n/a
n/a
n/a
Code | Type | Description |
---|---|---|
200 | Event | Success |
4XX | Error | Client side error. |
5XX | Error | Server side error. |
EventStoreResult
objectContains IDs of all custom events, created by an event push call.
Element | Type | Description |
---|---|---|
storedCorrelationIds | string[] | List of correlation IDs for problem-opening-events. |
storedEventIds | integer[] | List of event IDs for information-only-events. This field is provided for compatibility reasons. You should use the values from the storedIds field instead. |
storedIds | string[] | List of encoded event IDs for information-only-events. |
{"storedCorrelationIds": ["string"],"storedEventIds": [1],"storedIds": ["string"]}
In this example, the request pushes the CUSTOM_ANNOTATION event, which applies to all custom devices with the Coffee-2nd-floor tag. This annotation is a notification that these coffee machines are broken.
The API token is passed in the Authorization header.
curl -X POST \https://mySampleEnv.live.dynatrace.com/api/v1/events \-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890' \-H 'Content-Type: application/json' \-d '{"eventType": "CUSTOM_ANNOTATION","timeoutMinutes": 0,"attachRules": {"tagRule": [{"meTypes": ["CUSTOM_DEVICE"],"tags": [{"context": "CONTEXTLESS","key": "IG-test"}]}]},"source": "OpsControl","annotationType": "defect","annotationDescription": "coffee machine is defective"}'
https://mySampleEnv.live.dynatrace.com/api/v1/events
{"eventType": "CUSTOM_ANNOTATION","timeoutMinutes": 0,"attachRules": {"tagRule": [{"meTypes": ["CUSTOM_DEVICE"],"tags": [{"context": "CONTEXTLESS","key": "IG-test"}]}]},"source": "OpsControl","annotationType": "defect","annotationDescription": "coffee machine is defective"}
{"storedEventIds": [-6153476110846051426],"storedIds": ["-6153476110846051426_1533300519291"],"storedCorrelationIds": []}
200