Skip to content

Commit 647fa56

Browse files
committed
Add next steps include
1 parent 4eaf357 commit 647fa56

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

docs/organization/integrations/feature-flag/launchdarkly/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Sentry can track changes to feature flag definitions and report suspicious featu
2020

2121
### Install and Configure
2222

23-
To enable the change tracking integration click the "Set Up Integration" button on the feature flag table contained within the issue details page. This will trigger a fly out which will guide you through the two step process.
23+
To enable the change-tracking integration, go to the **Issue Details** page and click the "Set Up Integration" button on the feature flag table. This will trigger a flyout, which will guide you through the two-step process.
2424

2525
![Integration UI](./img/ff-integration-ui.png)
2626

27-
Under the "Integrate Feature Flag Service" heading a Sentry webhook URL has been provided. Additionally, a link to LaunchDarkly's webhook registration interface has been provided. Paste the Sentry webhook URL into the input box labeled "URL" within the LaunchDarkly webhook registration UI.
27+
Under the "Integrate Feature Flag Service" heading a Sentry webhook URL has been provided. The Sentry URL must be registered with LaunchDarkly as a webhook integration within their [webhook integration UI](https://app.launchdarkly.com/settings/integrations/webhooks/new). Paste the Sentry URL into the input box labeled "URL" within the LaunchDarkly webhook registration UI.
2828

2929
Next a signing secret must be created. Check the box that says "Sign this webhook". This will reveal an input element which contains your signing secret. Copy and paste this signing secret into the input box labeled "Secret" on the Sentry fly out. Click "Save Secret" in the Sentry UI, click "Save Settings" in the LaunchDarkly UI, and you're done. Sentry will now accept and authenticate all inbound hooks to your organization's feature flag webhook endpoint.
3030

docs/platforms/javascript/common/configuration/integrations/launchdarkly.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ Learn more about the LaunchDarkly SDK at https://docs.launchdarkly.com/sdk/clien
5151
At the moment, **we do not officially support framework-specific LaunchDarkly
5252
SDKs.** However, you may reuse this setup code for React and client-side Node.js.
5353

54-
<PlatformContent includePath="feature-flags/change-tracking-cta-launchdarkly" />
54+
<PlatformContent includePath="feature-flags/next-steps" />

docs/platforms/javascript/common/configuration/integrations/openfeature.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,5 @@ const result = client.getBooleanValue('my-flag', false);
4747
```
4848

4949
Learn more about the OpenFeature SDK at https://github.com/open-feature/js-sdk/tree/main.
50+
51+
<PlatformContent includePath="feature-flags/next-steps" />

docs/platforms/python/integrations/launchdarkly/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4747

4848
Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
4949

50-
<PlatformContent includePath="feature-flags/change-tracking-cta-launchdarkly" />
50+
<PlatformContent includePath="feature-flags/next-steps" />

docs/platforms/python/integrations/openfeature/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ sentry_sdk.capture_exception(Exception("Something went wrong!"))
4646
```
4747

4848
Visit the Sentry website and confirm that your error event has recorded the feature flag "hello" and its value "false".
49+
50+
<PlatformContent includePath="feature-flags/next-steps" />
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Please read the note below to ensure that you also complete one additional step.
2+
3+
<Alert level="warning" title="Next Steps">
4+
5+
- **Track feature flag evaluations in other parts of your codebase.** If needed, you can set up evaluation tracking for more than one SDK. [Read the docs](/product/explore/feature-flags/#set-up-evaluation-tracking) to learn more.
6+
- **Set up your change tracking webhook.** In order to take full advantage of the feature flag capabilities Sentry offers, there is an additional setup step needed. Setting up one or more provider webhooks is needed to enable feature flag change tracking, so that your feature flag provider may communicate feature flag changes to Sentry. Learn how to set this up by [reading the docs](/product/explore/feature-flags/#set-up-change-tracking).
7+
8+
</Alert>

0 commit comments

Comments
 (0)