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

推荐订阅源

博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
博客园 - 聂微东
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
IT之家
IT之家
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
爱范儿
爱范儿
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
F
Fortinet All Blogs
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理

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
perf: improve gateway startup diagnostics · openclaw/open...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -4,7 +4,7 @@ import process from "node:process";

44

import { fileURLToPath } from "node:url";

55

import { resolveStateDir } from "../config/paths.js";

66

import type { OpenClawConfig } from "../config/types.openclaw.js";

7-

import { normalizeEnv } from "../infra/env.js";

7+

import { isTruthyEnvValue, normalizeEnv } from "../infra/env.js";

88

import { isMainModule } from "../infra/is-main.js";

99

import { ensureOpenClawCliOnPath } from "../infra/path-env.js";

1010

import { assertSupportedRuntime } from "../infra/runtime-guard.js";

@@ -37,6 +37,41 @@ export {

3737

shouldUseRootHelpFastPath,

3838

} from "./run-main-policy.js";

393940+

type Awaitable<T> = T | Promise<T>;

41+42+

function createGatewayCliMainStartupTrace(argv: string[]) {

43+

const enabled =

44+

isTruthyEnvValue(process.env.OPENCLAW_GATEWAY_STARTUP_TRACE) &&

45+

argv.slice(2).includes("gateway");

46+

const started = performance.now();

47+

let last = started;

48+

const emit = (name: string, durationMs: number, totalMs: number) => {

49+

if (!enabled) {

50+

return;

51+

}

52+

process.stderr.write(

53+

`[gateway] startup trace: cli.main.${name} ${durationMs.toFixed(1)}ms total=${totalMs.toFixed(1)}ms\n`,

54+

);

55+

};

56+

return {

57+

mark(name: string) {

58+

const now = performance.now();

59+

emit(name, now - last, now - started);

60+

last = now;

61+

},

62+

async measure<T>(name: string, run: () => Awaitable<T>): Promise<T> {

63+

const before = performance.now();

64+

try {

65+

return await run();

66+

} finally {

67+

const now = performance.now();

68+

emit(name, now - before, now - started);

69+

last = now;

70+

}

71+

},

72+

};

73+

}

74+4075

