Skip to content
Draft
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
6 changes: 1 addition & 5 deletions docs/platforms/python/metrics/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_order: 5755

<Alert>

This feature is currently in limited beta. Please reach out on [GitHub](https://github.com/getsentry/sentry-python/discussions/5042) if you have feedback or questions. Features in beta are still in-progress and may have bugs. We recognize the irony.
This feature is currently in open beta. Please reach out on [GitHub](https://github.com/getsentry/sentry-python/discussions/5042) if you have feedback or questions. Features in beta are still in-progress and may have bugs. We recognize the irony.

</Alert>

Expand All @@ -17,10 +17,6 @@ With Sentry Metrics, you can send counters, gauges and distributions from your a

<PlatformContent includePath="metrics/requirements" />

## Setup

<PlatformContent includePath="metrics/setup" />

## Usage

<PlatformContent includePath="metrics/usage" />
Expand Down
1 change: 0 additions & 1 deletion platform-includes/metrics/options/python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def before_metric(metric: Metric, _hint: Hint) -> Optional[Metric]:
sentry_sdk.init(
dsn="___PUBLIC_DSN___",
_experiments={
"enable_metrics": True,
"before_send_metric": before_metric,
},
)
Expand Down
2 changes: 1 addition & 1 deletion platform-includes/metrics/requirements/python.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Metrics for Python are supported in Sentry Python SDK version `2.43.0` and above.
Metrics for Python are supported in Sentry Python SDK version `2.44.0` and above.
Copy link
Contributor Author

@alexander-alderman-webb alexander-alderman-webb Oct 31, 2025

Choose a reason for hiding this comment

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

Updated the requirement so users do not run into the enable_metrics gate.


```bash {tabTitle:pip}
pip install "sentry-sdk"
Expand Down
10 changes: 0 additions & 10 deletions platform-includes/metrics/setup/python.mdx

This file was deleted.

Loading