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
37 changes: 37 additions & 0 deletions docs/organization/integrations/feature-flag/flagsmith/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: Flagsmith
sidebar_order: 1
description: Learn about Sentry's Flagsmith integrations.
---

## Evaluation Tracking

Sentry can track flag evaluations as they happen within your application. Flag evaluations will appear in the "Feature Flag" section of the 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 page documentation](/product/issues/issue-details/#feature-flags).

### Set Up Evaluation Tracking

Flagsmith recommends using a OpenFeature SDK and [Flagsmith Provider](https://openfeature.dev/ecosystem?instant_search%5Bquery%5D=flagsmith&instant_search%5BrefinementList%5D%5Btype%5D%5B0%5D=Provider) to evaluate feature flags. To track these evaluations, visit one of our supported languages pages for OpenFeature:
* [JavaScript](/platforms/javascript/configuration/integrations/openfeature/)
* [Python](/platforms/python/integrations/openfeature/)
Comment on lines +11 to +15
Copy link
Copy Markdown
Member Author

@aliu39 aliu39 Jul 1, 2025

Choose a reason for hiding this comment

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

The only changed content for this file. The rest can stay the same, other than sidebar_order: 1


## Change Tracking

Sentry can track changes to feature flag definitions and report suspicious feature flag edits.

### Set Up Change Tracking

Enabling Change Tracking is a three-step process. To get started, visit the [feature flags settings page](https://sentry.io/orgredirect/organizations/:orgslug/settings/feature-flags/change-tracking/) in a new tab. Then follow the steps listed below.

1. **Click the "Add New Provider" button.**
- One webhook secret can be registered per provider type.
- Select Generic in the dropdown that says "Select a provider".
2. **Register the webhook URL**.
- Go to your Flagsmith project dashboard and navigate to the `/project/:projectid/integrations` page, which can be found by clicking "Integrations" on the top navigation bar.
- Find the Sentry option, and click "Add Integration", which will open a modal.
- Select the Environment from which flag change events will trigger.
- Copy the provided Sentry webhook URL and paste it into "Webhook URL" in the Flagsmith "Sentry Integration" modal.
3. **Set the Signing Secret**.
- Still in the Flagsmith "Sentry Integration" modal, type in any string between 10 and 60 characters to use as your authorization token ("secret").
- Copy the authorization token from the previous step and paste it into the input box next to "Secret" in Sentry settings.

Once saved, Sentry will now accept and authenticate all inbound hooks to your organization's feature flag webhook endpoint.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Generic
sidebar_order: 1
sidebar_order: 6
description: Learn about Sentry's generic feature-flag integrations.
---

Expand Down
3 changes: 2 additions & 1 deletion docs/organization/integrations/feature-flag/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ sidebar_order: 90
description: "Learn more about Sentry's feature flag integrations."
---

- [Generic](/organization/integrations/feature-flag/generic/)
- [Flagsmith](/organization/integrations/feature-flag/flagsmith/)
- [LaunchDarkly](/organization/integrations/feature-flag/launchdarkly/)
- [Statsig](/organization/integrations/feature-flag/statsig/)
- [Split](/organization/integrations/feature-flag/split/)
- [Unleash](/organization/integrations/feature-flag/unleash/)
- [Generic](/organization/integrations/feature-flag/generic/)
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Change tracking requires registering a Sentry webhook with a feature flag provider. For set up instructions, visit the documentation for your provider:
* [Flagsmith](/organization/integrations/feature-flag/flagsmith/#change-tracking)
* [LaunchDarkly](/organization/integrations/feature-flag/launchdarkly/#change-tracking)
* [Statsig](/organization/integrations/feature-flag/statsig/#change-tracking)
* [Unleash](/organization/integrations/feature-flag/unleash/#change-tracking)
Expand Down