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

推荐订阅源

腾讯CDC
The Cloudflare Blog
IT之家
IT之家
V
V2EX
雷峰网
雷峰网
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
A
About on SuperTechFans
B
Blog
月光博客
月光博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI

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(diagnostics): export lifecycle OTEL spans · openclaw...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -5,11 +5,20 @@ const registerLogTransportMock = vi.hoisted(() => vi.fn());

55

const telemetryState = vi.hoisted(() => {

66

const counters = new Map<string, { add: ReturnType<typeof vi.fn> }>();

77

const histograms = new Map<string, { record: ReturnType<typeof vi.fn> }>();

8+

const spans: Array<{

9+

name: string;

10+

end: ReturnType<typeof vi.fn>;

11+

setStatus: ReturnType<typeof vi.fn>;

12+

}> = [];

813

const tracer = {

9-

startSpan: vi.fn((_name: string, _opts?: unknown, _ctx?: unknown) => ({

10-

end: vi.fn(),

11-

setStatus: vi.fn(),

12-

})),

14+

startSpan: vi.fn((name: string, _opts?: unknown, _ctx?: unknown) => {

15+

const span = {

16+

end: vi.fn(),

17+

setStatus: vi.fn(),

18+

};

19+

spans.push({ name, ...span });

20+

return span;

21+

}),

1322

setSpanContext: vi.fn((_ctx: unknown, spanContext: unknown) => ({ spanContext })),

1423

};

1524

const meter = {

@@ -24,7 +33,7 @@ const telemetryState = vi.hoisted(() => {

2433

return histogram;

2534

}),

2635

};

27-

return { counters, histograms, tracer, meter };

36+

return { counters, histograms, spans, tracer, meter };

2837

});

29383039

const sdkStart = vi.hoisted(() => vi.fn().mockResolvedValue(undefined));

@@ -121,6 +130,8 @@ const OTEL_TEST_ENDPOINT = "http://otel-collector:4318";

121130

const OTEL_TEST_PROTOCOL = "http/protobuf";

122131

const TRACE_ID = "4bf92f3577b34da6a3ce929d0e0e4736";

123132

const SPAN_ID = "00f067aa0ba902b7";

133+

const CHILD_SPAN_ID = "1111111111111111";

134+

const GRANDCHILD_SPAN_ID = "2222222222222222";

124135125136

