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
We currently don't track the performance of web streams well. What does count as web streams? Basically everything that returns data in chunks (probably even normal http responses too):
Websockets
Server Sent Events
Video streams
etc.
In node we do this reasonably well because we hook into res.end() which generally marks the end of a Stream, however, we need to improve the WinterCG case with Response. The reader seems to have a done property on stream chunks that we could use to mark the end of the stream.
The text was updated successfully, but these errors were encountered:
This was originally raised in #9626
We currently don't track the performance of web streams well. What does count as web streams? Basically everything that returns data in chunks (probably even normal http responses too):
In node we do this reasonably well because we hook into
res.end()
which generally marks the end of a Stream, however, we need to improve the WinterCG case withResponse
. The reader seems to have adone
property on stream chunks that we could use to mark the end of the stream.The text was updated successfully, but these errors were encountered: