Skip to content

Commit c8ae402

Browse files
committed
Made feature flag docs consistent with other integrations
1 parent c3a3ba0 commit c8ae402

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

docs/platforms/python/feature-flags/index.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
---
22
title: Set Up Feature Flags
33
sidebar_order: 7000
4-
description: With Feature Flags, Sentry tracks feature flag evaluations in your application, keeps an audit log feature flag changes, and reports any suspicious updates that may have caused an error.
4+
description: With Feature Flags, Sentry tracks feature flag evaluations in your application, keeps an audit log of feature flag changes, and reports any suspicious updates that may have caused an error.
55
---
66

77
<PlatformContent includePath="feature-flags/prerelease-alert" />
88

9+
A feature flagging integration allows you to manually track feature flag evaluations through an API. These evaluations are collected in memory, and in the event an error occurs, sent to Sentry for review and analysis.
10+
11+
912
## Prerequisites
1013

1114
* You have the <PlatformLink to="/">Python SDK installed</PlatformLink>.
@@ -15,9 +18,9 @@ description: With Feature Flags, Sentry tracks feature flag evaluations in your
1518
Evaluation tracking typically requires enabling an SDK integration. Integrations are provider specific. Documentation for supported providers is listed below.
1619

1720
- [Generic (API)](/platforms/python/feature-flags/#generic-api)
18-
- [LaunchDarkly](/platforms/python/integrations/feature-flags/launchdarkly/)
19-
- [OpenFeature](/platforms/python/integrations/feature-flags/openfeature/)
20-
- [Unleash](/platforms/python/integrations/feature-flags/unleash/)
21+
- [LaunchDarkly](/platforms/python/integrations/launchdarkly/)
22+
- [OpenFeature](/platforms/python/integrations/openfeature/)
23+
- [Unleash](/platforms/python/integrations/unleash/)
2124

2225
### Generic API
2326
The generic API allows you to manually track feature flag evaluations. These

docs/platforms/python/integrations/feature-flags/index.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/middleware.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,18 @@ const USER_DOCS_REDIRECTS: Redirect[] = [
505505
from: '/platforms/python/tryton/',
506506
to: '/platforms/python/integrations/tryton/',
507507
},
508+
{
509+
from: '/platforms/python/integrations/feature-flags/launchdarkly/',
510+
to: '/platforms/python/integrations/launchdarkly/',
511+
},
512+
{
513+
from: '/platforms/python/integrations/feature-flags/openfeature/',
514+
to: '/platforms/python/integrations/openfeature/',
515+
},
516+
{
517+
from: '/platforms/python/integrations/feature-flags/unleash/',
518+
to: '/platforms/python/integrations/unleash/',
519+
},
508520
{
509521
from: '/clients/python/breadcrumbs/',
510522
to: '/platforms/python/legacy-sdk/breadcrumbs/',

0 commit comments

Comments
 (0)