惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
月光博客
月光博客
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Vercel News
Vercel News
量子位
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
腾讯CDC
有赞技术团队
有赞技术团队

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(gateway): trim startup config imports · openclaw/open...
vincentkoc · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import { spawn, type ChildProcessWithoutNullStreams } from "node:child_process";

1+

import { spawn, spawnSync, type ChildProcessWithoutNullStreams } from "node:child_process";

22

import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";

33

import { request } from "node:http";

44

import { createServer } from "node:net";

@@ -23,6 +23,7 @@ type GatewaySample = {

2323

exitCode: number | null;

2424

firstOutputMs: number | null;

2525

healthz: ProbeResult;

26+

maxRssMb: number | null;

2627

outputTail: string;

2728

readyLogMs: number | null;

2829

readyz: ProbeResult;

@@ -45,6 +46,7 @@ type CaseResult = {

4546

summary: {

4647

firstOutputMs: SummaryStats | null;

4748

healthzMs: SummaryStats | null;

49+

maxRssMb: SummaryStats | null;

4850

readyLogMs: SummaryStats | null;

4951

readyzMs: SummaryStats | null;

5052

startupTrace: Record<string, SummaryStats>;

@@ -253,6 +255,11 @@ function summarizeCase(benchCase: GatewayBenchCase, samples: GatewaySample[]): C

253255

.map((sample) => sample.healthz.ms)

254256

.filter((value): value is number => typeof value === "number"),

255257

),

258+

maxRssMb: summarizeNumbers(

259+

samples

260+

.map((sample) => sample.maxRssMb)

261+

.filter((value): value is number => typeof value === "number"),

262+

),

256263

readyLogMs: summarizeNumbers(

257264

samples

258265

.map((sample) => sample.readyLogMs)

@@ -275,13 +282,27 @@ function formatMs(value: number | null): string {

275282

return `${value.toFixed(1)}ms`;

276283

}

277284285+

function formatMb(value: number | null): string {

286+

if (value == null) {

287+

return "n/a";

288+

}

289+

return `${value.toFixed(1)}MB`;

290+

}

291+278292

function formatStats(stats: SummaryStats | null): string {

279293

if (!stats) {

280294

return "n/a";

281295

}

282296

return `p50=${formatMs(stats.p50)} avg=${formatMs(stats.avg)} min=${formatMs(stats.min)} max=${formatMs(stats.max)}`;

283297

}

284298299+

function formatMemoryStats(stats: SummaryStats | null): string {

300+

if (!stats) {

301+

return "n/a";

302+

}

303+

return `p50=${formatMb(stats.p50)} avg=${formatMb(stats.avg)} min=${formatMb(stats.min)} max=${formatMb(stats.max)}`;

304+

}

305+285306

async function getFreePort(): Promise<number> {

286307

return new Promise((resolve, reject) => {

287308

const server = createServer();

@@ -400,6 +421,7 @@ function sanitizedEnv(

400421

OPENCLAW_GATEWAY_STARTUP_TRACE: "1",

401422

OPENCLAW_HOME: root,

402423

OPENCLAW_LOCAL_CHECK: "0",

424+

OPENCLAW_NO_RESPAWN: "1",

403425

OPENCLAW_STATE_DIR: path.join(root, "state"),

404426

OPENCLAW_TEST_DISABLE_UPDATE_CHECK: "1",

405427

...benchCase.env,

@@ -475,6 +497,21 @@ function parseStartupTraceMetrics(raw: string): Array<{ key: string; value: numb

475497

return metrics;

476498

}

477499500+

function readProcessRssMb(pid: number | undefined): number | null {

501+

if (!pid || process.platform === "win32") {

502+

return null;

503+

}

504+

const result = spawnSync("ps", ["-o", "rss=", "-p", String(pid)], {

505+

encoding: "utf8",

506+

stdio: ["ignore", "pipe", "ignore"],

507+

});

508+

if (result.status !== 0) {

509+

return null;

510+

}

511+

const rssKb = Number.parseInt(result.stdout.trim(), 10);

512+

return Number.isFinite(rssKb) && rssKb > 0 ? rssKb / 1024 : null;

513+

}

514+478515

async function runGatewaySample(options: {

479516

benchCase: GatewayBenchCase;

480517

entry: string;

@@ -489,6 +526,7 @@ async function runGatewaySample(options: {

489526

const startupTrace: Record<string, number> = {};

490527

const output: string[] = [];

491528

let firstOutputMs: number | null = null;

529+

let maxRssMb: number | null = null;

492530

let readyLogMs: number | null = null;

493531

let childExited = false;

494532

@@ -510,6 +548,15 @@ async function runGatewaySample(options: {

510548

],

511549

{ cwd: process.cwd(), detached: process.platform !== "win32", env },

512550

);

551+

const sampleRss = () => {

552+

const rssMb = readProcessRssMb(child.pid);

553+

if (rssMb != null) {

554+

maxRssMb = maxRssMb == null ? rssMb : Math.max(maxRssMb, rssMb);

555+

}

556+

};

557+

sampleRss();

558+

const rssTimer = setInterval(sampleRss, 100);

559+

rssTimer.unref?.();

513560

const childExitPromise = new Promise<{ exitCode: number | null; signal: string | null }>(

514561

(resolve) => {

515562

child.once("exit", (exitCode, signal) => {

@@ -555,13 +602,16 @@ async function runGatewaySample(options: {

555602

}),

556603

]);

557604

const exit = await stopChild(child);

605+

clearInterval(rssTimer);

606+

sampleRss();

558607

await childExitPromise.catch(() => null);

559608

rmSync(root, { force: true, maxRetries: 3, recursive: true, retryDelay: 100 });

560609561610

return {

562611

exitCode: exit.exitCode,

563612

firstOutputMs,

564613

healthz,

614+

maxRssMb,

565615

outputTail: output.join("").split(/\r?\n/u).slice(-20).join("\n"),

566616

readyLogMs,

567617

readyz,

@@ -588,11 +638,11 @@ async function runCase(options: {

588638

if (index >= options.warmup) {

589639

samples.push(sample);

590640

console.log(

591-

`[gateway-startup-bench] ${options.benchCase.id} run ${samples.length}/${options.runs}: healthz=${formatMs(sample.healthz.ms)} readyz=${formatMs(sample.readyz.ms)} readyLog=${formatMs(sample.readyLogMs)}`,

641+

`[gateway-startup-bench] ${options.benchCase.id} run ${samples.length}/${options.runs}: healthz=${formatMs(sample.healthz.ms)} readyz=${formatMs(sample.readyz.ms)} readyLog=${formatMs(sample.readyLogMs)} rss=${formatMb(sample.maxRssMb)}`,

592642

);

593643

} else {

594644

console.log(

595-

`[gateway-startup-bench] ${options.benchCase.id} warmup ${index + 1}/${options.warmup}: healthz=${formatMs(sample.healthz.ms)} readyz=${formatMs(sample.readyz.ms)}`,

645+

`[gateway-startup-bench] ${options.benchCase.id} warmup ${index + 1}/${options.warmup}: healthz=${formatMs(sample.healthz.ms)} readyz=${formatMs(sample.readyz.ms)} rss=${formatMb(sample.maxRssMb)}`,

596646

);

597647

}

598648

}

@@ -605,6 +655,7 @@ function printResult(result: CaseResult): void {

605655

console.log(` /healthz: ${formatStats(result.summary.healthzMs)}`);

606656

console.log(` ready log: ${formatStats(result.summary.readyLogMs)}`);

607657

console.log(` /readyz: ${formatStats(result.summary.readyzMs)}`);

658+

console.log(` max RSS: ${formatMemoryStats(result.summary.maxRssMb)}`);

608659

const trace = Object.entries(result.summary.startupTrace)

609660

.filter(([name]) => !name.endsWith(".total"))

610661

.toSorted((a, b) => (b[1].avg ?? 0) - (a[1].avg ?? 0))