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: platform-includes/distributed-tracing/custom-instrumentation/javascript.mdx
+116Lines changed: 116 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,3 +65,119 @@ Once the callback ends, the SDK will continue the previous trace (if available).
65
65
## Verification
66
66
67
67
If you make outgoing requests from your project to other services, check if the headers `sentry-trace` and `baggage` are present in the request. If so, distributed tracing is working.
68
+
69
+
<PlatformCategorySectionsupported={["server"]}>
70
+
## Example: Manual Instrumentation for gRPC
71
+
72
+
### Server-Side Propagation
73
+
74
+
```javascript
75
+
// gRPC server interceptor with Sentry instrumentation
0 commit comments