From b41d471499791baf5c90d0b600203aa54fb6f2b2 Mon Sep 17 00:00:00 2001 From: Rian van der Merwe Date: Tue, 8 Sep 2026 11:33:03 -0700 Subject: [PATCH 1/2] [Workers] Fix observability documentation links --- src/content/docs/workers/observability/source-maps.mdx | 2 +- src/content/docs/workers/runtime-apis/console.mdx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/workers/observability/source-maps.mdx b/src/content/docs/workers/observability/source-maps.mdx index 60718c6644c..13a3895cbc4 100644 --- a/src/content/docs/workers/observability/source-maps.mdx +++ b/src/content/docs/workers/observability/source-maps.mdx @@ -88,6 +88,6 @@ With **source maps uploaded**: all methods reference the correct files and line ## Related resources -* [Tail Workers](/workers/observability/logs/logpush/) - Learn how to attach Tail Workers to transform your logs and send them to HTTP endpoints. +* [Tail Workers](/workers/observability/logs/tail-workers/) - Learn how to attach Tail Workers to transform your logs and send them to HTTP endpoints. * [Real-time logs](/workers/observability/logs/real-time-logs/) - Learn how to capture Workers logs in real-time. * [RPC error handling](/workers/runtime-apis/rpc/error-handling/) - Learn how exceptions are handled over RPC (Remote Procedure Call). diff --git a/src/content/docs/workers/runtime-apis/console.mdx b/src/content/docs/workers/runtime-apis/console.mdx index 6ed3997531c..d38f557f965 100644 --- a/src/content/docs/workers/runtime-apis/console.mdx +++ b/src/content/docs/workers/runtime-apis/console.mdx @@ -19,15 +19,15 @@ The table below enumerates each method, and the extent to which it is supported All methods noted as "✅ supported" have the following behavior: * They will be written to the console in local dev (`npx wrangler@latest dev`) -* They will appear in live logs, when tailing logs in the dashboard or running [`wrangler tail`](https://developers.cloudflare.com/workers/observability/log-from-workers/#use-wrangler-tail) -* They will create entries in the `logs` field of [Tail Worker](https://developers.cloudflare.com/workers/observability/tail-workers/) events and [Workers Trace Events](https://developers.cloudflare.com/logs/logpush/logpush-job/datasets/account/workers_trace_events/), which can be pushed to a destination of your choice via [Logpush](https://developers.cloudflare.com/workers/observability/logpush/). +* They will appear in real-time logs when tailing logs in the dashboard or running [`wrangler tail`](/workers/observability/logs/real-time-logs/#view-logs-using-wrangler-tail) +* They will create entries in the `logs` field of [Tail Worker](/workers/observability/logs/tail-workers/) events and [Workers Trace Events](/logs/logpush/logpush-job/datasets/account/workers_trace_events/), which can be pushed to a destination of your choice via [Logpush](/workers/observability/logs/logpush/). All methods noted as "🟡 partial support" have the following behavior: * In both production and local development the method can be safely called, but will do nothing (no op) * In the [Workers Playground](https://workers.cloudflare.com/playground), Quick Editor in the Workers dashboard, and remote preview mode (`wrangler dev --remote`) calling the method will behave as expected, print to the console, etc. -Refer to [Log from Workers](https://developers.cloudflare.com/workers/observability/log-from-workers/) for more on debugging and adding logs to Workers. +Refer to [Logs](/workers/observability/logs/) for more information about debugging and adding logs to Workers. | Method | Behavior | | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | From 226ff68cb3814886ecc8206db052506dc48b75df Mon Sep 17 00:00:00 2001 From: Rian van der Merwe Date: Tue, 8 Sep 2026 11:49:14 -0700 Subject: [PATCH 2/2] [Workers] Clarify Logpush behavior --- src/content/docs/workers/runtime-apis/console.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/runtime-apis/console.mdx b/src/content/docs/workers/runtime-apis/console.mdx index d38f557f965..1e02d06d0db 100644 --- a/src/content/docs/workers/runtime-apis/console.mdx +++ b/src/content/docs/workers/runtime-apis/console.mdx @@ -20,7 +20,7 @@ All methods noted as "✅ supported" have the following behavior: * They will be written to the console in local dev (`npx wrangler@latest dev`) * They will appear in real-time logs when tailing logs in the dashboard or running [`wrangler tail`](/workers/observability/logs/real-time-logs/#view-logs-using-wrangler-tail) -* They will create entries in the `logs` field of [Tail Worker](/workers/observability/logs/tail-workers/) events and [Workers Trace Events](/logs/logpush/logpush-job/datasets/account/workers_trace_events/), which can be pushed to a destination of your choice via [Logpush](/workers/observability/logs/logpush/). +* They will create entries in the `logs` field of [Tail Worker](/workers/observability/logs/tail-workers/) events and [Workers Trace Events](/logs/logpush/logpush-job/datasets/account/workers_trace_events/). You can use [Logpush](/workers/observability/logs/logpush/) to send Workers Trace Event Logs to a supported destination. All methods noted as "🟡 partial support" have the following behavior: