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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
IT之家
IT之家
博客园 - 聂微东
The Cloudflare Blog
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
H
Help Net Security
博客园 - 叶小钗
V
V2EX
WordPress大学
WordPress大学
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
C
Check Point Blog
B
Blog
D
DataBreaches.Net
美团技术团队
罗磊的独立博客

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): chain run traces to request scope · ope...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

File tree

  • src

    • agents/pi-embedded-runner/run

    • infra

Original file line numberDiff line numberDiff line change

@@ -12,8 +12,8 @@ import { filterHeartbeatPairs } from "../../../auto-reply/heartbeat-filter.js";

1212

import { resolveChannelCapabilities } from "../../../config/channel-capabilities.js";

1313

import { emitTrustedDiagnosticEvent } from "../../../infra/diagnostic-events.js";

1414

import {

15-

createDiagnosticTraceContext,

1615

createChildDiagnosticTraceContext,

16+

createDiagnosticTraceContextFromActiveScope,

1717

freezeDiagnosticTraceContext,

1818

} from "../../../infra/diagnostic-trace-context.js";

1919

import { isEmbeddedMode } from "../../../infra/embedded-mode.js";

@@ -648,7 +648,9 @@ export async function runEmbeddedAttempt(

648648

const sessionLabel = params.sessionKey ?? params.sessionId;

649649

const contextInjectionMode = resolveContextInjectionMode(params.config);

650650

const agentDir = params.agentDir ?? resolveOpenClawAgentDir();

651-

const diagnosticTrace = freezeDiagnosticTraceContext(createDiagnosticTraceContext());

651+

const diagnosticTrace = freezeDiagnosticTraceContext(

652+

createDiagnosticTraceContextFromActiveScope(),

653+

);

652654

const runTrace = freezeDiagnosticTraceContext(

653655

createChildDiagnosticTraceContext(diagnosticTrace),

654656

);

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@ import { afterEach, describe, expect, it } from "vitest";

22

import {

33

createChildDiagnosticTraceContext,

44

createDiagnosticTraceContext,

5+

createDiagnosticTraceContextFromActiveScope,

56

freezeDiagnosticTraceContext,

67

formatDiagnosticTraceparent,

78

getActiveDiagnosticTraceContext,

@@ -158,4 +159,31 @@ describe("diagnostic-trace-context", () => {

158159
159160

expect(getActiveDiagnosticTraceContext()).toBeUndefined();

160161

});

162+
163+

it("creates child trace contexts from the active request scope", () => {

164+

const requestTrace = createDiagnosticTraceContext({

165+

traceId: TRACE_ID,

166+

spanId: SPAN_ID,

167+

traceFlags: "00",

168+

});

169+
170+

runWithDiagnosticTraceContext(requestTrace, () => {

171+

const scoped = createDiagnosticTraceContextFromActiveScope({

172+

spanId: CHILD_SPAN_ID,

173+

});

174+
175+

expect(scoped).toEqual({

176+

traceId: TRACE_ID,

177+

spanId: CHILD_SPAN_ID,

178+

parentSpanId: SPAN_ID,

179+

traceFlags: "00",

180+

});

181+

});

182+
183+

expect(createDiagnosticTraceContextFromActiveScope({ spanId: CHILD_SPAN_ID })).toEqual({

184+

traceId: expect.stringMatching(/^[0-9a-f]{32}$/),

185+

spanId: CHILD_SPAN_ID,

186+

traceFlags: "01",

187+

});

188+

});

161189

});

Original file line numberDiff line numberDiff line change

@@ -198,6 +198,16 @@ export function createChildDiagnosticTraceContext(

198198

});

199199

}

200200
201+

export function createDiagnosticTraceContextFromActiveScope(

202+

input: Omit<DiagnosticTraceContextInput, "traceId" | "traceparent"> = {},

203+

): DiagnosticTraceContext {

204+

const active = getActiveDiagnosticTraceContext();

205+

if (!active) {

206+

return createDiagnosticTraceContext(input);

207+

}

208+

return createChildDiagnosticTraceContext(active, input);

209+

}

210+
201211

export function freezeDiagnosticTraceContext(

202212

context: DiagnosticTraceContext,

203213

): DiagnosticTraceContext {