Statsig

Learn how to use Sentry with Statsig.

The Statsig integration tracks feature flag evaluations produced by the Statsig JavaScript Client 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 from Statsig's checkGate method. Learn more about Statsig feature gates.

This integration is available in Sentry SDK versions 9.0.0 and higher, or versions 8.55.0 and higher for v8.

Import name: Sentry.statsigIntegration

Before using this integration, you need to install and instrument Statsig in your app. Learn more by reading Statsig's SDK reference and quickstart guide.

Copied
import * as Sentry from "@sentry/react";
import { StatsigClient } from "@statsig/js-client";

const statsigClient = new StatsigClient(
  YOUR_SDK_KEY,
  { userID: "my-user-id" },
  {},
); // see Statsig SDK reference.

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

await statsigClient.initializeAsync(); // or statsigClient.initializeSync();

const result = statsigClient.checkGate("my-feature-gate");
Sentry.captureException(new Error("something went wrong"));

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

Was this helpful?
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").