Skip to main content

Datadog

Oodle supports ingesting from Datadog agent. This document outlines the steps to set up Datadog agent to export to Oodle.

Datadog Integration

Double write to both Datadog and Oodle

There are two ways to configure Datadog agent to double write to both Datadog and Oodle.

Environment Variables

Set DD_ADDITIONAL_ENDPOINTS environment variable to include Oodle endpoint and API key.

The endpoint and API key can be seen from the Datadog tile in the settings page as seen here

DD_ADDITIONAL_ENDPOINTS='{"<oodle_endpoint>": ["<oodle_api_key>"]}'

YAML configuration file

Add the following to your datadog.yaml configuration file.

additional_endpoints:
<oodle_endpoint>:
- "<oodle_api_key>"

Export only to Oodle

There are two ways to configure Datadog agent to only export to Oodle.

Environment Variables

Set DD_DD_URL and DD_DD_API_KEY environment variables to Oodle endpoint and API key respectively.

DD_DD_URL=<oodle_endpoint>
DD_DD_API_KEY=<oodle_api_key>

YAML configuration file

Add the following to your datadog.yaml configuration file.

dd_url: <oodle_endpoint>
api_key: <oodle_api_key>