Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/platforms/python/integrations/launchdarkly/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ title: LaunchDarkly
description: "Learn about the LaunchDarkly integration and how to add it to your integrations list."
---

<Alert level="info" title="Currently in Beta">

The support for **feature flag change tracking** and **feature flag evaluation tracking** is currently in beta.

</Alert>

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
Expand Down Expand Up @@ -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".

<PlatformContent includePath="feature-flags/" />


8 changes: 8 additions & 0 deletions docs/platforms/python/integrations/openfeature/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ title: OpenFeature
description: "Learn about the OpenFeature integration and how to add it to your integrations list."
---

<Alert level="info" title="Currently in Beta">

The support for **feature flag change tracking** and **feature flag evaluation tracking** is currently in beta.

</Alert>

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
Expand Down Expand Up @@ -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".

<PlatformContent includePath="feature-flags/" />
8 changes: 8 additions & 0 deletions platform-includes/feature-flags/_default.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Please read the note below to ensure that you also complete one additional step.

<Alert level="warning" title="Next Steps">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm why don't we have the set up for feature flag changes and evaluations instructions embedded on this integrations page? 🤔

I think there's some consolidating we could do


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

</Alert>
Loading