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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

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-otel): export logs from diagnostic events...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,7 +1,5 @@

11

import { beforeEach, describe, expect, test, vi } from "vitest";

223-

const registerLogTransportMock = vi.hoisted(() => vi.fn());

4-53

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

64

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

75

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

@@ -113,14 +111,6 @@ vi.mock("@opentelemetry/semantic-conventions", () => ({

113111

ATTR_SERVICE_NAME: "service.name",

114112

}));

115113116-

vi.mock("../api.js", async () => {

117-

const actual = await vi.importActual<typeof import("../api.js")>("../api.js");

118-

return {

119-

...actual,

120-

registerLogTransport: registerLogTransportMock,

121-

};

122-

});

123-124114

import type { OpenClawPluginServiceContext } from "../api.js";

125115

import { emitDiagnosticEvent } from "../api.js";

126116

import { createDiagnosticsOtelService } from "./service.js";

@@ -132,6 +122,7 @@ const TRACE_ID = "4bf92f3577b34da6a3ce929d0e0e4736";

132122

const SPAN_ID = "00f067aa0ba902b7";

133123

const CHILD_SPAN_ID = "1111111111111111";

134124

const GRANDCHILD_SPAN_ID = "2222222222222222";

125+

const PROTO_KEY = "__proto__";

135126136127

