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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point 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
test: tighten diagnostics context metric assertions · ope...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -1333,91 +1333,50 @@ describe("diagnostics-otel service", () => {

13331333

expect(toolOptions?.startTime).toBeTypeOf("number");

13341334

expect(toolCall?.[2]).toBeUndefined();

133513351336-

expect(

1337-

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

1338-

).toHaveBeenCalledWith(

1339-

80,

1340-

expect.objectContaining({

1341-

"openclaw.provider": "openai",

1342-

"openclaw.model": "gpt-5.4",

1343-

}),

1344-

);

1345-

expect(

1346-

telemetryState.histograms.get("openclaw.model_call.request_bytes")?.record,

1347-

).toHaveBeenCalledWith(

1348-

1234,

1349-

expect.objectContaining({

1350-

"openclaw.provider": "openai",

1351-

"openclaw.model": "gpt-5.4",

1352-

}),

1353-

);

1354-

expect(

1355-

telemetryState.histograms.get("openclaw.model_call.response_bytes")?.record,

1356-

).toHaveBeenCalledWith(

1357-

567,

1358-

expect.objectContaining({

1359-

"openclaw.provider": "openai",

1360-

"openclaw.model": "gpt-5.4",

1361-

}),

1362-

);

1363-

expect(

1364-

telemetryState.histograms.get("openclaw.model_call.time_to_first_byte_ms")?.record,

1365-

).toHaveBeenCalledWith(

1366-

45,

1367-

expect.objectContaining({

1368-

"openclaw.provider": "openai",

1369-

"openclaw.model": "gpt-5.4",

1370-

}),

1371-

);

1336+

const modelCallDuration = lastHistogramRecord("openclaw.model_call.duration_ms");

1337+

expect(modelCallDuration?.[0]).toBe(80);

1338+

expect(modelCallDuration?.[1]?.["openclaw.provider"]).toBe("openai");

1339+

expect(modelCallDuration?.[1]?.["openclaw.model"]).toBe("gpt-5.4");

1340+

const requestBytes = lastHistogramRecord("openclaw.model_call.request_bytes");

1341+

expect(requestBytes?.[0]).toBe(1234);

1342+

expect(requestBytes?.[1]?.["openclaw.provider"]).toBe("openai");

1343+

expect(requestBytes?.[1]?.["openclaw.model"]).toBe("gpt-5.4");

1344+

const responseBytes = lastHistogramRecord("openclaw.model_call.response_bytes");

1345+

expect(responseBytes?.[0]).toBe(567);

1346+

expect(responseBytes?.[1]?.["openclaw.provider"]).toBe("openai");

1347+

expect(responseBytes?.[1]?.["openclaw.model"]).toBe("gpt-5.4");

1348+

const timeToFirstByte = lastHistogramRecord("openclaw.model_call.time_to_first_byte_ms");

1349+

expect(timeToFirstByte?.[0]).toBe(45);

1350+

expect(timeToFirstByte?.[1]?.["openclaw.provider"]).toBe("openai");

1351+

expect(timeToFirstByte?.[1]?.["openclaw.model"]).toBe("gpt-5.4");

13721352

const modelCallSpan = telemetryState.spans.find((span) => span.name === "openclaw.model.call");

1373-

expect(modelCallSpan?.setAttributes).toHaveBeenCalledWith(

1374-

expect.objectContaining({

1375-

"openclaw.model_call.request_bytes": 1234,

1376-

"openclaw.model_call.response_bytes": 567,

1377-

"openclaw.model_call.time_to_first_byte_ms": 45,

1378-

}),

1379-

);

1380-

expect(telemetryState.histograms.get("openclaw.run.duration_ms")?.record).toHaveBeenCalledWith(

1381-

100,

1382-

expect.not.objectContaining({

1383-

"openclaw.runId": expect.anything(),

1384-

}),

1385-

);

1386-

expect(

1387-

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

1388-

).toHaveBeenCalledWith(

1389-

90,

1390-

expect.objectContaining({

1391-

"openclaw.harness.id": "codex",

1392-

"openclaw.harness.plugin": "codex-plugin",

1393-

"openclaw.outcome": "completed",

1394-

}),

1395-

);

1396-

expect(

1397-

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

1398-

).toHaveBeenCalledWith(

1399-

90,

1400-

expect.not.objectContaining({

1401-

"openclaw.runId": expect.anything(),

1402-

"openclaw.sessionKey": expect.anything(),

1403-

}),

1404-

);

1405-

expect(

1406-

telemetryState.histograms.get("openclaw.tool.execution.duration_ms")?.record,

1407-

).toHaveBeenCalledWith(

1408-

20,

1409-

expect.not.objectContaining({

1410-

"openclaw.errorCode": expect.anything(),

1411-

"openclaw.runId": expect.anything(),

1412-

}),

1413-

);

1353+

const modelSpanAttributes = modelCallSpan?.setAttributes.mock.calls[0]?.[0] as

1354+

| Record<string, unknown>

1355+

| undefined;

1356+

expect(modelSpanAttributes?.["openclaw.model_call.request_bytes"]).toBe(1234);

1357+

expect(modelSpanAttributes?.["openclaw.model_call.response_bytes"]).toBe(567);

1358+

expect(modelSpanAttributes?.["openclaw.model_call.time_to_first_byte_ms"]).toBe(45);

1359+

const runDuration = lastHistogramRecord("openclaw.run.duration_ms");

1360+

expect(runDuration?.[0]).toBe(100);

1361+

expect(Object.hasOwn(runDuration?.[1] ?? {}, "openclaw.runId")).toBe(false);

1362+

const harnessDuration = lastHistogramRecord("openclaw.harness.duration_ms");

1363+

expect(harnessDuration?.[0]).toBe(90);

1364+

expect(harnessDuration?.[1]?.["openclaw.harness.id"]).toBe("codex");

1365+

expect(harnessDuration?.[1]?.["openclaw.harness.plugin"]).toBe("codex-plugin");

1366+

expect(harnessDuration?.[1]?.["openclaw.outcome"]).toBe("completed");

1367+

expect(Object.hasOwn(harnessDuration?.[1] ?? {}, "openclaw.runId")).toBe(false);

1368+

expect(Object.hasOwn(harnessDuration?.[1] ?? {}, "openclaw.sessionKey")).toBe(false);

1369+

const toolDuration = lastHistogramRecord("openclaw.tool.execution.duration_ms");

1370+

expect(toolDuration?.[0]).toBe(20);

1371+

expect(Object.hasOwn(toolDuration?.[1] ?? {}, "openclaw.errorCode")).toBe(false);

1372+

expect(Object.hasOwn(toolDuration?.[1] ?? {}, "openclaw.runId")).toBe(false);

1414137314151374

const toolSpan = telemetryState.spans.find((span) => span.name === "openclaw.tool.execution");

14161375

expect(toolSpan?.setStatus).toHaveBeenCalledWith({

14171376

code: 2,

14181377

message: "TypeError",

14191378

});

1420-

expect(toolSpan?.end).toHaveBeenCalledWith(expect.any(Number));

1379+

expect(toolSpan?.end.mock.calls[0]?.[0]).toBeTypeOf("number");

14211380

expect(telemetryState.tracer.setSpanContext).not.toHaveBeenCalled();

14221381

await service.stop?.(ctx);

14231382

});