---
sidebar_label: Datadog
doc_id: 03fd4082-e3c4-4799-a668-0bbc294c67c3
description: >-
  Configuration schema for Datadog logs integration with API authentication
  credentials and site settings.
keywords:
  - datadog
  - logs
  - api configuration
  - monitoring
  - authentication
---

# Datadog

Defines the configuration for Datadog logs

**Type**: `datadog-logs-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"
}
```

