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

推荐订阅源

H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
L
LangChain Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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): surface provider request id hashes · o...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -1,5 +1,19 @@

1+

import crypto from "node:crypto";

2+13

const HTTP_STATUS_MIN = 100;

24

const HTTP_STATUS_MAX = 599;

5+

const REQUEST_ID_HASH_PREFIX_LEN = 12;

6+

const PROVIDER_REQUEST_ID_KEYS = [

7+

"upstreamRequestId",

8+

"providerRequestId",

9+

"requestId",

10+

"request_id",

11+

] as const;

12+

const PROVIDER_REQUEST_ID_RE = /^[A-Za-z0-9._:-]{1,128}$/u;

13+

const PROVIDER_REQUEST_ID_TEXT_PATTERNS = [

14+

/\b(?:x-request-id|request-id|request_id|requestId|trace-id|trace_id)\b["'\s:=([]+([A-Za-z0-9._:-]{1,128})/i,

15+

/\((?:request_id|trace_id)\s*:\s*([A-Za-z0-9._:-]{1,128})\)/i,

16+

] as const;

317418

function isObjectLike(value: unknown): value is object {

519

return (typeof value === "object" || typeof value === "function") && value !== null;

@@ -17,6 +31,25 @@ function readOwnDataProperty(value: unknown, key: string): unknown {

1731

}

1832

}

193334+

function findDiagnosticErrorProperty<T>(

35+

err: unknown,

36+

reader: (candidate: unknown) => T | undefined,

37+

seen: Set<object> = new Set(),

38+

): T | undefined {

39+

const direct = reader(err);

40+

if (direct !== undefined) {

41+

return direct;

42+

}

43+

if (!isObjectLike(err) || seen.has(err)) {

44+

return undefined;

45+

}

46+

seen.add(err);

47+

return (

48+

findDiagnosticErrorProperty(readOwnDataProperty(err, "error"), reader, seen) ??

49+

findDiagnosticErrorProperty(readOwnDataProperty(err, "cause"), reader, seen)

50+

);

51+

}

52+2053

function isHttpStatusCode(value: unknown): value is number {

2154

return (

2255

typeof value === "number" &&

@@ -26,6 +59,61 @@ function isHttpStatusCode(value: unknown): value is number {

2659

);

2760

}

286162+

function normalizeProviderRequestId(value: unknown): string | undefined {

63+

if (typeof value === "string") {

64+

const trimmed = value.trim();

65+

return PROVIDER_REQUEST_ID_RE.test(trimmed) ? trimmed : undefined;

66+

}

67+

if (typeof value === "number" && Number.isFinite(value)) {

68+

const normalized = String(value);

69+

return PROVIDER_REQUEST_ID_RE.test(normalized) ? normalized : undefined;

70+

}

71+

if (typeof value === "bigint") {

72+

const normalized = String(value);

73+

return PROVIDER_REQUEST_ID_RE.test(normalized) ? normalized : undefined;

74+

}

75+

return undefined;

76+

}

77+78+

function hashDiagnosticIdentifier(value: string): string {

79+

return `sha256:${crypto

80+

.createHash("sha256")

81+

.update(value)

82+

.digest("hex")

83+

.slice(0, REQUEST_ID_HASH_PREFIX_LEN)}`;

84+

}

85+86+

function readDirectProviderRequestId(err: unknown): string | undefined {

87+

for (const key of PROVIDER_REQUEST_ID_KEYS) {

88+

const normalized = normalizeProviderRequestId(readOwnDataProperty(err, key));

89+

if (normalized) {

90+

return normalized;

91+

}

92+

}

93+

return undefined;

94+

}

95+96+

function readDirectMessage(err: unknown): string | undefined {

97+

if (typeof err === "string") {

98+

return err;

99+

}

100+

const message = readOwnDataProperty(err, "message");

101+

return typeof message === "string" ? message : undefined;

102+

}

103+104+

function extractProviderRequestIdFromText(text: string | undefined): string | undefined {

105+

if (!text) {

106+

return undefined;

107+

}

108+

for (const pattern of PROVIDER_REQUEST_ID_TEXT_PATTERNS) {

109+

const normalized = normalizeProviderRequestId(text.match(pattern)?.[1]);

110+

if (normalized) {

111+

return normalized;

112+

}

113+

}

114+

return undefined;

115+

}

116+29117

export function diagnosticErrorCategory(err: unknown): string {

30118

try {

31119

if (err instanceof TypeError) {

@@ -69,3 +157,14 @@ export function diagnosticHttpStatusCode(err: unknown): string | undefined {

69157

}

70158

return undefined;

71159

}

160+161+

export function diagnosticProviderRequestIdHash(err: unknown): string | undefined {

162+

const fromProperty = findDiagnosticErrorProperty(err, readDirectProviderRequestId);

163+

if (fromProperty) {

164+

return hashDiagnosticIdentifier(fromProperty);

165+

}

166+

const fromMessage = findDiagnosticErrorProperty(err, (candidate) =>

167+

extractProviderRequestIdFromText(readDirectMessage(candidate)),

168+

);

169+

return fromMessage ? hashDiagnosticIdentifier(fromMessage) : undefined;

170+

}