Tutorial: Send events to Datadog from Amazon EventBridge
You can use EventBridge to route events to third-party
services,such as Datadog
In this tutorial, you'll use the EventBridge console to create a connection to Datadog, an API destination that points to Datadog, and a rule to route events to Datadog.
Steps:
Prerequisites
To complete this tutorial, you'll need the following resources:
An EventBridge-enabled Amazon Simple Storage Service (Amazon S3) bucket.
Step 1: Create connection
To send events to Datadog, you'll first have to establish a connection to the Datadog API.
To create the connection
Open the Amazon EventBridge console at https://console.aws.amazon.com/events/
. -
In the navigation pane, choose API destinations.
-
Choose the Connections tab, and then choose Create connection.
-
Enter a name and description for the connection. For example, enter
Datadog
as a name, andDatadog API Connection
as a description. -
For Authorization type, choose API key.
-
For API key name, enter
DD-API-KEY
. -
For Value, paste your Datadog secret API key.
-
Choose Create.
Step 2: Create API destination
Now that you've created the connection, next you'll create the API destination to use as the target of the rule.
To create the API Destination
Open the Amazon EventBridge console at https://console.aws.amazon.com/events/
. -
In the navigation pane, choose API destinations.
-
Choose Create API destination.
-
Enter a name and description for the API destination. For example, enter
DatadogAD
for the name, andDatadog API Destination
for the description.. -
For API destination endpoint, enter the Datadog Logs endpoint:
https://http-intake.logs.datadoghq.com/api/v2/logs
.Note
This tutorial delivers events to Datadog Logs. You can also deliver events to Datadog using the events endpoint:
https://api.datadoghq.com/api/v1/events
. -
For HTTP method, choose POST.
-
For Invocation rate limit, enter
300
. -
For Connection, choose Use an existing connection and choose the
Datadog
connection you created in step 1. -
Choose Create.
Step 3: Create rule
Next, you'll create a rule to send events to Datadog when an Amazon S3 object is created.
To create a rule
Open the Amazon EventBridge console at https://console.aws.amazon.com/events/
. -
In the navigation pane, choose Rules.
-
Choose Create rule.
-
Enter a name and description for the rule. For example, enter
DatadogRule
for the name, andRule to send events to Datadog for S3 object creation
for the description. -
For Event bus, choose default.
-
For Rule type, choose Rule with an event pattern.
-
Choose Next.
-
For Event source, choose Other.
-
For Event pattern, enter the following:
{ "source": ["aws.s3"] }
-
Choose Next.
-
For Target types, choose EventBridge API destination.
-
For API destination, choose Use an existing API destination, and then choose the
DatadogAD
destination you created in step 2. -
For Execution role, choose Create a new for role for this specific resource.
-
For Additional settings, do the following:
-
For Configure target input, choose Input transformer from the drop-down list.
-
Choose Configure input transformer
-
for Sample events, enter the following:
{ "detail":[] }
-
For Target input transformer do the following:
-
For Input Path, enter the following:
{"detail":"$.detail"}
-
For Input Template, enter the following:
{"message": <detail>}
-
Choose Confirm..
-
-
Choose Next.
-
Choose Next.
-
Review the details of the rule and choose Create rule.
Step 4: Test the rule
To test your rule, create an Amazon S3 object by uploading a file to an EventBridge-enabled bucket. The created object will be logged in the Datadog Logs console.
Step 5: Clean up your resources
You can now delete the resources that you created for this tutorial, unless you want to retain them. By deleting AWS resources that you are no longer using, you prevent unnecessary charges to your AWS account.
To delete the EventBridge Connections(s)
-
Open the API destination page
of the EventBridge console. -
Choose the Connections tab.
-
Select the Connection(s) you created.
-
Choose Delete.
-
Enter the name of the connection and choose Delete.
To delete the EventBridge API destination(s)
-
Open the API destination page
of the EventBridge console. -
Select the API destinations(s) you created.
-
Choose Delete.
-
Enter the name of the API destination and choose Delete.
To delete the EventBridge rule(s)
-
Open the Rules page
of the EventBridge console. -
Select the rule(s) that you created.
-
Choose Delete.
-
Choose Delete.