chore(wrangler): sync observability config from Cloudflare dashboard#214
Merged
Conversation
Cloudflare ダッシュボードで有効化した Observability (Workers Logs) の設定を worker/wrangler.toml に同期する。ダッシュボード側にしか反映されていない状態は 次回 wrangler deploy で silent に revert されるリスクがあるため、dashboard が 提示した TOML を末尾に追記して固定化する。 追記内容は [observability] / [observability.logs] / [observability.traces] の 3 セクションのみで、既存設定は変更しない。behavior 変更なし (dashboard と 同じ状態を toml に固定化するだけ)。 Closes #213
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
github-webhook-mcp | 53b4d5d | Apr 23 2026, 10:56 AM |
liplus-lin-lay
commented
Apr 23, 2026
Member
Author
liplus-lin-lay
left a comment
There was a problem hiding this comment.
AI セルフレビュー (auto / patch)
検証項目
- 追記のみ、既存行変更なし ✅
- dashboard 提示 TOML と完全一致 ✅
- PR title ASCII / body 日本語 / Closes #213 ✅
- CI 全 pass (test / CI / Workers Builds) ✅
- mergeable CLEAN ✅
判定
Approve — auto / patch で AI merge.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
目的
Cloudflare Workers ダッシュボードで有効化した Observability (Workers Logs) の設定を
worker/wrangler.tomlに同期する。ダッシュボード側にしか反映されていない状態は、次回wrangler deployで silent に revert されるリスクがあるため、dashboard が提示した TOML を末尾に追記して固定化する。変更内容
worker/wrangler.toml末尾に以下 3 セクションを追記のみ:[observability](enabled=false, head_sampling_rate=1)[observability.logs](enabled=true, persist=true, invocation_logs=true)[observability.traces](enabled=false, persist=true)既存設定は変更なし。dashboard 提示の TOML と完全一致。
影響スコープ
patch (config sync のみ、user/system observable behavior 変化なし)。
Closes #213