Skip to content

Commit 11915c2

Browse files
feat(cloud-agent-next): enable tracing in observability config
Update the observability block in wrangler.jsonc to enable traces and persistent logs with head_sampling_rate=1, while keeping the top-level observability.enabled flag false so the full pipeline can be activated in a controlled rollout.
1 parent 13cbcec commit 11915c2

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

cloud-agent-next/wrangler.jsonc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,19 @@
1818
"ip": "0.0.0.0",
1919
},
2020
"observability": {
21-
"enabled": true,
21+
"enabled": false,
22+
"head_sampling_rate": 1,
23+
"logs": {
24+
"enabled": true,
25+
"head_sampling_rate": 1,
26+
"persist": true,
27+
"invocation_logs": true,
28+
},
29+
"traces": {
30+
"enabled": true,
31+
"persist": true,
32+
"head_sampling_rate": 1,
33+
},
2234
},
2335
"logpush": true,
2436
"routes": [

0 commit comments

Comments
 (0)