function createLogger() {

137128

return {

@@ -174,26 +165,17 @@ function createTraceOnlyContext(endpoint: string): OpenClawPluginServiceContext

174165

return createOtelContext(endpoint, { traces: true });

175166

}

176167177-

type RegisteredLogTransport = (logObj: Record<string, unknown>) => void;

178-

function setupRegisteredTransports() {

179-

const registeredTransports: RegisteredLogTransport[] = [];

180-

const stopTransports: ReturnType<typeof vi.fn>[] = [];

181-

registerLogTransportMock.mockImplementation((transport) => {

182-

registeredTransports.push(transport);

183-

const stopTransport = vi.fn();

184-

stopTransports.push(stopTransport);

185-

return stopTransport;

186-

});

187-

return { registeredTransports, stopTransports };

188-

}

189-190-

async function emitAndCaptureLog(logObj: Record<string, unknown>) {

191-

const { registeredTransports } = setupRegisteredTransports();

168+

async function emitAndCaptureLog(

169+

event: Omit<Extract<Parameters<typeof emitDiagnosticEvent>[0], { type: "log.record" }>, "type">,

170+

) {

192171

const service = createDiagnosticsOtelService();

193172

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

194173

await service.start(ctx);

195-

expect(registeredTransports).toHaveLength(1);

196-

registeredTransports[0]?.(logObj);

174+

emitDiagnosticEvent({

175+

type: "log.record",

176+

...event,

177+

});

178+

await flushDiagnosticEvents();

197179

expect(logEmit).toHaveBeenCalled();

198180

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

199181

await service.stop?.(ctx);

@@ -215,15 +197,12 @@ describe("diagnostics-otel service", () => {

215197

telemetryState.meter.createHistogram.mockClear();

216198

sdkStart.mockClear();

217199

sdkShutdown.mockClear();

218-

logEmit.mockClear();

200+

logEmit.mockReset();

219201

logShutdown.mockClear();

220202

traceExporterCtor.mockClear();

221-

registerLogTransportMock.mockReset();

222203

});

223204224205

test("records message-flow metrics and spans", async () => {

225-

const { registeredTransports } = setupRegisteredTransports();

226-227206

const service = createDiagnosticsOtelService();

228207

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

229208

await service.start(ctx);

@@ -289,29 +268,24 @@ describe("diagnostics-otel service", () => {

289268

expect(spanNames).toContain("openclaw.message.processed");

290269

expect(spanNames).toContain("openclaw.session.stuck");

291270292-

expect(registerLogTransportMock).toHaveBeenCalledTimes(1);

293-

expect(registeredTransports).toHaveLength(1);

294-

registeredTransports[0]?.({

295-

0: '{"subsystem":"diagnostic"}',

296-

1: "hello",

297-

_meta: { logLevelName: "INFO", date: new Date() },

271+

emitDiagnosticEvent({

272+

type: "log.record",

273+

level: "INFO",

274+

message: "hello",

275+

attributes: { subsystem: "diagnostic" },

298276

});

277+

await flushDiagnosticEvents();

299278

expect(logEmit).toHaveBeenCalled();

300279301280

await service.stop?.(ctx);

302281

});

303282304283

test("restarts without retaining prior listeners or log transports", async () => {

305-

const { registeredTransports, stopTransports } = setupRegisteredTransports();

306-307284

const service = createDiagnosticsOtelService();

308285

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

309286

await service.start(ctx);

310287

await service.start(ctx);

311288312-

expect(registerLogTransportMock).toHaveBeenCalledTimes(2);

313-

expect(registeredTransports).toHaveLength(2);

314-

expect(stopTransports[0]).toHaveBeenCalledTimes(1);

315289

expect(logShutdown).toHaveBeenCalledTimes(1);

316290

expect(sdkShutdown).toHaveBeenCalledTimes(1);

317291

@@ -325,7 +299,6 @@ describe("diagnostics-otel service", () => {

325299

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

326300327301

await service.stop?.(ctx);

328-

expect(stopTransports[1]).toHaveBeenCalledTimes(1);

329302

expect(logShutdown).toHaveBeenCalledTimes(2);

330303

expect(sdkShutdown).toHaveBeenCalledTimes(2);

331304

@@ -340,8 +313,6 @@ describe("diagnostics-otel service", () => {

340313

});

341314342315

test("tears down active handles when restarted with diagnostics disabled", async () => {

343-

const { stopTransports } = setupRegisteredTransports();

344-345316

const service = createDiagnosticsOtelService();

346317

const enabledCtx = createOtelContext(OTEL_TEST_ENDPOINT, {

347318

traces: true,

@@ -354,7 +325,6 @@ describe("diagnostics-otel service", () => {

354325

config: { diagnostics: { enabled: false } },

355326

});

356327357-

expect(stopTransports[0]).toHaveBeenCalledTimes(1);

358328

expect(logShutdown).toHaveBeenCalledTimes(1);

359329

expect(sdkShutdown).toHaveBeenCalledTimes(1);

360330

@@ -410,8 +380,8 @@ describe("diagnostics-otel service", () => {

410380411381

test("redacts sensitive data from log messages before export", async () => {

412382

const emitCall = await emitAndCaptureLog({

413-

0: "Using API key sk-1234567890abcdef1234567890abcdef",

414-

_meta: { logLevelName: "INFO", date: new Date() },

383+

level: "INFO",

384+

message: "Using API key sk-1234567890abcdef1234567890abcdef",

415385

});

416386417387

expect(emitCall?.body).not.toContain("sk-1234567890abcdef1234567890abcdef");

@@ -421,9 +391,11 @@ describe("diagnostics-otel service", () => {

421391422392

test("redacts sensitive data from log attributes before export", async () => {

423393

const emitCall = await emitAndCaptureLog({

424-

0: '{"token":"ghp_abcdefghijklmnopqrstuvwxyz123456"}', // pragma: allowlist secret

425-

1: "auth configured",

426-

_meta: { logLevelName: "DEBUG", date: new Date() },

394+

level: "DEBUG",

395+

message: "auth configured",

396+

attributes: {

397+

token: "ghp_abcdefghijklmnopqrstuvwxyz123456", // pragma: allowlist secret

398+

},

427399

});

428400429401

const tokenAttr = emitCall?.attributes?.["openclaw.token"];

@@ -435,16 +407,16 @@ describe("diagnostics-otel service", () => {

435407436408

test("attaches diagnostic trace context to exported logs", async () => {

437409

const emitCall = await emitAndCaptureLog({

438-

0: '{"subsystem":"diagnostic"}',

439-

1: {

440-

trace: {

441-

traceId: TRACE_ID,

442-

spanId: SPAN_ID,

443-

traceFlags: "01",

444-

},

410+

level: "INFO",

411+

message: "traceable log",

412+

attributes: {

413+

subsystem: "diagnostic",

414+

},

415+

trace: {

416+

traceId: TRACE_ID,

417+

spanId: SPAN_ID,

418+

traceFlags: "01",

445419

},

446-

2: "traceable log",

447-

_meta: { logLevelName: "INFO", date: new Date() },

448420

});

449421450422

expect(emitCall?.attributes).toMatchObject({

@@ -473,6 +445,99 @@ describe("diagnostics-otel service", () => {

473445

});

474446

});

475447448+

test("bounds plugin-emitted log attributes and omits source paths", async () => {

449+

const service = createDiagnosticsOtelService();

450+

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

451+

await service.start(ctx);

452+453+

const attributes = Object.create(null) as Record<string, string>;

454+

attributes.good = "y".repeat(6000);

455+

attributes["bad key"] = "drop-me";

456+

attributes[PROTO_KEY] = "pollute";

457+

attributes["constructor"] = "pollute";

458+

attributes["prototype"] = "pollute";

459+

attributes["sk-1234567890abcdef1234567890abcdef"] = "secret-key"; // pragma: allowlist secret

460+461+

emitDiagnosticEvent({

462+

type: "log.record",

463+

level: "INFO",

464+

message: "x".repeat(6000),

465+

attributes,

466+

code: {

467+

filepath: "/Users/alice/openclaw/src/private.ts",

468+

line: 42,

469+

functionName: "handler",

470+

location: "/Users/alice/openclaw/src/private.ts:42",

471+

},

472+

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

473+

await flushDiagnosticEvents();

474+475+

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

476+

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

477+

expect(emitCall?.attributes).toMatchObject({

478+

"openclaw.good": expect.stringMatching(/^y+/),

479+

"code.lineno": 42,

480+

"code.function": "handler",

481+

});

482+

expect(String(emitCall?.attributes?.["openclaw.good"]).length).toBeLessThanOrEqual(4200);

483+

expect(Object.hasOwn(emitCall?.attributes ?? {}, `openclaw.${PROTO_KEY}`)).toBe(false);

484+

expect(Object.hasOwn(emitCall?.attributes ?? {}, "openclaw.constructor")).toBe(false);

485+

expect(Object.hasOwn(emitCall?.attributes ?? {}, "openclaw.prototype")).toBe(false);

486+

expect(

487+

Object.hasOwn(

488+

emitCall?.attributes ?? {},

489+

"openclaw.sk-1234567890abcdef1234567890abcdef", // pragma: allowlist secret

490+

),

491+

).toBe(false);

492+

expect(emitCall?.attributes).toEqual(

493+

expect.not.objectContaining({

494+

"openclaw.bad key": expect.anything(),

495+

"code.filepath": expect.anything(),

496+

"openclaw.code.location": expect.anything(),

497+

}),

498+

);

499+

await service.stop?.(ctx);

500+

});

501+502+

test("rate-limits repeated log export failure reports", async () => {

503+

const service = createDiagnosticsOtelService();

504+

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

505+

const nowSpy = vi.spyOn(Date, "now").mockReturnValue(1_000);

506+

logEmit.mockImplementation(() => {

507+

throw new Error("export failed");

508+

});

509+

try {

510+

await service.start(ctx);

511+512+

emitDiagnosticEvent({

513+

type: "log.record",

514+

level: "ERROR",

515+

message: "first failing log",

516+

});

517+

emitDiagnosticEvent({

518+

type: "log.record",

519+

level: "ERROR",

520+

message: "second failing log",

521+

});

522+

await flushDiagnosticEvents();

523+524+

expect(ctx.logger.error).toHaveBeenCalledTimes(1);

525+526+

nowSpy.mockReturnValue(62_000);

527+

emitDiagnosticEvent({

528+

type: "log.record",

529+

level: "ERROR",

530+

message: "third failing log",

531+

});

532+

await flushDiagnosticEvents();

533+534+

expect(ctx.logger.error).toHaveBeenCalledTimes(2);

535+

} finally {

536+

nowSpy.mockRestore();

537+

await service.stop?.(ctx);

538+

}

539+

});

540+476541

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

477542

const service = createDiagnosticsOtelService();

478543

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