From fb4c9c728d04339cbfd85d6eb6f12d306712115f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Fri, 20 Feb 2026 23:09:14 +0800 Subject: [PATCH] chore: enable Cloudflare observability with invocation logs Signed-off-by: Mohammod Al Amin Ashik --- wrangler.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wrangler.toml b/wrangler.toml index 561dd16..87c99d6 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -2,6 +2,13 @@ name = "mcpmux-install" main = "src/index.ts" compatibility_date = "2024-12-01" +[observability] +enabled = true + +[observability.logs] +enabled = true +invocation_logs = true + # R2 bucket for APT repository (shared with apt.mcpmux.com) # Uncomment once the bucket is created: # [[r2_buckets]] @@ -14,6 +21,13 @@ routes = [ { pattern = "install.mcpmux.com", custom_domain = true } ] +[env.production.observability] +enabled = true + +[env.production.observability.logs] +enabled = true +invocation_logs = true + # [[env.production.r2_buckets]] # binding = "APT_BUCKET" # bucket_name = "mcpmux-apt"