Skip to main content

Datadog integration

Overview

This guide will walk through how to send Eppo feature flag assignments as RUM data to Datadog using Eppo’s Node SDK and Datadog’s Node APM Tracer library. While Node is used for this example, the concepts can be extrapolated to any language that are supported by Eppo SDKs and Datadog environments.

info

This example assumes there is a feature flag set up in Eppo and a Datadog Agent set up.

Node Example

The following is an example that shows how to log Eppo feature flag assignments to Datadog as a metric.

import EppoSdk from '@eppo/node-server-sdk';
const { init } = EppoSdk;

import dotenv from 'dotenv';
dotenv.config(); // Load environment variables from .env file

// Datadog startup
import tracer from 'dd-trace';
tracer.init(); // initialize

// Eppo Assignment logger
const assignmentLogger = {
logAssignment(assignment) {
tracer.dogstatsd.increment(
'flagViewed',
1,
{
allocation: assignment.allocation,
experiment: assignment.experiment,
featureFlag: assignment.featureFlag,
variation: assignment.variation,
holdout: assignment.holdout,
holdoutVariation: assignment.holdoutVariation
}
)
},
};

// Eppo startup
await init({
apiKey: process.env.EPPO_SDK_KEY,
});

const eppoClient = EppoSdk.getInstance();
const variation = eppoClient.getStringAssignment(
"<FEATURE-FLAG-KEY>",
"<SUBJECT-KEY>",
<SUBJECT-ATTRIBUTES>,
"<DEFAULT-VALUE>",
);

Datadog reporting

In this example, we are logging an event called flagViewed to Datadog that logs Eppo assignment data like the variation key, assignment key, and feature flag key as properties to that metric in Datadog. Now you can create and save dashboards under Datadog’s Metrics Explorer page with the metric, flagViewed, to highlight the correlations between flags and other performance metrics such as CPU to indicate whether a new flag is inadvertently causing performance issues.

Below is a dashboard created on the Metrics Explorer page that shows the user’s CPU usage, all exposures to our flag called datadog-testing, and our variants in that flag called control and variation.

Datadog Feature Flagging Dashboard