Follow Discord
Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.269 ·

SDK child-process memory sampling made async and page-size detection reworked

SDK memory usage sampling for child processes now runs asynchronously and in parallel

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaSDKwhat it touches
KindInternal Changesin v2.1.269,
Under the hood

SDK memory usage sampling for child processes now runs asynchronously and in parallel

What

The SDK's memory-usage tracker, which feeds the tengu_sdk_memory_summary telemetry event, now reads each child process's memory stats from /proc/<pid>/statm asynchronously and in parallel for all child processes, using Promise.all, instead of reading them one at a time synchronously. It also computes the operating system's memory page size by rounding the ratio of resident set size to page count to the nearest power of 2, instead of doing a plain division with a fallback value of 4096.

Why

Reading memory stats in parallel rather than one-by-one should make this telemetry collection faster and less likely to block, and the improved page-size calculation should make the resulting memory measurements more accurate.

See this entry in the whole of v2.1.269 →

Feedback