Skip to content

Commit ae675d9

Browse files
Update RN Custom Metrics to use Sentry.setMeasurement (#12496)
Co-authored-by: Alex Krawiec <[email protected]>
1 parent 8b18e0c commit ae675d9

File tree

3 files changed

+14
-24
lines changed

3 files changed

+14
-24
lines changed

docs/platforms/react-native/tracing/instrumentation/performance-metrics.mdx

+14-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ sidebar_order: 20
66

77
Sentry's SDKs support sending performance metrics data to Sentry. These are numeric values attached to transactions that are aggregated and displayed in Sentry.
88

9-
<PlatformContent includePath="performance/automatic-performance-metrics" />
9+
The React Native SDK automatically collects the following performance metrics:
10+
11+
- <PlatformLink to="/tracing/instrumentation/automatic-instrumentation/#app-start-instrumentation"> Cold and warm app start time </PlatformLink>
12+
- <PlatformLink to="/tracing/instrumentation/automatic-instrumentation/#slow-and-frozen-frames"> Slow and frozen frame rendering </PlatformLink>
1013

1114
## Custom Measurements
1215

@@ -20,7 +23,16 @@ To set a performance measurement, you need to supply the following:
2023

2124
Sentry supports adding arbitrary custom units, but we recommend using one of the [supported units listed below](./#supported-measurement-units).
2225

23-
<PlatformContent includePath="performance/custom-performance-metrics" />
26+
```javascript
27+
// Record amount of memory used
28+
Sentry.setMeasurement("memoryUsed", 123, "byte");
29+
30+
// Record time when Footer component renders on page
31+
Sentry.setMeasurement("ui.footerComponent.render", 1.3, "second");
32+
33+
// Record amount of times localStorage was read
34+
Sentry.setMeasurement("localStorageRead", 4);
35+
```
2436

2537
<Include name="custom-measurements-units-disclaimer.mdx" />
2638

platform-includes/performance/automatic-performance-metrics/react-native.mdx

-6
This file was deleted.

platform-includes/performance/custom-performance-metrics/react-native.mdx

-16
This file was deleted.

0 commit comments

Comments
 (0)