Skip to content
Closed
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
32 changes: 32 additions & 0 deletions docs/product/explore/feature-flags/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: "Feature Flags"
sidebar_order: 100
description: "Learn how to set up and interact with Sentry's feature flag evaluation tracking and feature flag change tracking."
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
description: "Learn how to set up and interact with Sentry's feature flag evaluation tracking and feature flag change tracking."
description: "Learn how to set up and interact with Sentry's feature flag evaluation and feature flag change tracking."

---

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

**Feature flag change tracking** and **feature flag evaluation tracking** is currently in closed beta. If you'd like to be added to the beta, please fill out [this form](https://forms.gle/EeNwTepvVwt7poAJ8).

</Alert>

Enabling a feature flag integration gives you deep insights into the state of your application prior to failure. A list of flags and their evaluation results are displayed on each error event. Integrating Sentry with your feature flag provider enables Sentry to correlate feature flag changes with new error events and mark certain changes as suspicious.

## Evaluation Tracking

Flag evaluations will appear in the "Feature Flag" section of Issue Details page as a table, with "suspect" flag predictions highlighted in yellow. Learn more about how to interact with feature flag insights within the Sentry UI by reading the [Issue Details docs](/product/issues/issue-details/#feature-flags/).

### Set Up Evaluation Tracking

Supported Platforms:
* [JavaScript](/platforms/javascript/feature-flags/)
* [Python](/platforms/python/feature-flags/)
Copy link
Contributor

Choose a reason for hiding this comment

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

These links both 404, I'm guessing those pages are in development as well; let's make sure we don't merge this until those urls are live.


## Change Tracking

Change tracking enables Sentry to listen for updates to your feature flags' definitions. On change, we'll record the event in an audit log. The audit log appears in the "event volume" chart and presents itself as a "release" line. If the change is responsible for a new error event, we'll notify you by marking the feature flag as "suspect" on the issue details page. Learn more about how to interact with feature flag insights within the Sentry UI by reading the [Issue Details page documentation](/product/issues/issue-details/#feature-flags/).

### Set Up Change Tracking

Supported Feature Flag Providers:
* [LaunchDarkly](/organization/integrations/feature-flag/launchdarkly/)
Loading