---
title: Datadog Integrations
description: Learn how to develop and publish a Datadog integration.
breadcrumbs: Docs > Extend Datadog > Datadog Integrations
---

# Datadog Integrations

## Overview{% #overview %}

This page outlines what an integration is, and the general process of building an integration at Datadog using the Integration Developer Platform.

## What are integrations?{% #what-are-integrations %}

Integrations enable third parties to send observability data—such as metrics, logs, traces, or events—into Datadog. Integrations include out-of-the-box (OOTB) dashboards, monitors, and other content to help users visualize and analyze their data.

### Benefits of creating integrations{% #benefits-of-creating-integrations %}

By creating an integration, you can achieve the following benefits:

{% dl %}

{% dt %}
Correlate your data with user observability data
{% /dt %}

{% dd %}
Use Datadog to increase the value of your platform by allowing customers to see the data from your platform alongside the rest of their technology stack.
{% /dd %}

{% dt %}
Decrease mean-time-to-resolution (MTTR) for customers
{% /dt %}

{% dd %}
When a customer's account is enriched with data from an integration, they are able to see a broader view of their entire stack, allowing them to debug and remediate issues sooner.
{% /dd %}

{% dt %}
Increase adoption and visibility
{% /dt %}

{% dd %}
Native functionality for Datadog reduces friction to adoption, and displaying a tile on the [Integrations page](https://app.datadoghq.com/integrations) or the [Marketplace page](https://app.datadoghq.com/marketplace) provides visibility to all Datadog customers.
{% /dd %}

{% /dl %}

## What is an integration tile?{% #what-is-an-integration-tile %}

An integration tile acts as a discovery and installation point for customers. It includes:

- Information about your offering
- Setup instructions
- Installation or purchase options
- Out-of-the-box dashboards and additional content

Integration tiles are a component of integrations at Datadog.

## Requirements of an official integration{% #requirements-of-an-official-integration %}

All official integrations must include the following:

- **Telemetry**: Your integration must send at least one type of observability data (metrics, logs, traces, or events) to Datadog.
- **Out-of-the-box dashboard**: A prebuilt dashboard that visualizes the data your integration sends. See [Create an integration dashboard](https://docs.datadoghq.com/developers/integrations/create-an-integration-dashboard.md).
- **Tile images**: Screenshots or diagrams that appear on your tile in the Integrations or Marketplace page. See [Build an integration](https://docs.datadoghq.com/developers/integrations/build_integration.md).

Depending on what your integration does, the following are also required:

| Integration type               | Additional requirement                                                                                            |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------- |
| API-based integrations         | [OAuth 2.0 authentication](https://docs.datadoghq.com/developers/integrations/api_integration.md#implement-oauth) |
| Log integrations               | [Log pipeline](https://docs.datadoghq.com/developers/integrations/log_pipeline.md)                                |
| Integrations that send metrics | [Monitor template](https://docs.datadoghq.com/developers/integrations/create-an-integration-monitor-template.md)  |

## Getting started{% #getting-started %}

### Prerequisites{% #prerequisites %}

Before you begin developing an integration:

1. Apply to the [Datadog Partner Network's](http://partners.datadoghq.com) **Technology Partner** track. After your application is approved, a member of the Datadog Technology Partner team reaches out to schedule an introductory call.
1. Request a dedicated Datadog sandbox account for development:
   1. Log in to the [Datadog Partner Portal](http://partners.datadoghq.com).
   1. On your personal homepage, click **Learn More** under **Sandbox Access**.
   1. Select **Request Sandbox Upgrade**.

After your sandbox is created, you can [invite members from your organization](https://docs.datadoghq.com/account_management/users.md#add-new-members-and-manage-invites) to collaborate.

{% alert level="info" %}
If you are already a member of a Datadog organization (including a trial org), you may need to switch to your newly created sandbox. For more information, see the [Account Management documentation](https://docs.datadoghq.com/account_management/org_switching.md).
{% /alert %}

### Build your integration{% #build-your-integration %}

After you have sandbox access, use the Integration Developer Platform to build your integration:

1. Define the basic details about your integration (name, description, and category).
1. Write your integration code. Choose the type that matches your use case:
   - **[Agent-based integration](https://docs.datadoghq.com/extend/integrations/agent_integration.md)**: Collects data from on-host or local sources using the Datadog Agent. Best for monitoring infrastructure, services, or applications running in a customer's environment.
   - **[API-based integration](https://docs.datadoghq.com/extend/integrations/api_integration.md)**: Sends data to Datadog through a REST API. Best for SaaS platforms and cloud services that operate outside of a customer's environment.
1. Specify the type of telemetry your integration queries or submits (metrics, logs, traces, or events).
1. Create an out-of-the-box dashboard, and optionally create monitors or security rules.
1. Complete your integration tile: add setup and uninstallation instructions, images, and support details.
1. Test your integration in your Datadog sandbox account.
1. Submit your integration for review. After approval, Datadog publishes it.

### Responsibilities{% #responsibilities %}

As the author of the integration, you are responsible for maintaining the code and helping ensure the integration functions properly across all [Datadog sites](https://docs.datadoghq.com/getting_started/site.md). If you encounter setup issues, [contact Support](https://docs.datadoghq.com/help/).

## Out-of-the-box integrations compared to Marketplace offerings{% #out-of-the-box-integrations-compared-to-marketplace-offerings %}

The [Integrations page](https://app.datadoghq.com/integrations) includes integrations built by both Datadog and Technology Partners, available at no additional cost to Datadog customers. The [Marketplace page](https://app.datadoghq.com/marketplace) is a commercial platform where Technology Partners can sell offerings—including integrations, software licenses, and professional services—to Datadog customers.

| **Out-of-the-box integrations** | **Marketplace offerings**                                                   |
| ------------------------------- | --------------------------------------------------------------------------- |
| **Purpose**                     | Connect and transfer data between Datadog and partner platforms             | Enhance the Datadog experience with extended capabilities, partner services, and legacy tech coverage |
| **Availability**                | Included on the [Integrations page](https://app.datadoghq.com/integrations) | Paid, available on the [Marketplace page](https://app.datadoghq.com/marketplace)                      |
| **Built & maintained by**       | Datadog or Technology Partners                                              | Technology Partners                                                                                   |
| **Billing**                     | Included in Datadog subscription                                            | Additional fees                                                                                       |

Marketplace offerings are ideal for:

- System integrators with specialized Datadog product expertise.
- Partners offering professional services to enhance Datadog adoption.

## Go-to-market (GTM) opportunities{% #go-to-market-gtm-opportunities %}

Datadog offers GTM support. Reach out to your partner manager to learn more.

## Further reading{% #further-reading %}

- [Expand your monitoring reach with the Datadog Marketplace](https://www.datadoghq.com/blog/datadog-marketplace/)
- [Create an offering on the Datadog Marketplace](https://docs.datadoghq.com/extend/integrations/marketplace_offering.md)
