diff --git a/docs/platforms/python/integrations/launchdarkly/index.mdx b/docs/platforms/python/integrations/launchdarkly/index.mdx index 15e30d19710efb..1fabe5c9ffe2a4 100644 --- a/docs/platforms/python/integrations/launchdarkly/index.mdx +++ b/docs/platforms/python/integrations/launchdarkly/index.mdx @@ -3,6 +3,12 @@ title: LaunchDarkly description: "Learn about the LaunchDarkly integration and how to add it to your integrations list." --- + + +The support for **feature flag change tracking** and **feature flag evaluation tracking** is currently in beta. + + + The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag evaluations produced by the LaunchDarkly SDK. These evaluations are held in memory and, in the event an error occurs, sent to Sentry for review and analysis. ## Install @@ -44,3 +50,7 @@ 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". + + + + diff --git a/docs/platforms/python/integrations/openfeature/index.mdx b/docs/platforms/python/integrations/openfeature/index.mdx index 0f287aa539bd51..598c81ecaac1e5 100644 --- a/docs/platforms/python/integrations/openfeature/index.mdx +++ b/docs/platforms/python/integrations/openfeature/index.mdx @@ -3,6 +3,12 @@ title: OpenFeature description: "Learn about the OpenFeature integration and how to add it to your integrations list." --- + + +The support for **feature flag change tracking** and **feature flag evaluation tracking** is currently in beta. + + + The [OpenFeature](https://openfeature.dev/) 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. ## Install @@ -44,3 +50,5 @@ 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". + + \ No newline at end of file diff --git a/platform-includes/feature-flags/_default.mdx b/platform-includes/feature-flags/_default.mdx new file mode 100644 index 00000000000000..f6fcd4cd07ef9d --- /dev/null +++ b/platform-includes/feature-flags/_default.mdx @@ -0,0 +1,8 @@ +Please read the note below to ensure that you also complete one additional step. + + + +- **Track feature flag evaluations in other parts of your codebase.** If needed, you can set up evaluation tracking for more than one SDK. [Read the docs](/product/explore/feature-flags/#set-up-your-language-specific-sdk) to learn more. +- **Set up your change tracking webhook.** In order to take full advantage of the feature flag capabilities Sentry offers, there is an additional setup step needed, which is setting up your integration-specific webhook. This is needed to enable feature flag change tracking, so that your integration may communicate feature flag changes to Sentry. Learn how to set this up by [reading the docs](/product/explore/feature-flags/#set-up-your-integration-specific-webhook). + + \ No newline at end of file