diff --git a/docs/platforms/python/integrations/index.mdx b/docs/platforms/python/integrations/index.mdx
index 8bbc83947c8e1..993308a904f8f 100644
--- a/docs/platforms/python/integrations/index.mdx
+++ b/docs/platforms/python/integrations/index.mdx
@@ -59,6 +59,13 @@ The Sentry SDK uses integrations to hook into the functionality of popular libra
| | ✓ |
| | |
+## Feature Flags
+
+| | **Auto-enabled** |
+| ----------------------------------------------------------------------------------------------------------------------- | :--------------: |
+| | |
+| | |
+
### Cloud Computing
| | **Auto-enabled** |
diff --git a/docs/platforms/python/integrations/launchdarkly/index.mdx b/docs/platforms/python/integrations/launchdarkly/index.mdx
new file mode 100644
index 0000000000000..15e30d19710ef
--- /dev/null
+++ b/docs/platforms/python/integrations/launchdarkly/index.mdx
@@ -0,0 +1,46 @@
+---
+title: LaunchDarkly
+description: "Learn about the LaunchDarkly integration and how to add it to your integrations list."
+---
+
+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
+
+Install `sentry-sdk` from PyPI.
+
+```bash
+pip install --upgrade 'sentry-sdk'
+```
+
+## Configure
+
+Add `LaunchDarklyIntegration()` to your `integrations` list:
+
+```python
+import sentry_sdk
+from sentry_sdk.integrations.launchdarkly import LaunchDarklyIntegration
+
+sentry_sdk.init(
+ dsn="___PUBLIC_DSN___",
+ integrations=[
+ LaunchDarklyIntegration(),
+ ],
+)
+```
+
+## Verify
+
+The integration is tested by evaluating a feature flag using your LaunchDarkly SDK before capturing an exception.
+
+```python
+import ldclient
+import sentry_sdk
+
+client = ldclient.get()
+client.variation("hello", Context.create("test-context"), 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".
diff --git a/docs/platforms/python/integrations/openfeature/index.mdx b/docs/platforms/python/integrations/openfeature/index.mdx
new file mode 100644
index 0000000000000..0f287aa539bd5
--- /dev/null
+++ b/docs/platforms/python/integrations/openfeature/index.mdx
@@ -0,0 +1,46 @@
+---
+title: OpenFeature
+description: "Learn about the OpenFeature integration and how to add it to your integrations list."
+---
+
+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
+
+Install `sentry-sdk` from PyPI.
+
+```bash
+pip install --upgrade 'sentry-sdk'
+```
+
+## Configure
+
+Add `OpenFeatureIntegration()` to your `integrations` list:
+
+```python
+import sentry_sdk
+from sentry_sdk.integrations.OpenFeature import OpenFeatureIntegration
+
+sentry_sdk.init(
+ dsn="___PUBLIC_DSN___",
+ integrations=[
+ OpenFeatureIntegration(),
+ ],
+)
+```
+
+## Verify
+
+The integration is tested by evaluating a feature flag using your OpenFeature SDK before capturing an exception.
+
+```python
+from openfeature import api
+import sentry_sdk
+
+client = api.get_client()
+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".
diff --git a/docs/product/issues/issue-details/img/feature-flags.png b/docs/product/issues/issue-details/img/feature-flags.png
new file mode 100644
index 0000000000000..4df355e3ea33b
Binary files /dev/null and b/docs/product/issues/issue-details/img/feature-flags.png differ
diff --git a/docs/product/issues/issue-details/img/suspect-flags-table.png b/docs/product/issues/issue-details/img/suspect-flags-table.png
new file mode 100644
index 0000000000000..33ed6541a691d
Binary files /dev/null and b/docs/product/issues/issue-details/img/suspect-flags-table.png differ
diff --git a/docs/product/issues/issue-details/img/suspect-flags-timeline.png b/docs/product/issues/issue-details/img/suspect-flags-timeline.png
new file mode 100644
index 0000000000000..3cfddd34a7b23
Binary files /dev/null and b/docs/product/issues/issue-details/img/suspect-flags-timeline.png differ
diff --git a/docs/product/issues/issue-details/index.mdx b/docs/product/issues/issue-details/index.mdx
index 7003b62afc365..e751a54e5cbc1 100644
--- a/docs/product/issues/issue-details/index.mdx
+++ b/docs/product/issues/issue-details/index.mdx
@@ -102,6 +102,23 @@ If you’ve enabled [Session Replay](/product/explore/session-replay/), you’ll

+## Feature Flags
+If you’ve enabled a feature flag integration you’ll have access to the feature flag table (if any are associated with the event). The table displays the list of flags and their evaluation result prior to encountering an error.
+
+
+
+A timeline of suspect flags is also available if you're using one of our support service providers. A Sentry web hook can be registered with the following providers:
+
+- LaunchDarkly
+
+To enable the suspect flags timeline please visit this page. TODO!
+
+
+
+Suspect flags are displayed in the table with a yellow highlight.
+
+
+
## Breadcrumbs
