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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
腾讯CDC
D
Docker
The Cloudflare Blog
量子位
爱范儿
爱范儿
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Vercel News
Vercel News
MyScale Blog
MyScale 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
fix: honor config timeline diagnostics · openclaw/opencla...
shakkernerd · 2026-04-30 · via Recent Commits to openclaw:main

@@ -169,12 +169,23 @@ const canvasRuntime = runtimeForLogger(logCanvas);

169169170170

function createGatewayStartupTrace() {

171171

const logEnabled = isTruthyEnvValue(process.env.OPENCLAW_GATEWAY_STARTUP_TRACE);

172-

const timelineEnabled = isDiagnosticsTimelineEnabled();

173-

const eventLoopTimelineEnabled =

174-

timelineEnabled && isTruthyEnvValue(process.env.OPENCLAW_DIAGNOSTICS_EVENT_LOOP);

175-

const eventLoopDelay =

176-

logEnabled || eventLoopTimelineEnabled ? monitorEventLoopDelay({ resolution: 10 }) : undefined;

177-

eventLoopDelay?.enable();

172+

let timelineConfig: OpenClawConfig | undefined;

173+

let eventLoopDelay: ReturnType<typeof monitorEventLoopDelay> | undefined;

174+

const timelineOptions = () => ({

175+

...(timelineConfig ? { config: timelineConfig } : {}),

176+

env: process.env,

177+

});

178+

const eventLoopTimelineEnabled = () =>

179+

isDiagnosticsTimelineEnabled(timelineOptions()) &&

180+

isTruthyEnvValue(process.env.OPENCLAW_DIAGNOSTICS_EVENT_LOOP);

181+

const ensureEventLoopDelay = () => {

182+

if (eventLoopDelay || (!logEnabled && !eventLoopTimelineEnabled())) {

183+

return;

184+

}

185+

eventLoopDelay = monitorEventLoopDelay({ resolution: 10 });

186+

eventLoopDelay.enable();

187+

};

188+

ensureEventLoopDelay();

178189

const started = performance.now();

179190

let last = started;

180191

let spanSequence = 0;

@@ -214,23 +225,26 @@ function createGatewayStartupTrace() {

214225

activeSpanName: string,

215226

sample: ReturnType<typeof takeEventLoopSample>,

216227

) => {

217-

if (!eventLoopTimelineEnabled) {

228+

if (!eventLoopTimelineEnabled()) {

218229

return;

219230

}

220231

if (!sample) {

221232

return;

222233

}

223-

emitDiagnosticsTimelineEvent({

224-

type: "eventLoop.sample",

225-

name: "eventLoop",

226-

phase: "startup",

227-

activeSpanName: mapTimelineName(activeSpanName),

228-

attributes:

229-

activeSpanName === mapTimelineName(activeSpanName)

230-

? undefined

231-

: { traceName: activeSpanName },

232-

...sample,

233-

});

234+

emitDiagnosticsTimelineEvent(

235+

{

236+

type: "eventLoop.sample",

237+

name: "eventLoop",

238+

phase: "startup",

239+

activeSpanName: mapTimelineName(activeSpanName),

240+

attributes:

241+

activeSpanName === mapTimelineName(activeSpanName)

242+

? undefined

243+

: { traceName: activeSpanName },

244+

...sample,

245+

},

246+

timelineOptions(),

247+

);

234248

};

235249

const emit = (

236250

name: string,

@@ -250,17 +264,24 @@ function createGatewayStartupTrace() {

250264

}

251265

};

252266

return {

267+

setConfig(config: OpenClawConfig) {

268+

timelineConfig = config;

269+

ensureEventLoopDelay();

270+

},

253271

mark(name: string) {

254272

const now = performance.now();

255273

const eventLoopSample = takeEventLoopSample();

256274

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

257-

emitDiagnosticsTimelineEvent({

258-

type: "mark",

259-

name: mapTimelineName(name),

260-

phase: "startup",

261-

durationMs: now - started,

262-

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

263-

});

275+

emitDiagnosticsTimelineEvent(

276+

{

277+

type: "mark",

278+

name: mapTimelineName(name),

279+

phase: "startup",

280+

durationMs: now - started,

281+

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

282+

},

283+

timelineOptions(),

284+

);

264285

emitEventLoopTimelineSample(name, eventLoopSample);

265286

last = now;

266287

if (name === "ready") {

@@ -274,50 +295,62 @@ function createGatewayStartupTrace() {

274295

`startup trace: ${name} ${metrics.map(([key, value]) => formatMetric(key, value)).join(" ")}`,

275296

);

276297

}

277-

emitDiagnosticsTimelineEvent({

278-

type: "mark",

279-

name: mapTimelineName(name),

280-

phase: "startup",

281-

attributes: {

282-

traceName: name,

283-

...attributes,

298+

emitDiagnosticsTimelineEvent(

299+

{

300+

type: "mark",

301+

name: mapTimelineName(name),

302+

phase: "startup",

303+

attributes: {

304+

traceName: name,

305+

...attributes,

306+

},

284307

},

285-

});

308+

timelineOptions(),

309+

);

286310

},

287311

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

288312

const before = performance.now();

289313

const spanId = `gateway-startup-${++spanSequence}`;

290-

emitDiagnosticsTimelineEvent({

291-

type: "span.start",

292-

name: mapTimelineName(name),

293-

phase: "startup",

294-

spanId,

295-

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

296-

});

297-

try {

298-

const result = await run();

299-

const now = performance.now();

300-

emitDiagnosticsTimelineEvent({

301-

type: "span.end",

314+

emitDiagnosticsTimelineEvent(

315+

{

316+

type: "span.start",

302317

name: mapTimelineName(name),

303318

phase: "startup",

304319

spanId,

305-

durationMs: now - before,

306320

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

307-

});

321+

},

322+

timelineOptions(),

323+

);

324+

try {

325+

const result = await run();

326+

const now = performance.now();

327+

emitDiagnosticsTimelineEvent(

328+

{

329+

type: "span.end",

330+

name: mapTimelineName(name),

331+

phase: "startup",

332+

spanId,

333+

durationMs: now - before,

334+

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

335+

},

336+

timelineOptions(),

337+

);

308338

return result;

309339

} catch (error) {

310340

const now = performance.now();

311-

emitDiagnosticsTimelineEvent({

312-

type: "span.error",

313-

name: mapTimelineName(name),

314-

phase: "startup",

315-

spanId,

316-

durationMs: now - before,

317-

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

318-

errorName: error instanceof Error ? error.name : typeof error,

319-

errorMessage: error instanceof Error ? error.message : String(error),

320-

});

341+

emitDiagnosticsTimelineEvent(

342+

{

343+

type: "span.error",

344+

name: mapTimelineName(name),

345+

phase: "startup",

346+

spanId,

347+

durationMs: now - before,

348+

attributes: name === mapTimelineName(name) ? undefined : { traceName: name },

349+

errorName: error instanceof Error ? error.name : typeof error,

350+

errorMessage: error instanceof Error ? error.message : String(error),

351+

},

352+

timelineOptions(),

353+

);

321354

throw error;

322355

} finally {

323356

const now = performance.now();

@@ -466,6 +499,7 @@ export async function startGatewayServer(

466499

let startupLastGoodSnapshot = configSnapshot;

467500

const startupActivationSourceConfig = configSnapshot.sourceConfig;

468501

const startupRuntimeConfig = applyConfigOverrides(configSnapshot.config);

502+

startupTrace.setConfig(startupRuntimeConfig);

469503

const authBootstrap = await startupTrace.measure("config.auth", () =>

470504

prepareGatewayStartupConfig({

471505

configSnapshot,

@@ -476,6 +510,7 @@ export async function startGatewayServer(

476510

}),

477511

);

478512

cfgAtStart = authBootstrap.cfg;

513+

startupTrace.setConfig(cfgAtStart);

479514

if (authBootstrap.generatedToken) {

480515

if (authBootstrap.persistedGeneratedToken) {

481516

log.info(