You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@
6
6
7
7
## 7.69.0
8
8
9
+
### Important Changes
10
+
9
11
-**New Performance APIs**
10
12
- feat: Update span performance API names (#8971)
11
13
- feat(core): Introduce startSpanManual (#8913)
@@ -44,7 +46,7 @@ function middleware(_req, res, next) {
44
46
}
45
47
```
46
48
47
-
`Sentry.startSpan` and `Sentry.startSpanManual` create a span and make it active for the duration of the callback. If you want to create a span without making it active, use `Sentry.startInactiveSpan`. This is useful for creating parallel spans that are not related to each other.
49
+
`Sentry.startSpan` and `Sentry.startSpanManual` create a span and make it active for the duration of the callback. Any spans created while this active span is running will be added as a child span to it. If you want to create a span without making it active, use `Sentry.startInactiveSpan`. This is useful for creating parallel spans that are not related to each other.
0 commit comments