Skip to content

Commit 9e67766

Browse files
committed
try to fix the link
1 parent 5babbf8 commit 9e67766

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/content/docs/workers/observability/errors.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -246,27 +246,27 @@ To review whether your application is experiencing any downtime or returning any
246246

247247
The **Errors by invocation status** chart shows the number of errors broken down into the following categories:
248248

249-
| Error | Meaning |
250-
| -------------------------------- | ------------------------------------------------------------------------------------------ |
251-
| `Uncaught Exception` | Your Worker code threw a JavaScript exception during execution. |
252-
| `Exceeded CPU Time Limits` | Worker exceeded CPU time limit or other resource constraints. |
253-
| `Exceeded Memory` | Worker exceeded the memory limit during execution. |
254-
| `Internal` | An internal error occurred in the Workers runtime. |
249+
| Error | Meaning |
250+
| -------------------------- | --------------------------------------------------------------- |
251+
| `Uncaught Exception` | Your Worker code threw a JavaScript exception during execution. |
252+
| `Exceeded CPU Time Limits` | Worker exceeded CPU time limit or other resource constraints. |
253+
| `Exceeded Memory` | Worker exceeded the memory limit during execution. |
254+
| `Internal` | An internal error occurred in the Workers runtime. |
255255

256256
The **Client disconnected by type** chart shows the number of client disconnect errors broken down into the following categories:
257257

258-
| Client Disconnects | Meaning |
259-
| -------------------------------- | ------------------------------------------------------------------------------------------ |
260-
| `Response Stream Disconnected` | Connection was terminated during the deferred proxying stage of a Worker request flow. It commonly appears for longer lived connections such as WebSockets. |
261-
| `Cancelled` | The Client disconnected before the Worker completed its response. |
258+
| Client Disconnects | Meaning |
259+
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
260+
| `Response Stream Disconnected` | Connection was terminated during the deferred proxying stage of a Worker request flow. It commonly appears for longer lived connections such as WebSockets. |
261+
| `Cancelled` | The Client disconnected before the Worker completed its response. |
262262

263263
## Debug exceptions with Workers Logs
264264

265-
[Workers Logs](/workers/observability/logs/workers-logs) is a powerful tool for debugging your Workers. It allows you to see the logs generated by your Worker, including any uncaught exceptions that occur during execution.
265+
[Workers Logs](/workers/observability/logs/workers-logs) is a powerful tool for debugging your Workers. It shows all the historic logs generated by your Worker, including any uncaught exceptions that occur during execution.
266266

267-
To find all your errors in Workers Logs, you can use the following filter: `$metadata.error EXISTS`. This will show you all the logs that have an error associated with them. You can also filter by `$workers.outcome` to find the requests that resulted in an error. For example, you can filter by `$workers.outcome = "exception"` to find all the requests that resulted in an uncaught exception.
267+
To find all your errors in Workers Logs, you can use the following filter: `$metadata.error EXISTS`. This will show all the logs that have an error associated with them. You can also filter by `$workers.outcome` to find the requests that resulted in an error. For example, you can filter by `$workers.outcome = "exception"` to find all the requests that resulted in an uncaught exception.
268268

269-
All the possible outcome values can be found in the [Workers Trace Events](logs/reference/log-fields/account/workers_trace_events/#outcome) reference.
269+
All the possible outcome values can be found in the [Workers Trace Event](/logs/reference/log-fields/account/workers_trace_events/#outcome) reference.
270270

271271
## Debug exceptions from `Wrangler`
272272

0 commit comments

Comments
 (0)