---
sidebar_label: Datadog
doc_id: 8bf35352-b805-4660-a121-95cb57c577f2
description: >-
  Configuration schema for Datadog metrics integration with API authentication
  credentials.
keywords:
  - datadog
  - metrics
  - monitoring
  - api-configuration
  - authentication
---

# Datadog

Defines the configuration for Datadog metrics

**Type**: `datadog-metrics-configuration`

**Properties**

|Name|Type|Description|Required|
|----|----|-----------|--------|
|[**settings**](#settings)<br/>(Datadog Settings)|`object`|||
|[**credentials**](#credentials)<br/>(API Credentials)|`object`||yes|

**Additional Properties:** not allowed  
**Example**

```json
{
    "settings": {},
    "credentials": {
        "api_key": "abcd1234",
        "app_key": "efgh4567"
    }
}
```

<a name="settings"></a>
## settings: Datadog Settings

**Properties**

|Name|Type|Description|Required|
|----|----|-----------|--------|
|**site**<br/>(Datadog Site)|`string`|The Datadog site URL<br/>||

<a name="credentials"></a>
## credentials: API Credentials

**Properties**

|Name|Type|Description|Required|
|----|----|-----------|--------|
|**api\_key**|`string`|The API key used to authenticate requests to Datadog API<br/>Minimal Length: `1`<br/>|yes|
|**app\_key**|`string`|The APP key used to authenticate requests to Datadog API<br/>Minimal Length: `1`<br/>|yes|

**Example**

```json
{
    "api_key": "abcd1234",
    "app_key": "efgh4567"
}
```

