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

推荐订阅源

Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
博客园_首页
T
Tailwind CSS Blog
The Cloudflare Blog
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
P
Proofpoint News Feed
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
D
Docker
Microsoft Azure Blog
Microsoft Azure 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
feat(gateway): attribute ACPX startup probe cost · opencl...
samzong · 2026-05-18 · via Recent Commits to openclaw:main

@@ -41,6 +41,7 @@ type AcpRuntimeTurnResult = Awaited<AcpRuntimeTurn["result"]>;

4141

const ENABLE_STARTUP_PROBE_ENV = "OPENCLAW_ACPX_RUNTIME_STARTUP_PROBE";

4242

const SKIP_RUNTIME_PROBE_ENV = "OPENCLAW_SKIP_ACPX_RUNTIME_PROBE";

4343

const ACPX_BACKEND_ID = "acpx";

44+

const ACPX_STARTUP_TRACE_PREFIX = "sidecars.plugin-services.acpx.acpx-runtime";

44454546

type AcpxRuntimeModule = typeof import("./runtime.js");

4647

let runtimeModulePromise: Promise<AcpxRuntimeModule> | null = null;

@@ -374,6 +375,24 @@ function resolveAllowedAgentsProbeAgent(ctx: OpenClawPluginServiceContext): stri

374375

return undefined;

375376

}

376377378+

async function measureAcpxStartup<T>(

379+

ctx: OpenClawPluginServiceContext,

380+

name: string,

381+

run: () => T | Promise<T>,

382+

): Promise<T> {

383+

return ctx.startupTrace

384+

? await ctx.startupTrace.measure(`${ACPX_STARTUP_TRACE_PREFIX}.${name}`, run)

385+

: await run();

386+

}

387+388+

function detailAcpxStartup(

389+

ctx: OpenClawPluginServiceContext,

390+

name: string,

391+

metrics: ReadonlyArray<readonly [string, number | string]>,

392+

): void {

393+

ctx.startupTrace?.detail?.(`${ACPX_STARTUP_TRACE_PREFIX}.${name}`, metrics);

394+

}

395+377396

function shouldRunStartupProbe(env: NodeJS.ProcessEnv = process.env): boolean {

378397

return env[ENABLE_STARTUP_PROBE_ENV] !== "0";

379398

}

@@ -490,29 +509,39 @@ export function createAcpxRuntimeService(

490509

return;

491510

}

492511493-

const basePluginConfig = resolveAcpxPluginConfig({

494-

rawConfig: params.pluginConfig,

495-

workspaceDir: ctx.workspaceDir,

496-

});

512+

const basePluginConfig = await measureAcpxStartup(ctx, "config.resolve", () =>

513+

resolveAcpxPluginConfig({

514+

rawConfig: params.pluginConfig,

515+

workspaceDir: ctx.workspaceDir,

516+

}),

517+

);

497518

const effectiveBasePluginConfig: ResolvedAcpxPluginConfig = {

498519

...basePluginConfig,

499520

probeAgent: basePluginConfig.probeAgent ?? resolveAllowedAgentsProbeAgent(ctx),

500521

};

501-

const pluginConfig = await prepareAcpxCodexAuthConfig({

502-

pluginConfig: effectiveBasePluginConfig,

503-

stateDir: ctx.stateDir,

504-

logger: ctx.logger,

505-

});

522+

const pluginConfig = await measureAcpxStartup(ctx, "config.prepare-codex-auth", () =>

523+

prepareAcpxCodexAuthConfig({

524+

pluginConfig: effectiveBasePluginConfig,

525+

stateDir: ctx.stateDir,

526+

logger: ctx.logger,

527+

}),

528+

);

506529

const wrapperRoot = path.join(ctx.stateDir, "acpx");

507-

await fs.mkdir(pluginConfig.stateDir, { recursive: true });

508-

await fs.mkdir(wrapperRoot, { recursive: true });

509-

const gatewayInstanceId = await resolveGatewayInstanceId(ctx.stateDir);

510-

const processLeaseStore = createAcpxProcessLeaseStore({ stateDir: wrapperRoot });

511-