function createLogger() {

126137

return {

@@ -189,10 +200,15 @@ async function emitAndCaptureLog(logObj: Record<string, unknown>) {

189200

return emitCall;

190201

}

191202203+

function flushDiagnosticEvents() {

204+

return new Promise<void>((resolve) => setImmediate(resolve));

205+

}

206+192207

describe("diagnostics-otel service", () => {

193208

beforeEach(() => {

194209

telemetryState.counters.clear();

195210

telemetryState.histograms.clear();

211+

telemetryState.spans.length = 0;

196212

telemetryState.tracer.startSpan.mockClear();

197213

telemetryState.tracer.setSpanContext.mockClear();

198214

telemetryState.meter.createCounter.mockClear();

@@ -432,10 +448,14 @@ describe("diagnostics-otel service", () => {

432448

});

433449434450

expect(emitCall?.attributes).toMatchObject({

435-

"openclaw.traceId": TRACE_ID,

436-

"openclaw.spanId": SPAN_ID,

437451

"openclaw.traceFlags": "01",

438452

});

453+

expect(emitCall?.attributes).toEqual(

454+

expect.not.objectContaining({

455+

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

456+

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

457+

}),

458+

);

439459

expect(telemetryState.tracer.setSpanContext).toHaveBeenCalledWith(

440460

expect.anything(),

441461

expect.objectContaining({

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

453473

});

454474

});

455475456-

test("parents diagnostic event spans from trace context", async () => {

476+

test("does not parent diagnostic event spans from plugin-emittable trace context", async () => {

457477

const service = createDiagnosticsOtelService();

458478

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

459479

await service.start(ctx);

@@ -474,14 +494,167 @@ describe("diagnostics-otel service", () => {

474494

const modelUsageCall = telemetryState.tracer.startSpan.mock.calls.find(

475495

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

476496

);

477-

expect(modelUsageCall?.[2]).toEqual({

478-

spanContext: expect.objectContaining({

497+

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

498+

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

499+

await service.stop?.(ctx);

500+

});

501+502+

test("exports run, model call, and tool execution lifecycle spans", async () => {

503+

const service = createDiagnosticsOtelService();

504+

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

505+

await service.start(ctx);

506+507+

emitDiagnosticEvent({

508+

type: "run.completed",

509+

runId: "run-1",

510+

sessionKey: "session-key",

511+

provider: "openai",

512+

model: "gpt-5.4",

513+

channel: "webchat",

514+

outcome: "completed",

515+

durationMs: 100,

516+

trace: {

479517

traceId: TRACE_ID,

480518

spanId: SPAN_ID,

481-

traceFlags: 1,

482-

isRemote: true,

519+

traceFlags: "01",

520+

},

521+

});

522+

emitDiagnosticEvent({

523+

type: "model.call.completed",

524+

runId: "run-1",

525+

callId: "call-1",

526+

provider: "openai",

527+

model: "gpt-5.4",

528+

api: "completions",

529+

transport: "http",

530+

durationMs: 80,

531+

trace: {

532+

traceId: TRACE_ID,

533+

spanId: CHILD_SPAN_ID,

534+

parentSpanId: SPAN_ID,

535+

traceFlags: "01",

536+

},

537+

});

538+

emitDiagnosticEvent({

539+

type: "tool.execution.error",

540+

runId: "run-1",

541+

toolName: "read",

542+

toolCallId: "tool-1",

543+

paramsSummary: { kind: "object" },

544+

durationMs: 20,

545+

errorCategory: "TypeError",

546+

errorCode: "429",

547+

trace: {

548+

traceId: TRACE_ID,

549+

spanId: GRANDCHILD_SPAN_ID,

550+

parentSpanId: CHILD_SPAN_ID,

551+

traceFlags: "01",

552+

},

553+

});

554+

await flushDiagnosticEvents();

555+556+

const spanNames = telemetryState.tracer.startSpan.mock.calls.map((call) => call[0]);

557+

expect(spanNames).toEqual(

558+

expect.arrayContaining(["openclaw.run", "openclaw.model.call", "openclaw.tool.execution"]),

559+

);

560+561+

const runCall = telemetryState.tracer.startSpan.mock.calls.find(

562+

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

563+

);

564+

expect(runCall?.[1]).toMatchObject({

565+

attributes: {

566+

"openclaw.outcome": "completed",

567+

"openclaw.provider": "openai",

568+

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

569+

"openclaw.channel": "webchat",

570+

},

571+

startTime: expect.any(Number),

572+

});

573+

expect(runCall?.[1]).toEqual({

574+

attributes: expect.not.objectContaining({

575+

"gen_ai.system": expect.anything(),

576+

"gen_ai.request.model": expect.anything(),

577+

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

578+

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

579+

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

483580

}),

581+

startTime: expect.any(Number),

484582

});

583+584+

const modelCall = telemetryState.tracer.startSpan.mock.calls.find(

585+

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

586+

);

587+

expect(modelCall?.[1]).toMatchObject({

588+

attributes: {

589+

"gen_ai.system": "openai",

590+

"gen_ai.request.model": "gpt-5.4",

591+

"gen_ai.operation.name": "text_completion",

592+

},

593+

});

594+

expect(modelCall?.[1]).toEqual({

595+

attributes: expect.not.objectContaining({

596+

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

597+

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

598+

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

599+

}),

600+

startTime: expect.any(Number),

601+

});

602+

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

603+604+

const toolCall = telemetryState.tracer.startSpan.mock.calls.find(

605+

(call) => call[0] === "openclaw.tool.execution",

606+

);

607+

expect(toolCall?.[1]).toMatchObject({

608+

attributes: {

609+

"openclaw.toolName": "read",

610+

"openclaw.errorCategory": "TypeError",

611+

"openclaw.errorCode": "429",

612+

"openclaw.tool.params.kind": "object",

613+

"gen_ai.tool.name": "read",

614+

},

615+

});

616+

expect(toolCall?.[1]).toEqual({

617+

attributes: expect.not.objectContaining({

618+

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

619+

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

620+

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

621+

}),

622+

startTime: expect.any(Number),

623+

});

624+

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

625+626+

expect(

627+

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

628+

).toHaveBeenCalledWith(

629+

80,

630+

expect.objectContaining({

631+

"openclaw.provider": "openai",

632+

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

633+

}),

634+

);

635+

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

636+

100,

637+

expect.not.objectContaining({

638+

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

639+

}),

640+

);

641+

expect(

642+

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

643+

).toHaveBeenCalledWith(

644+

20,

645+

expect.not.objectContaining({

646+

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

647+

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

648+

}),

649+

);

650+651+

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

652+

expect(toolSpan?.setStatus).toHaveBeenCalledWith({

653+

code: 2,

654+

message: "TypeError",

655+

});

656+

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

657+

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

485658

await service.stop?.(ctx);

486659

});

487660