Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/content/docs/workers/observability/errors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,8 @@ To review whether your application is experiencing any downtime or returning any
2. In **Account Home**, select **Workers & Pages**.
3. In **Overview**, select your Worker and review your Worker's metrics.

A `responseStreamDisconnected` event `outcome` occurs when one end of the connection hangs up during the deferred proxying stage of a Worker request flow. This is regarded as an error for request metrics, and presents in logs as a non-error log entry. It commonly appears for longer lived connections such as WebSockets.

## Debug exceptions

After you have identified your Workers application is returning exceptions, use `wrangler tail` to inspect and fix the exceptions.
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/workers/runtime-apis/handlers/tail.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export default {
* `exceededMemory`: The Worker invocation exceeded memory limits.
* `scriptNotFound`: An internal error from difficulty retrieving the Worker script.
* `canceled`: The worker invocation was canceled before it completed. Commonly because the client disconnected before a response could be sent.
* `responseStreamDisconnected`: The response stream was disconnected during deferred proxying. Happens when either the client or server hangs up early.



Expand Down