Datadog
Create events in Datadog
Actions
Section titled “Actions” Create Event Create a new event in Datadog
Instructions
Section titled “Instructions”To configure Datadog to work with SuperPlane:
- Get API Keys: In Datadog, go to Organization Settings > API Keys to get your API Key
- Get Application Key: Go to Organization Settings > Application Keys to create an Application Key
- Select Site: Choose the Datadog site that matches your account (US1, US3, US5, EU, or AP1)
- Enter Credentials: Provide your API Key, Application Key, and Site in the integration configuration
Create Event
Section titled “Create Event”The Create Event component creates a new event in Datadog.
Use Cases
Section titled “Use Cases”- Deployment tracking: Log deployment events to correlate with metrics
- Incident annotation: Add context to incidents with custom events
- Workflow notifications: Create events to track workflow execution milestones
Outputs
Section titled “Outputs”The component emits an event containing:
id: The unique identifier of the created eventtitle: The event titletext: The event bodydate_happened: Unix timestamp when the event occurredalert_type: The severity level (info, warning, error, success)priority: Event priority (normal, low)tags: Array of tags attached to the eventurl: Link to view the event in Datadog
Example Output
Section titled “Example Output”{ "data": { "alert_type": "info", "date_happened": 1704067200, "id": 1234567890, "priority": "normal", "tags": [ "env:prod", "service:web" ], "text": "Application v1.2.3 has been deployed successfully", "title": "Deployment completed", "url": "https://app.datadoghq.com/event/event?id=1234567890" }, "timestamp": "2026-01-19T12:00:00Z", "type": "datadog.event"}