OpenFeature

Learn how to use Sentry with OpenFeature.

The OpenFeature integration tracks feature flag evaluations produced by the OpenFeature SDK. These evaluations are held in memory, and in the event an error occurs, sent to Sentry for review and analysis. At the moment, we only support boolean flag evaluations.

Import name: Sentry.openFeatureIntegration and Sentry.OpenFeatureIntegrationHook

Before using this integration, you need to install and instrument the OpenFeature SDK in your app. Learn more by reading OpenFeature's SDK docs and provider docs.

Copied
import * as Sentry from "@sentry/sveltekit";
import { OpenFeature } from "@openfeature/web-sdk";

Sentry.init({
  dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
  integrations: [Sentry.openFeatureIntegration()],
});

OpenFeature.setProvider(new MyProviderOfChoice());
OpenFeature.addHooks(new Sentry.OpenFeatureIntegrationHook());

const client = OpenFeature.getClient();
const result = client.getBooleanValue("test-flag", false); // evaluate with a default value
Sentry.captureException(new Error("Something went wrong!"));

Visit the Sentry website and confirm that your error event has recorded the feature flag "test-flag" and its value "false".

Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").