Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 1 addition & 4 deletions platform-includes/metrics/options/python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ def before_metric(metric: Metric, _hint: Hint) -> Optional[Metric]:

sentry_sdk.init(
dsn="___PUBLIC_DSN___",
_experiments={
"enable_metrics": True,
"before_send_metric": before_metric,
},
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.

```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