Group of 4 Nothing to try yet Notable
No documentation found
Claude Code can now delay sending some telemetry events based on a remote-configured flush policy instead of uploading them immediately
What
- A new "served policy" hold lets a remote-configured flush policy delay uploading certain internal telemetry events instead of sending them right away. The policy can specify a max age, max bytes, max event count, which event types must always be flushed, and whether to flush on an assistant turn or when sampling ends.
- A new
transcriptRowMayWaitcheck decides, per event row, whether it can wait — plain assistant/user transcript turns can be held, while events carrying tool results or meta/virtual/compact-summary rows are always sent right away. - The CCR (client-controlled reporting) worker also gained a separate hold for stream events: when
dropUnwatchedStreamEventsis enabled, stream-delta telemetry is dropped (not buffered) and counted when no subscriber/viewer is present, and logging now records when this dropping starts and resumes as a watcher returns or leaves. A warning log fires if a policy-held session closes with undelivered events still queued. - The underlying schema that validates flush policies was reworked: the field that used to validate per-model token/effort configuration now validates the event-buffer flush policy fields (
max_events,max_age_ms,max_bytes,flush_on_sampling_end,flush_on_assistant,must_flush_types,policy_version).
Why This lets Claude Code's telemetry backend control, from the server side, how aggressively the client batches and delays event uploads, reducing unnecessary network traffic while still guaranteeing important events (like tool results) are never delayed.
Names in the bundledropUnwatchedStreamEvents