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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
美团技术团队
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
A
About on SuperTechFans
Recent Announcements
Recent Announcements
D
Docker
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
腾讯CDC
Martin Fowler
Martin Fowler
阮一峰的网络日志
阮一峰的网络日志

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
chore(gateway): add startup trace attribution (#81738) · ...
samzong · 2026-05-14 · via Recent Commits to openclaw:main

@@ -46,6 +46,7 @@ import {

4646

__testing,

4747

clearPluginLoaderCache,

4848

loadOpenClawPlugins,

49+

type PluginLoadOptions,

4950

PluginLoadReentryError,

5051

resolveRuntimePluginRegistry,

5152

} from "./loader.js";

@@ -96,6 +97,10 @@ let cachedBundledTelegramDir = "";

9697

let cachedBundledMemoryDir = "";

97989899

type GlobalHookRunner = NonNullable<ReturnType<typeof getGlobalHookRunner>>;

100+

type PluginStartupTraceDetail = {

101+

name: string;

102+

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

103+

};

99104100105

function countMatching<T>(items: readonly T[], predicate: (item: T) => boolean): number {

101106

let count = 0;

@@ -913,6 +918,36 @@ function expectEscapingEntryRejected(params: {

913918

return registry;

914919

}

915920921+

function createStartupTraceRecorder(): {

922+

details: PluginStartupTraceDetail[];

923+

startupTrace: NonNullable<PluginLoadOptions["startupTrace"]>;

924+

} {

925+

const details: PluginStartupTraceDetail[] = [];

926+

return {

927+

details,

928+

startupTrace: {

929+

detail: (name, metrics) => {

930+

details.push({ name, metrics });

931+

},

932+

},

933+

};

934+

}

935+936+

function collectStartupTraceMetrics(

937+

details: readonly PluginStartupTraceDetail[],

938+

name: string,

939+

): Record<string, number | string> {

940+

const matched = details.filter((entry) => entry.name === name);

941+

expect(matched.length).toBeGreaterThan(0);

942+

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

943+

for (const entry of matched) {

944+

for (const [key, value] of entry.metrics) {

945+

metrics[key] = value;

946+

}

947+

}

948+

return metrics;

949+

}

950+916951

afterEach(() => {

917952

clearRuntimeConfigSnapshot();

918953

runtimeRegistryLoaderTesting.resetPluginRegistryLoadedForTests();

@@ -926,6 +961,76 @@ afterAll(() => {

926961

});

927962928963

describe("loadOpenClawPlugins", () => {

964+

it("emits loader startup trace timings for normal plugin load and register", () => {

965+

useNoBundledPlugins();

966+

const plugin = writePlugin({

967+

id: "trace-plugin",

968+

filename: "trace-plugin.cjs",

969+

body: `module.exports = { id: "trace-plugin", register() {} };`,

970+

});

971+

const { details, startupTrace } = createStartupTraceRecorder();

972+973+

loadRegistryFromSinglePlugin({

974+

plugin,

975+

pluginConfig: {

976+

allow: ["trace-plugin"],

977+

},

978+

options: {

979+

startupTrace,

980+

},

981+

});

982+983+

const metrics = collectStartupTraceMetrics(details, "plugins.gateway-load.plugin.trace-plugin");

984+

expect(metrics.loadMs).toEqual(expect.any(Number));

985+

expect(metrics.loadFailedCount).toBe(0);

986+

expect(metrics.registerMs).toEqual(expect.any(Number));

987+

expect(metrics.registerFailedCount).toBe(0);

988+

expect(metrics.loadAndRegisterMs).toEqual(expect.any(Number));

989+

});

990+991+

it("emits loader startup trace failure counts for load and register failures", () => {

992+

useNoBundledPlugins();

993+

const loadFailPlugin = writePlugin({

994+

id: "trace-load-fail",

995+

filename: "trace-load-fail.cjs",

996+

body: `throw new Error("load boom");`,

997+

});

998+

const registerFailPlugin = writePlugin({

999+

id: "trace-register-fail",

1000+

filename: "trace-register-fail.cjs",

1001+

body: `module.exports = { id: "trace-register-fail", register() { throw new Error("register boom"); } };`,

1002+

});

1003+

const { details, startupTrace } = createStartupTraceRecorder();

1004+1005+

loadOpenClawPlugins({

1006+

cache: false,

1007+

config: {

1008+

plugins: {

1009+

load: { paths: [loadFailPlugin.file, registerFailPlugin.file] },

1010+

allow: ["trace-load-fail", "trace-register-fail"],

1011+

},

1012+

},

1013+

startupTrace,

1014+

});

1015+1016+

const loadFailMetrics = collectStartupTraceMetrics(

1017+

details,

1018+

"plugins.gateway-load.plugin.trace-load-fail",

1019+

);

1020+

expect(loadFailMetrics.loadMs).toEqual(expect.any(Number));

1021+

expect(loadFailMetrics.loadFailedCount).toBe(1);

1022+

expect(loadFailMetrics.registerMs).toBeUndefined();

1023+1024+

const registerFailMetrics = collectStartupTraceMetrics(

1025+

details,

1026+

"plugins.gateway-load.plugin.trace-register-fail",

1027+

);

1028+

expect(registerFailMetrics.loadFailedCount).toBe(0);

1029+

expect(registerFailMetrics.registerMs).toEqual(expect.any(Number));

1030+

expect(registerFailMetrics.registerFailedCount).toBe(1);

1031+

expect(registerFailMetrics.loadAndRegisterMs).toEqual(expect.any(Number));

1032+

});

1033+9291034

it("can load scoped plugins from a supplied manifest registry without rereading manifests", () => {

9301035

useNoBundledPlugins();

9311036

const plugin = writePlugin({