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

Install sentry-sdk (>=2.19.2) from PyPI.

Copied
pip install --upgrade 'sentry-sdk'

Add OpenFeatureIntegration() to your integrations list:

Copied
import sentry_sdk
from sentry_sdk.integrations.openfeature import OpenFeatureIntegration
from openfeature import api

client = api.get_client()

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

The integration is tested by evaluating a feature flag using your OpenFeature SDK before capturing an exception.

Copied
from openfeature import api
import sentry_sdk

# Reference `client` from the Configure step.
client.get_boolean_value("hello", default_value=False)

sentry_sdk.capture_exception(Exception("Something went wrong!"))

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").