Skip to content
Merged
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: 8 additions & 2 deletions docs/platforms/python/integrations/launchdarkly/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ The [LaunchDarkly](https://launchdarkly.com/) integration tracks feature flag ev

## Install

Install `sentry-sdk` (>=2.19.2) from PyPI.
Install `sentry-sdk` from PyPI with the `launchdarkly` extra.

```bash
pip install --upgrade 'sentry-sdk'
pip install --upgrade 'sentry-sdk[launchdarkly]'
```

## Configure
Expand Down Expand Up @@ -47,4 +47,10 @@ 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".

## Supported Versions

- launchdarkly-server-sdk >= 9.8.0
- sentry-sdk >= 2.19.2
- python >= 3.8

<PlatformContent includePath="feature-flags/next-steps" />
10 changes: 8 additions & 2 deletions docs/platforms/python/integrations/openfeature/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ The [OpenFeature](https://openfeature.dev/) integration tracks feature flag eval

## Install

Install `sentry-sdk` (>=2.19.2) from PyPI.
Install `sentry-sdk` from PyPI with the `openfeature` extra.

```bash
pip install --upgrade 'sentry-sdk'
pip install --upgrade 'sentry-sdk[openfeature]'
```

## Configure
Expand Down Expand Up @@ -47,4 +47,10 @@ 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".

## Supported Versions

- openfeature-sdk >= 0.7.1
- sentry-sdk >= 2.19.2
- python >= 3.8

<PlatformContent includePath="feature-flags/next-steps" />
10 changes: 8 additions & 2 deletions docs/platforms/python/integrations/unleash/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ The [Unleash](https://www.getunleash.io/) integration tracks feature flag evalua

## Install

Install `sentry-sdk` (>=2.20.0) and `UnleashClient` (>=6.0.1) from PyPI.
Install `sentry-sdk` from PyPI with the `unleash` extra.

```bash
pip install --upgrade sentry-sdk UnleashClient
pip install --upgrade 'sentry-sdk[unleash]'
```

## Configure
Expand Down Expand Up @@ -49,4 +49,10 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
Visit the [Sentry website](https://sentry.io/issues/) and confirm that your error
event has recorded the feature flag "test-flag", and its value is equal to `test_flag_enabled`.

## Supported Versions

- UnleashClient >= 6.0.1
- sentry-sdk >= 2.20.0
- python >= 3.8

<PlatformContent includePath="feature-flags/next-steps" />
Loading