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

推荐订阅源

J
Java Code Geeks
M
MIT News - Artificial intelligence
D
Docker
S
SegmentFault 最新的问题
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
C
Check Point Blog
GbyAI
GbyAI
美团技术团队
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog

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
perf: trim gateway runtime hotspots · openclaw/openclaw@2...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,106 @@

1+

#!/usr/bin/env node

2+

import fs from "node:fs";

3+

import path from "node:path";

4+

import process from "node:process";

5+6+

const DEFAULT_LIMIT = 30;

7+8+

function parseArgs(argv) {

9+

const files = [];

10+

let limit = DEFAULT_LIMIT;

11+

for (let index = 0; index < argv.length; index += 1) {

12+

const arg = argv[index];

13+

if (arg === "--limit") {

14+

const raw = argv[index + 1];

15+

index += 1;

16+

const parsed = Number.parseInt(raw ?? "", 10);

17+

if (Number.isFinite(parsed) && parsed > 0) {

18+

limit = parsed;

19+

}

20+

continue;

21+

}

22+

files.push(arg);

23+

}

24+

return { files, limit };

25+

}

26+27+

function formatUrl(url) {

28+

if (!url) {

29+

return "(native)";

30+

}

31+

const cwdPrefix = `${process.cwd()}${path.sep}`;

32+

return url

33+

.replace(/^file:\/\//u, "")

34+

.replace(cwdPrefix, "")

35+

.replace(/^.*\/node_modules\//u, "node_modules/")

36+

.replace(/^.*\/dist\//u, "dist/");

37+

}

38+39+

function groupUrl(url) {

40+

const formatted = formatUrl(url);

41+

if (formatted.startsWith("node:")) {

42+

return formatted.split(":").slice(0, 2).join(":");

43+

}

44+

if (formatted.startsWith("node_modules/")) {

45+

return formatted.split("/").slice(0, 3).join("/");

46+

}

47+

if (formatted.startsWith("dist/")) {

48+

return formatted.split("/").slice(0, 2).join("/");

49+

}

50+

return formatted;

51+

}

52+53+

function add(map, key, micros) {

54+

map.set(key, (map.get(key) ?? 0) + micros);

55+

}

56+57+

function summarizeProfile(file, limit) {

58+

const profile = JSON.parse(fs.readFileSync(file, "utf8"));

59+

const nodes = new Map(profile.nodes.map((node) => [node.id, node]));

60+

const samples = Array.isArray(profile.samples) ? profile.samples : [];

61+

const deltas = Array.isArray(profile.timeDeltas) ? profile.timeDeltas : [];

62+

const byFrame = new Map();

63+

const byModule = new Map();

64+65+

for (let index = 0; index < samples.length; index += 1) {

66+

const node = nodes.get(samples[index]);

67+

if (!node) {

68+

continue;

69+

}

70+

const frame = node.callFrame ?? {};

71+

const micros = deltas[index] ?? 1000;

72+

const url = formatUrl(frame.url ?? "");

73+

const line =

74+

typeof frame.lineNumber === "number" && frame.lineNumber >= 0

75+

? `:${frame.lineNumber + 1}`

76+

: "";

77+

const functionName = frame.functionName || "(anonymous)";

78+

add(byFrame, `${functionName}\t${url}${line}`, micros);

79+

add(byModule, groupUrl(frame.url ?? ""), micros);

80+

}

81+82+

const durationMs = ((profile.endTime ?? 0) - (profile.startTime ?? 0)) / 1000;

83+

console.log(`\n${file}`);

84+

console.log(`duration_ms: ${durationMs.toFixed(1)} samples: ${samples.length}`);

85+

console.log("top_frames:");

86+

for (const [key, micros] of [...byFrame.entries()]

87+

.sort((left, right) => right[1] - left[1])

88+

.slice(0, limit)) {

89+

console.log(`${(micros / 1000).toFixed(1)}ms\t${key}`);

90+

}

91+

console.log("top_modules:");

92+

for (const [key, micros] of [...byModule.entries()]

93+

.sort((left, right) => right[1] - left[1])

94+

.slice(0, limit)) {

95+

console.log(`${(micros / 1000).toFixed(1)}ms\t${key}`);

96+

}

97+

}

98+99+

const { files, limit } = parseArgs(process.argv.slice(2));

100+

if (files.length === 0) {

101+

console.error("usage: scripts/perf/summarize-cpuprofile.mjs [--limit N] <profile...>");

102+

process.exit(2);

103+

}

104+

for (const file of files) {

105+

summarizeProfile(file, limit);

106+

}