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

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
B
Blog
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
V
V2EX

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: guard diagnostics otel mock calls · openclaw/opencl...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -246,7 +246,7 @@ async function emitAndCaptureLog(

246246

});

247247

await flushDiagnosticEvents();

248248

expect(logEmit).toHaveBeenCalled();

249-

const emitCall = logEmit.mock.calls[0]?.[0];

249+

const emitCall = logEmit.mock.calls.at(0)?.[0];

250250

await service.stop?.(ctx);

251251

return emitCall;

252252

}

@@ -753,7 +753,7 @@ describe("diagnostics-otel service", () => {

753753

const ctx = createTraceOnlyContext("https://www.comet.com/opik/api/v1/private/otel");

754754

await service.start(ctx);

755755756-

const options = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

756+

const options = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

757757

expect(options?.url).toBe("https://www.comet.com/opik/api/v1/private/otel/v1/traces");

758758

await service.stop?.(ctx);

759759

});

@@ -763,7 +763,7 @@ describe("diagnostics-otel service", () => {

763763

const ctx = createTraceOnlyContext("https://collector.example.com/v1/traces");

764764

await service.start(ctx);

765765766-

const options = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

766+

const options = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

767767

expect(options?.url).toBe("https://collector.example.com/v1/traces");

768768

await service.stop?.(ctx);

769769

});

@@ -773,7 +773,7 @@ describe("diagnostics-otel service", () => {

773773

const ctx = createTraceOnlyContext("https://collector.example.com/v1/traces?timeout=30s");

774774

await service.start(ctx);

775775776-

const options = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

776+

const options = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

777777

expect(options?.url).toBe("https://collector.example.com/v1/traces?timeout=30s");

778778

await service.stop?.(ctx);

779779

});

@@ -783,7 +783,7 @@ describe("diagnostics-otel service", () => {

783783

const ctx = createTraceOnlyContext("https://collector.example.com/v1/Traces");

784784

await service.start(ctx);

785785786-

const options = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

786+

const options = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

787787

expect(options?.url).toBe("https://collector.example.com/v1/Traces");

788788

await service.stop?.(ctx);

789789

});

