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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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(diagnostics): export talk and recovery metrics · open...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -2478,6 +2478,118 @@ describe("diagnostics-otel service", () => {

24782478

await service.stop?.(ctx);

24792479

});

248024802481+

test("exports session recovery and talk metrics with bounded attributes", async () => {

2482+

const service = createDiagnosticsOtelService();

2483+

const ctx = createOtelContext(OTEL_TEST_ENDPOINT, { metrics: true });

2484+

await service.start(ctx);

2485+2486+

emitTrustedDiagnosticEvent({

2487+

type: "session.recovery.requested",

2488+

sessionId: "session-should-not-export",

2489+

sessionKey: "key-should-not-export",

2490+

state: "processing",

2491+

ageMs: 12_000,

2492+

reason: "startup-sweep",

2493+

activeWorkKind: "tool_call",

2494+

allowActiveAbort: true,

2495+

});

2496+

emitTrustedDiagnosticEvent({

2497+

type: "session.recovery.completed",

2498+

sessionId: "session-should-not-export",

2499+

sessionKey: "key-should-not-export",

2500+

state: "processing",

2501+

ageMs: 13_000,

2502+

reason: "startup-sweep",

2503+

activeWorkKind: "tool_call",

2504+

status: "released",

2505+

action: "abort-active-run",

2506+

});

2507+

emitTrustedDiagnosticEvent({

2508+

type: "talk.event",

2509+

sessionId: "talk-session-should-not-export",

2510+

turnId: "turn-should-not-export",

2511+

talkEventType: "input.audio.delta",

2512+

mode: "realtime",

2513+

transport: "gateway-relay",

2514+

brain: "agent-consult",

2515+

provider: "openai",

2516+

byteLength: 320,

2517+

});

2518+

emitTrustedDiagnosticEvent({

2519+

type: "talk.event",

2520+

sessionId: "talk-session-should-not-export",

2521+

talkEventType: "latency.metrics",

2522+

mode: "realtime",

2523+

transport: "gateway-relay",

2524+

brain: "agent-consult",

2525+

provider: "openai",

2526+

durationMs: 45,

2527+

});

2528+

await flushDiagnosticEvents();

2529+2530+

expect(

2531+

telemetryState.counters.get("openclaw.session.recovery.requested")?.add,

2532+

).toHaveBeenCalledWith(

2533+

1,

2534+

expect.objectContaining({

2535+

"openclaw.state": "processing",

2536+

"openclaw.action": "abort",

2537+

"openclaw.active_work_kind": "tool_call",

2538+

}),

2539+

);

2540+

expect(

2541+

telemetryState.counters.get("openclaw.session.recovery.completed")?.add,

2542+

).toHaveBeenCalledWith(

2543+

1,

2544+

expect.objectContaining({

2545+

"openclaw.state": "processing",

2546+

"openclaw.status": "released",

2547+

"openclaw.action": "abort-active-run",

2548+

}),

2549+

);

2550+

expect(

2551+

telemetryState.histograms.get("openclaw.session.recovery.age_ms")?.record,

2552+

).toHaveBeenCalledWith(

2553+

13_000,

2554+

expect.objectContaining({

2555+

"openclaw.status": "released",

2556+

}),

2557+

);

2558+

expect(telemetryState.counters.get("openclaw.talk.event")?.add).toHaveBeenCalledWith(1, {

2559+

"openclaw.talk.brain": "agent-consult",

2560+

"openclaw.talk.event_type": "input.audio.delta",

2561+

"openclaw.talk.mode": "realtime",

2562+

"openclaw.talk.provider": "openai",

2563+

"openclaw.talk.transport": "gateway-relay",

2564+

});

2565+

expect(telemetryState.histograms.get("openclaw.talk.audio.bytes")?.record).toHaveBeenCalledWith(

2566+

320,

2567+

{

2568+

"openclaw.talk.brain": "agent-consult",

2569+

"openclaw.talk.event_type": "input.audio.delta",

2570+

"openclaw.talk.mode": "realtime",

2571+

"openclaw.talk.provider": "openai",

2572+

"openclaw.talk.transport": "gateway-relay",

2573+

},

2574+

);

2575+

expect(

2576+

telemetryState.histograms.get("openclaw.talk.event.duration_ms")?.record,

2577+

).toHaveBeenCalledWith(45, {

2578+

"openclaw.talk.brain": "agent-consult",

2579+

"openclaw.talk.event_type": "latency.metrics",

2580+

"openclaw.talk.mode": "realtime",

2581+

"openclaw.talk.provider": "openai",

2582+

"openclaw.talk.transport": "gateway-relay",

2583+

});

2584+2585+

const talkCounterCalls = JSON.stringify(

2586+

telemetryState.counters.get("openclaw.talk.event")?.add.mock.calls,

2587+

);

2588+

expect(talkCounterCalls).not.toContain("talk-session-should-not-export");

2589+

expect(talkCounterCalls).not.toContain("turn-should-not-export");

2590+

await service.stop?.(ctx);

2591+

});

2592+24812593

test("does not export model or tool content unless capture is explicitly enabled", async () => {

24822594

const service = createDiagnosticsOtelService();

24832595

const ctx = createOtelContext(OTEL_TEST_ENDPOINT, { traces: true, metrics: true });