Skip to content

Commit 2e58547

Browse files
Alex KrawiecAlex Krawiec
authored andcommitted
First content pass
1 parent ea97ab8 commit 2e58547

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

docs/product/explore/metrics/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
title: "Metrics"
33
sidebar_order: 75
4-
description: "Send counters, gauges, and distributions from your code to track application health and pivot directly into related traces, logs, and errors."
4+
description: "Send counters, gauges, and distributions from your code to track application health and drill down into related traces, logs, and errors."
55
---
66

77
<Alert level="info">
8-
Metrics is currently in beta. If you'd like access for JavaScript or Python, please comment with your org slug on [this GitHub discussion](https://github.com/getsentry/sentry/discussions/102275) or contact us at [email protected].
8+
Metrics is currently in Open Beta for non-Enterprise plans runing the JavaScript or Python SDKs. If you'd like access, please comment with your org slug on [this GitHub discussion](https://github.com/getsentry/sentry/discussions/102275) or contact us at [email protected].
99
</Alert>
1010

1111
## Overview
1212

13-
With Sentry Metrics, you can send counters, gauges, and distributions from your code to track application health signals like `email.sent`, `checkout.failed`, or `queue.depth`. What makes Sentry's Metrics unique is that every metric event is **trace-connected**, meaning you can pivot directly into the related traces, logs, and errors when something looks off.
13+
With Sentry Metrics, you can send counters, gauges, and distributions from your code to track application health signals like `email.sent`, `checkout.failed`, or `queue.depth`. What makes Sentry's Metrics unique is that every metric event is **trace-connected**, meaning you can click directly into the related traces, logs, and errors when something looks off.
1414

15-
Unlike traditional metrics tools that only show _that_ something changed, Sentry's trace-connected metrics let you understand _why_ it changed. When a `checkout.failed` counter spikes, you can click into a sample and see the exact trace, spans, logs, and errors that produced that metric event.
15+
Unlike traditional metrics tools that only show _if_ something's changed, Sentry's trace-connected metrics let you understand _why_ it changed. When a `checkout.failed` counter spikes, you can click into a sample and see the exact trace, spans, logs, and errors that produced that metric event.
1616

1717
Not everything in your application generates an error or requires full tracing. Metrics are perfect for tracking:
1818

@@ -29,7 +29,7 @@ To get started with Metrics, navigate to the [Getting Started](/product/explore/
2929

3030
Sentry supports three types of metrics:
3131

32-
### Counter
32+
### Counters
3333

3434
Counters track how many times something happened. Each increment adds to a cumulative total.
3535

@@ -38,7 +38,7 @@ Counters track how many times something happened. Each increment adds to a cumul
3838
- `checkout.failed` - Track failed checkout attempts
3939
- `api.request` - Track API calls
4040

41-
### Gauge
41+
### Gauges
4242

4343
Gauges set a specific value at a point in time, like a snapshot. The latest value replaces the previous one.
4444

@@ -47,7 +47,7 @@ Gauges set a specific value at a point in time, like a snapshot. The latest valu
4747
- `pool.in_use` - Active connections in a pool
4848
- `memory.usage` - Current memory consumption
4949

50-
### Distribution
50+
### Distributions
5151

5252
Distributions record numeric values to compute statistical aggregates like p50, p95, average, and sum.
5353

redirects.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,10 +1063,6 @@ const userDocsRedirects = [
10631063
source: '/product/explore/feature-flags/:path*',
10641064
destination: '/product/issues/issue-details/feature-flags/:path*',
10651065
},
1066-
{
1067-
source: '/product/explore/metrics/:path*',
1068-
destination: '/concepts/key-terms/tracing/span-metrics/',
1069-
},
10701066
{
10711067
source: '/product/tracing/:path*',
10721068
destination: '/concepts/key-terms/tracing/:path*',

0 commit comments

Comments
 (0)