feat(ws): add websocket context propagation#7077
Conversation
Overall package sizeSelf size: 4.36 MB Dependency sizes| name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 2.0.0 | 68.46 kB | 797.03 kB | | dc-polyfill | 0.1.10 | 26.73 kB | 26.73 kB |🤖 This report was automatically generated by heaviest-objects-in-the-universe |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7077 +/- ##
==========================================
- Coverage 84.78% 84.77% -0.02%
==========================================
Files 521 522 +1
Lines 22155 22232 +77
==========================================
+ Hits 18785 18848 +63
- Misses 3370 3384 +14 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
BenchmarksBenchmark execution time: 2025-12-18 16:57:21 Comparing candidate commit fc06332 in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 290 metrics, 30 unstable metrics. |
47328cc to
3f28727
Compare
|
✅ Tests 🎉 All green!❄️ No new flaky tests detected 🔗 Commit SHA: fc06332 | Docs | Datadog PR Page | Was this helpful? Give us feedback! |
491e130 to
0923bc5
Compare
3821bab to
fc06332
Compare
crysmags
left a comment
There was a problem hiding this comment.
All looks good here :)
| // Determine prefix based on server/client and incoming/outgoing | ||
| // Server outgoing or client incoming: 'S' | ||
| // Server incoming or client outgoing: 'C' | ||
| const prefix = (isServer && !isIncoming) || (!isServer && isIncoming) ? 'S' : 'C' |
There was a problem hiding this comment.
| const prefix = (isServer && !isIncoming) || (!isServer && isIncoming) ? 'S' : 'C' | |
| const prefix = isServer !== isIncoming ? 'S' : 'C' |
What does this PR do?
Motivation