Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Clean up
  • Loading branch information
cmanallen committed Nov 11, 2024
commit cd6eceed754e830f75c3520f7554c7ca372a367e
6 changes: 4 additions & 2 deletions docs/product/issues/issue-details/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ If you’ve enabled [Session Replay](/product/explore/session-replay/), you’ll
## Feature Flags
There are two types of integrations you can configure to integrate feature flag data into your error events.

The first is to configure runtime feature flag evaluation tracking in the sentry SDK. Doing this will give you access to the feature flag table which shows any flags that were evaluated after the Sentry SDK's initialization and before the error event occurred. You will see rows of flag, evaluation-result pairs.
The first type is flag evaluation tracking within the Sentry SDK. To enable it, update the Sentry SDK's "init" method to include one of our supported feature flag integrations. Support varies by language and by provider. Doing so will give you access to the feature flag table which shows any flags that were evaluated after the Sentry SDK's initialization and before the error event occurred. You will see rows of flag, evaluation-result pairs.

The second is to configure feature flag change tracking. This will enable a timeline of feature flag changes inside the releases graph. These annotations can help you diagnose when a feature flag change is related to a new issue.
The second type is feature flag change tracking. This will enable a timeline of feature flag definition changes inside the releases graph. These annotations can help you diagnose when a feature flag change is related to a new issue. To enable this type of integration please visit the documentation page of one of our supported providers:

* [LaunchDarkly](/organization/integrations/feature-flag/launchdarkly/#change-tracking-integration)

When both of these integration are enabled you will also see suspect feature flags highlighted inside the feature flag table. Feature flags are suspect when their modification occurs suspiciously close to the initial detection of a new issue. Suspect feature flags are displayed are given a yellow highlight within the feature flag table.

Expand Down
Loading