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 in the event an error occurs, sent to Sentry for review and analysis. At the moment, we only support boolean flag evaluations.

Install sentry-sdk from PyPI.

Copied
pip install --upgrade 'sentry-sdk'

Add FeatureFlagsIntegration() to your integrations list:

Copied
import sentry_sdk
from sentry_sdk.integrations.featureflags import FeatureFlagsIntegration

sentry_sdk.init(
    dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
    integrations=[
        FeatureFlagsIntegration(),
    ],
)

The integration is tested by calling the add_feature_flag API before capturing an exception.

Copied
import sentry_sdk
from sentry_sdk.integrations.featureflags import add_feature_flag

add_feature_flag('test-flag', False)

sentry_sdk.capture_exception(Exception("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").