Feature Flags

Learn how to attach custom feature flag data to Sentry error events.

The Feature Flags integration allows you to manually track feature flag evaluations through an API. These evaluations are held in memory and sent to Sentry when an error occurs. At the moment, we only support boolean flag evaluations.

Import names: Sentry.featureFlagsIntegration and type Sentry.FeatureFlagsIntegration

Install your platform's Sentry SDK from npm.

Copied
import * as Sentry from '@sentry/<your browser platform, e.g. react>';

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

The integration is tested by calling the addFeatureFlag method before capturing an exception.

Copied
import * as Sentry from '@sentry/browser';

const flagsIntegration = Sentry.getClient()?.getIntegrationByName<Sentry.FeatureFlagsIntegration>('FeatureFlags');
if (flagsIntegration) {
  flagsIntegration.addFeatureFlag('hello', false);
} else {
  // check your configure step
}
Sentry.captureException(Exception('broke'));

Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" 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").