async function closeCliMemoryManagers(): Promise<void> {

4176

const { hasMemoryRuntime } = await import("../plugins/memory-state.js");

4277

if (!hasMemoryRuntime()) {

@@ -98,6 +133,7 @@ async function ensureCliEnvProxyDispatcher(): Promise<void> {

9813399134

export async function runCli(argv: string[] = process.argv) {

100135

const originalArgv = normalizeWindowsArgv(argv);

136+

const startupTrace = createGatewayCliMainStartupTrace(originalArgv);

101137

const parsedContainer = parseCliContainerArgs(originalArgv);

102138

if (!parsedContainer.ok) {

103139

throw new Error(parsedContainer.error);

@@ -123,10 +159,13 @@ export async function runCli(argv: string[] = process.argv) {

123159

return;

124160

}

125161

let normalizedArgv = parsedProfile.argv;

162+

startupTrace.mark("argv");

126163127164

if (shouldLoadCliDotEnv()) {

128-

const { loadCliDotEnv } = await import("./dotenv.js");

129-

loadCliDotEnv({ quiet: true });

165+

await startupTrace.measure("dotenv", async () => {

166+

const { loadCliDotEnv } = await import("./dotenv.js");

167+

loadCliDotEnv({ quiet: true });

168+

});

130169

}

131170

normalizeEnv();

132171

if (shouldEnsureCliPath(normalizedArgv)) {

@@ -206,19 +245,18 @@ export async function runCli(argv: string[] = process.argv) {

206245

const [

207246

{ initializeDebugProxyCapture, finalizeDebugProxyCapture },

208247

{ maybeWarnAboutDebugProxyCoverage },

209-

] = await Promise.all([

210-

import("../proxy-capture/runtime.js"),

211-

import("../proxy-capture/coverage.js"),

212-

]);

248+

] = await startupTrace.measure("proxy-imports", () =>

249+

Promise.all([import("../proxy-capture/runtime.js"), import("../proxy-capture/coverage.js")]),

250+

);

213251

initializeDebugProxyCapture("cli");

214252

process.once("exit", () => {

215253

finalizeDebugProxyCapture();

216254

});

217-

await ensureCliEnvProxyDispatcher();

255+

await startupTrace.measure("proxy-dispatcher", () => ensureCliEnvProxyDispatcher());

218256

maybeWarnAboutDebugProxyCoverage();

219257220-

const { tryRouteCli } = await import("./route.js");

221-

if (await tryRouteCli(normalizedArgv)) {

258+

const { tryRouteCli } = await startupTrace.measure("route-import", () => import("./route.js"));

259+

if (await startupTrace.measure("route", () => tryRouteCli(normalizedArgv))) {

222260

return;

223261

}

224262

@@ -253,14 +291,16 @@ export async function runCli(argv: string[] = process.argv) {

253291

isUncaughtExceptionHandled,

254292

},

255293

{ restoreTerminalState },

256-

] = await Promise.all([

257-

import("./program.js"),

258-

import("../infra/errors.js"),

259-

import("../infra/fatal-error-hooks.js"),

260-

import("../infra/unhandled-rejections.js"),

261-

import("../terminal/restore.js"),

262-

]);

263-

const program = buildProgram();

294+

] = await startupTrace.measure("core-imports", () =>

295+

Promise.all([

296+

import("./program.js"),

297+

import("../infra/errors.js"),

298+

import("../infra/fatal-error-hooks.js"),

299+

import("../infra/unhandled-rejections.js"),

300+

import("../terminal/restore.js"),

301+

]),

302+

);

303+

const program = await startupTrace.measure("build-program", () => buildProgram());

264304265305

// Global error handlers to prevent silent crashes from unhandled rejections/exceptions.

266306

// These log the error and exit gracefully instead of crashing without trace.

@@ -291,14 +331,16 @@ export async function runCli(argv: string[] = process.argv) {

291331

// are correct even with lazy command registration.

292332

const { primary } = invocation;

293333

if (primary && shouldRegisterPrimaryCommandOnly(parseArgv)) {

294-

const { getProgramContext } = await import("./program/program-context.js");

295-

const ctx = getProgramContext(program);

296-

if (ctx) {

297-

const { registerCoreCliByName } = await import("./program/command-registry.js");

298-

await registerCoreCliByName(program, ctx, primary, parseArgv);

299-

}

300-

const { registerSubCliByName } = await import("./program/register.subclis.js");

301-

await registerSubCliByName(program, primary);

334+

await startupTrace.measure("register-primary", async () => {

335+

const { getProgramContext } = await import("./program/program-context.js");

336+

const ctx = getProgramContext(program);

337+

if (ctx) {

338+

const { registerCoreCliByName } = await import("./program/command-registry.js");

339+

await registerCoreCliByName(program, ctx, primary, parseArgv);

340+

}

341+

const { registerSubCliByName } = await import("./program/register.subclis.js");

342+

await registerSubCliByName(program, primary);

343+

});

302344

}

303345304346

const hasBuiltinPrimary =

@@ -312,17 +354,14 @@ export async function runCli(argv: string[] = process.argv) {

312354

hasBuiltinPrimary,

313355

});

314356

if (!shouldSkipPluginRegistration) {

315-

// Register plugin CLI commands before parsing

316-

const { registerPluginCliCommandsFromValidatedConfig } = await import("../plugins/cli.js");

317-

const config = await registerPluginCliCommandsFromValidatedConfig(

318-

program,

319-

undefined,

320-

undefined,

321-

{

357+

const config = await startupTrace.measure("register-plugin-commands", async () => {

358+

const { registerPluginCliCommandsFromValidatedConfig } =

359+

await import("../plugins/cli.js");

360+

return await registerPluginCliCommandsFromValidatedConfig(program, undefined, undefined, {

322361

mode: "lazy",

323362

primary,

324-

},

325-

);

363+

});

364+

});

326365

if (config) {

327366

if (

328367

primary &&

@@ -349,7 +388,7 @@ export async function runCli(argv: string[] = process.argv) {

349388

stopStartupProgress();

350389351390

try {

352-

await program.parseAsync(parseArgv);

391+

await startupTrace.measure("parse", () => program.parseAsync(parseArgv));

353392

} catch (error) {

354393

if (!isCommanderParseExit(error)) {

355394

throw error;