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

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

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-otel): add content capture controls · op...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -123,6 +123,8 @@ const SPAN_ID = "00f067aa0ba902b7";

123123

const CHILD_SPAN_ID = "1111111111111111";

124124

const GRANDCHILD_SPAN_ID = "2222222222222222";

125125

const PROTO_KEY = "__proto__";

126+

const MAX_TEST_OTEL_CONTENT_ATTRIBUTE_CHARS = 4096;

127+

const OTEL_TRUNCATED_SUFFIX_MAX_CHARS = 20;

126128127129

function createLogger() {

128130

return {

@@ -137,10 +139,13 @@ type OtelContextFlags = {

137139

traces?: boolean;

138140

metrics?: boolean;

139141

logs?: boolean;

142+

captureContent?: NonNullable<

143+

NonNullable<OpenClawPluginServiceContext["config"]["diagnostics"]>["otel"]

144+

>["captureContent"];

140145

};

141146

function createOtelContext(

142147

endpoint: string,

143-

{ traces = false, metrics = false, logs = false }: OtelContextFlags = {},

148+

{ traces = false, metrics = false, logs = false, captureContent }: OtelContextFlags = {},

144149

): OpenClawPluginServiceContext {

145150

return {

146151

config: {

@@ -153,6 +158,7 @@ function createOtelContext(

153158

traces,

154159

metrics,

155160

logs,

161+

...(captureContent !== undefined ? { captureContent } : {}),

156162

},

157163

},

158164

},

@@ -723,6 +729,122 @@ describe("diagnostics-otel service", () => {

723729

await service.stop?.(ctx);

724730

});

725731732+

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

733+

const service = createDiagnosticsOtelService();

734+

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

735+

await service.start(ctx);

736+737+

emitDiagnosticEvent({

738+

type: "model.call.completed",

739+

runId: "run-1",

740+

callId: "call-1",

741+

provider: "openai",

742+

model: "gpt-5.4",

743+

durationMs: 80,

744+

inputMessages: ["private user prompt"],

745+

outputMessages: ["private model reply"],

746+

systemPrompt: "private system prompt",

747+

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

748+

emitDiagnosticEvent({

749+

type: "tool.execution.completed",

750+

runId: "run-1",

751+

toolName: "read",

752+

toolCallId: "tool-1",

753+

durationMs: 20,

754+

toolInput: "private tool input",

755+

toolOutput: "private tool output",

756+

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

757+

await flushDiagnosticEvents();

758+759+

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

760+

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

761+

);

762+

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

763+

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

764+

);

765+

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

766+

attributes: expect.not.objectContaining({

767+

"openclaw.content.input_messages": expect.anything(),

768+

"openclaw.content.output_messages": expect.anything(),

769+

"openclaw.content.system_prompt": expect.anything(),

770+

}),

771+

startTime: expect.any(Number),

772+

});

773+

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

774+

attributes: expect.not.objectContaining({

775+

"openclaw.content.tool_input": expect.anything(),

776+

"openclaw.content.tool_output": expect.anything(),

777+

}),

778+

startTime: expect.any(Number),

779+

});

780+

await service.stop?.(ctx);

781+

});

782+783+

test("exports bounded redacted content when capture fields are opted in", async () => {

784+

const service = createDiagnosticsOtelService();

785+

const ctx = createOtelContext(OTEL_TEST_ENDPOINT, {

786+

traces: true,

787+

metrics: true,

788+

captureContent: {

789+

enabled: true,

790+

inputMessages: true,

791+

outputMessages: true,

792+

toolInputs: true,

793+

toolOutputs: true,

794+

systemPrompt: true,

795+

},

796+

});

797+

await service.start(ctx);

798+799+

emitDiagnosticEvent({

800+

type: "model.call.completed",

801+

runId: "run-1",

802+

callId: "call-1",

803+

provider: "openai",

804+

model: "gpt-5.4",

805+

durationMs: 80,

806+

inputMessages: ["use key sk-1234567890abcdef1234567890abcdef"], // pragma: allowlist secret

807+

outputMessages: ["model reply"],

808+

systemPrompt: "system prompt",

809+

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

810+

emitDiagnosticEvent({

811+

type: "tool.execution.completed",

812+

runId: "run-1",

813+

toolName: "read",

814+

toolCallId: "tool-1",

815+

durationMs: 20,

816+

toolInput: "tool input",

817+

toolOutput: "x".repeat(6000),

818+

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

819+

await flushDiagnosticEvents();

820+821+

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

822+

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

823+

);

824+

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

825+

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

826+

);

827+

const modelAttrs = (modelCall?.[1] as { attributes?: Record<string, unknown> } | undefined)

828+

?.attributes;

829+

const toolAttrs = (toolCall?.[1] as { attributes?: Record<string, unknown> } | undefined)

830+

?.attributes;

831+832+

expect(modelAttrs).toMatchObject({

833+

"openclaw.content.output_messages": "model reply",

834+

"openclaw.content.system_prompt": "system prompt",

835+

});

836+

expect(String(modelAttrs?.["openclaw.content.input_messages"])).not.toContain(

837+

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

838+

);

839+

expect(toolAttrs).toMatchObject({

840+

"openclaw.content.tool_input": "tool input",

841+

});

842+

expect(String(toolAttrs?.["openclaw.content.tool_output"]).length).toBeLessThanOrEqual(

843+

MAX_TEST_OTEL_CONTENT_ATTRIBUTE_CHARS + OTEL_TRUNCATED_SUFFIX_MAX_CHARS,

844+

);

845+

await service.stop?.(ctx);

846+

});

847+726848

test("ignores invalid diagnostic event trace parents", async () => {

727849

const service = createDiagnosticsOtelService();

728850

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