Skip to content
Merged
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
14 changes: 13 additions & 1 deletion cloud-agent-next/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,19 @@
"ip": "0.0.0.0",
},
"observability": {
"enabled": true,
"enabled": false,
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: Top-level observability is still disabled

With "enabled": false, Cloudflare ignores the nested logs and traces settings, so this config will not actually turn on tracing for the worker. If the goal of this PR is to enable request traces and persisted logs, this line needs to stay true.

Suggested change
"enabled": false,
"enabled": true,

"head_sampling_rate": 1,
"logs": {
"enabled": true,
"head_sampling_rate": 1,
"persist": true,
"invocation_logs": true,
},
"traces": {
"enabled": true,
"persist": true,
"head_sampling_rate": 1,
},
},
"logpush": true,
"routes": [
Expand Down
Loading