From 5d3eaa1976ea686dfda13c58703d281ec081a9f5 Mon Sep 17 00:00:00 2001 From: DTTerastar Date: Sun, 4 Jan 2026 01:09:12 -0500 Subject: [PATCH] Enable observability and logging for both workers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Enable full request logging with 100% sampling rate - Enable worker invocation tracking - Enable persistent log storage - View logs in Cloudflare Workers dashboard 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- espresense-artifact-proxy/wrangler.toml | 7 +++++++ espresense-release-proxy/wrangler.toml | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/espresense-artifact-proxy/wrangler.toml b/espresense-artifact-proxy/wrangler.toml index 0fbf4a6..d73d660 100644 --- a/espresense-artifact-proxy/wrangler.toml +++ b/espresense-artifact-proxy/wrangler.toml @@ -3,3 +3,10 @@ main = "src/index.ts" compatibility_date = "2025-01-01" account_id = "c72fc273edfb2236527b400b5463d663" workers_dev = true + +[observability] +[observability.logs] +enabled = true +head_sampling_rate = 1 +invocation_logs = true +persist = true diff --git a/espresense-release-proxy/wrangler.toml b/espresense-release-proxy/wrangler.toml index b3eb40c..59a1066 100644 --- a/espresense-release-proxy/wrangler.toml +++ b/espresense-release-proxy/wrangler.toml @@ -3,3 +3,10 @@ main = "src/index.ts" compatibility_date = "2025-01-01" account_id = "c72fc273edfb2236527b400b5463d663" workers_dev = true + +[observability] +[observability.logs] +enabled = true +head_sampling_rate = 1 +invocation_logs = true +persist = true