@@ -801,9 +801,9 @@ describe("diagnostics-otel service", () => {

801801802802

await service.start(ctx);

803803804-

const traceOptions = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

805-

const metricOptions = metricExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

806-

const logOptions = logExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

804+

const traceOptions = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

805+

const metricOptions = metricExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

806+

const logOptions = logExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

807807

expect(traceOptions?.url).toBe("https://trace.example.com/otlp/v1/traces");

808808

expect(metricOptions?.url).toBe("https://metric.example.com/v1/metrics");

809809

expect(logOptions?.url).toBe("https://log.example.com/otlp/v1/logs");

@@ -823,9 +823,9 @@ describe("diagnostics-otel service", () => {

823823

});

824824

await service.start(ctx);

825825826-

const traceOptions = traceExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

827-

const metricOptions = metricExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

828-

const logOptions = logExporterCtor.mock.calls[0]?.[0] as { url?: string } | undefined;

826+

const traceOptions = traceExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

827+

const metricOptions = metricExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

828+

const logOptions = logExporterCtor.mock.calls.at(0)?.[0] as { url?: string } | undefined;

829829

expect(traceOptions?.url).toBe("https://trace-env.example.com/v1/traces");

830830

expect(metricOptions?.url).toBe("https://metric-env.example.com/otlp/v1/metrics");

831831

expect(logOptions?.url).toBe("https://log-env.example.com/otlp/v1/logs");

@@ -895,7 +895,7 @@ describe("diagnostics-otel service", () => {

895895

);

896896897897

expect(telemetryState.tracer.setSpanContext).toHaveBeenCalledTimes(1);

898-

const trustedSpanContext = telemetryState.tracer.setSpanContext.mock.calls[0]?.[1] as

898+

const trustedSpanContext = telemetryState.tracer.setSpanContext.mock.calls.at(0)?.[1] as

899899

| Record<string, unknown>

900900

| undefined;

901901

expect(trustedSpanContext?.traceId).toBe(TRACE_ID);

@@ -935,7 +935,7 @@ describe("diagnostics-otel service", () => {

935935

} as Parameters<typeof emitDiagnosticEvent>[0]);

936936

await flushDiagnosticEvents();

937937938-

const emitCall = logEmit.mock.calls[0]?.[0];

938+

const emitCall = logEmit.mock.calls.at(0)?.[0];

939939

expect(emitCall?.body.length).toBeLessThanOrEqual(4200);

940940

expect(String(emitCall?.attributes?.["openclaw.good"])).toMatch(/^y+/);

941941

expect(emitCall?.attributes?.["code.lineno"]).toBe(42);

@@ -1385,7 +1385,7 @@ describe("diagnostics-otel service", () => {

13851385

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

13861386

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

13871387

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

1388-

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

1388+

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

13891389

| Record<string, unknown>

13901390

| undefined;

13911391

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

@@ -1411,7 +1411,7 @@ describe("diagnostics-otel service", () => {

14111411

code: 2,

14121412

message: "TypeError",

14131413

});

1414-

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

1414+

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

14151415

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

14161416

await service.stop?.(ctx);

14171417

});

@@ -1450,7 +1450,7 @@ describe("diagnostics-otel service", () => {

14501450

const span = telemetryState.spans.find(

14511451

(candidate) => candidate.name === "openclaw.model.failover",

14521452

);

1453-

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

1453+

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

14541454

await service.stop?.(ctx);

14551455

});

14561456

@@ -1648,7 +1648,7 @@ describe("diagnostics-otel service", () => {

16481648

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

16491649

expect(JSON.stringify(contextCall)).not.toContain("session-key");

16501650

expect(JSON.stringify(contextCall)).not.toContain("prompt text");

1651-

const linkedSpanContext = telemetryState.tracer.setSpanContext.mock.calls[0]?.[1] as

1651+

const linkedSpanContext = telemetryState.tracer.setSpanContext.mock.calls.at(0)?.[1] as

16521652

| Record<string, unknown>

16531653

| undefined;

16541654

expect(linkedSpanContext?.traceId).toBe(TRACE_ID);

@@ -1942,7 +1942,7 @@ describe("diagnostics-otel service", () => {

19421942

(call) => call[0] === "openclaw.model.usage",

19431943

);

194419441945-

const linkedSpanContext = telemetryState.tracer.setSpanContext.mock.calls[0]?.[1] as

1945+

const linkedSpanContext = telemetryState.tracer.setSpanContext.mock.calls.at(0)?.[1] as

19461946

| Record<string, unknown>

19471947

| undefined;

19481948

expect(linkedSpanContext?.traceId).toBe(TRACE_ID);

@@ -1951,7 +1951,7 @@ describe("diagnostics-otel service", () => {

19511951

(modelUsageCall?.[2] as { spanContext?: { spanId?: string } } | undefined)?.spanContext

19521952

?.spanId,

19531953

).toBe(runSpanId);

1954-

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

1954+

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

19551955

await service.stop?.(ctx);

19561956

});

19571957

@@ -2229,7 +2229,7 @@ describe("diagnostics-otel service", () => {

22292229

code: 2,

22302230

message: "runtime-error",

22312231

});

2232-

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

2232+

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

22332233

await service.stop?.(ctx);

22342234

});

22352235

@@ -2400,14 +2400,16 @@ describe("diagnostics-otel service", () => {

24002400

});

24012401

await flushDiagnosticEvents();

240224022403-

const recoveryRequestedCall = telemetryState.counters.get("openclaw.session.recovery.requested")

2404-

?.add.mock.calls[0];

2403+

const recoveryRequestedCall = telemetryState.counters

2404+

.get("openclaw.session.recovery.requested")

2405+

?.add.mock.calls.at(0);

24052406

expect(recoveryRequestedCall?.[0]).toBe(1);

24062407

expect(recoveryRequestedCall?.[1]?.["openclaw.state"]).toBe("processing");

24072408

expect(recoveryRequestedCall?.[1]?.["openclaw.action"]).toBe("abort");

24082409

expect(recoveryRequestedCall?.[1]?.["openclaw.active_work_kind"]).toBe("tool_call");

2409-

const recoveryCompletedCall = telemetryState.counters.get("openclaw.session.recovery.completed")

2410-

?.add.mock.calls[0];

2410+

const recoveryCompletedCall = telemetryState.counters

2411+

.get("openclaw.session.recovery.completed")

2412+

?.add.mock.calls.at(0);

24112413

expect(recoveryCompletedCall?.[0]).toBe(1);

24122414

expect(recoveryCompletedCall?.[1]?.["openclaw.state"]).toBe("processing");

24132415

expect(recoveryCompletedCall?.[1]?.["openclaw.status"]).toBe("released");

@@ -2597,8 +2599,8 @@ describe("diagnostics-otel service", () => {

25972599

});

2598260025992601

const sessionCounter = telemetryState.counters.get("openclaw.session.state");

2600-

const attrs = sessionCounter?.add.mock.calls[0]?.[1] as Record<string, unknown> | undefined;

2601-

expect(sessionCounter?.add.mock.calls[0]?.[0]).toBe(1);

2602+

const attrs = sessionCounter?.add.mock.calls.at(0)?.[1] as Record<string, unknown> | undefined;

2603+

expect(sessionCounter?.add.mock.calls.at(0)?.[0]).toBe(1);

26022604

expect(String(attrs?.["openclaw.reason"])).toContain("…");

26032605

expect(typeof attrs?.["openclaw.reason"]).toBe("string");

26042606

expect(String(attrs?.["openclaw.reason"])).not.toContain(