const startupReap = await reapOpenAcpxProcessLeases({

512-

gatewayInstanceId,

513-

leaseStore: processLeaseStore,

514-

deps: params.processCleanupDeps,

530+

await measureAcpxStartup(ctx, "filesystem.prepare", async () => {

531+

await fs.mkdir(pluginConfig.stateDir, { recursive: true });

532+

await fs.mkdir(wrapperRoot, { recursive: true });

515533

});

534+

const gatewayInstanceId = await measureAcpxStartup(ctx, "gateway-instance-id", () =>

535+

resolveGatewayInstanceId(ctx.stateDir),

536+

);

537+

const processLeaseStore = createAcpxProcessLeaseStore({ stateDir: wrapperRoot });

538+

const startupReap = await measureAcpxStartup(ctx, "process-leases.reap", () =>

539+

reapOpenAcpxProcessLeases({

540+

gatewayInstanceId,

541+

leaseStore: processLeaseStore,

542+

deps: params.processCleanupDeps,

543+

}),

544+

);

516545

if (startupReap.terminatedPids.length > 0) {

517546

ctx.logger.info(

518547

`reaped ${startupReap.terminatedPids.length} stale OpenClaw-owned ACPX process${startupReap.terminatedPids.length === 1 ? "" : "es"}`,

@@ -523,29 +552,38 @@ export function createAcpxRuntimeService(

523552

logger: ctx.logger,

524553

});

525554526-

runtime = params.runtimeFactory

527-

? await params.runtimeFactory({

528-

pluginConfig,

529-

gatewayInstanceId,

530-

processLeaseStore,

531-

wrapperRoot,

532-

logger: ctx.logger,

533-

})

534-

: createLazyDefaultRuntime({

535-

pluginConfig,

536-

gatewayInstanceId,

537-

processLeaseStore,

538-

wrapperRoot,

539-

logger: ctx.logger,

540-

});

555+

const startedRuntime = await measureAcpxStartup(ctx, "runtime.create", () =>

556+

params.runtimeFactory

557+

? params.runtimeFactory({

558+

pluginConfig,

559+

gatewayInstanceId,

560+

processLeaseStore,

561+

wrapperRoot,

562+

logger: ctx.logger,

563+

})

564+

: createLazyDefaultRuntime({

565+

pluginConfig,

566+

gatewayInstanceId,

567+

processLeaseStore,

568+

wrapperRoot,

569+

logger: ctx.logger,

570+

}),

571+

);

572+

runtime = startedRuntime;

541573542574

const shouldProbeRuntime = shouldProbeRuntimeAtStartup();

543-

registerAcpRuntimeBackend({

544-

id: ACPX_BACKEND_ID,

545-

runtime,

546-

...(shouldProbeRuntime ? { healthy: () => runtime?.isHealthy() ?? false } : {}),

575+

detailAcpxStartup(ctx, "probe-policy", [

576+

["startupProbeEnabledCount", shouldProbeRuntime ? 1 : 0],

577+

["probeAgent", pluginConfig.probeAgent ?? "default"],

578+

]);

579+

await measureAcpxStartup(ctx, "backend.register", () => {

580+

registerAcpRuntimeBackend({

581+

id: ACPX_BACKEND_ID,

582+

runtime: startedRuntime,

583+

...(shouldProbeRuntime ? { healthy: () => runtime?.isHealthy() ?? false } : {}),

584+

});

585+

ctx.logger.info(`embedded acpx runtime backend registered (cwd: ${pluginConfig.cwd})`);

547586

});

548-

ctx.logger.info(`embedded acpx runtime backend registered (cwd: ${pluginConfig.cwd})`);

549587550588

if (!shouldProbeRuntime) {

551589

return;

@@ -554,30 +592,35 @@ export function createAcpxRuntimeService(

554592

lifecycleRevision += 1;

555593

const currentRevision = lifecycleRevision;

556594

try {

557-

if (runtime) {

558-

await withStartupProbeTimeout({

559-

promise: runtime.probeAvailability(),

595+

await measureAcpxStartup(ctx, "probe.availability", () =>

596+

withStartupProbeTimeout({

597+

promise: startedRuntime.probeAvailability(),

560598

timeoutSeconds: pluginConfig.timeoutSeconds ?? DEFAULT_ACPX_TIMEOUT_SECONDS,

561-

});

562-

}

599+

}),

600+

);

563601

if (currentRevision !== lifecycleRevision) {

564602

return;

565603

}

566-

if (runtime?.isHealthy()) {

604+

if (startedRuntime.isHealthy()) {

605+

detailAcpxStartup(ctx, "probe.result", [["healthyCount", 1]]);

567606

ctx.logger.info("embedded acpx runtime backend ready");

568607

return;

569608

}

570-

const doctorReport = await runtime?.doctor?.();

609+

const doctorReport = await measureAcpxStartup(ctx, "probe.doctor", () =>

610+

startedRuntime.doctor?.(),

611+

);

571612

if (currentRevision !== lifecycleRevision) {

572613

return;

573614

}

615+

detailAcpxStartup(ctx, "probe.result", [["healthyCount", 0]]);

574616

ctx.logger.warn(

575617

`embedded acpx runtime backend probe failed: ${doctorReport ? formatDoctorFailureMessage(doctorReport) : "backend remained unhealthy after probe"}`,

576618

);

577619

} catch (err) {

578620

if (currentRevision !== lifecycleRevision) {

579621

return;

580622

}

623+

detailAcpxStartup(ctx, "probe.result", [["healthyCount", 0]]);

581624

ctx.logger.warn(`embedded acpx runtime setup failed: ${formatErrorMessage(err)}`);

582625

}

583626

},