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

推荐订阅源

小众软件
小众软件
C
Check Point Blog
Vercel News
Vercel News
Y
Y Combinator Blog
G
Google Developers Blog
P
Proofpoint News Feed
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
N
Netflix TechBlog - Medium
L
LangChain Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
博客园_首页
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security 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
fix(ui): use precise hourly message counts for Peak Error...
konanok · 2026-04-29 · via Recent Commits to openclaw:main

@@ -38,6 +38,7 @@ import type {

3838

SessionLogEntry,

3939

SessionMessageCounts,

4040

SessionModelUsage,

41+

SessionUtcQuarterHourMessageCounts,

4142

SessionToolUsage,

4243

SessionUsageTimePoint,

4344

SessionUsageTimeSeries,

@@ -57,6 +58,7 @@ export type {

5758

SessionLogEntry,

5859

SessionMessageCounts,

5960

SessionModelUsage,

61+

SessionUtcQuarterHourMessageCounts,

6062

SessionToolUsage,

6163

SessionUsageTimePoint,

6264

SessionUsageTimeSeries,

@@ -165,6 +167,39 @@ const parseTranscriptEntry = (entry: Record<string, unknown>): ParsedTranscriptE

165167

const formatDayKey = (date: Date): string =>

166168

date.toLocaleDateString("en-CA", { timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone });

167169170+

const formatUtcDayKey = (date: Date): string =>

171+

`${date.getUTCFullYear()}-${String(date.getUTCMonth() + 1).padStart(2, "0")}-${String(date.getUTCDate()).padStart(2, "0")}`;

172+173+

/**

174+

* Accumulate message-level counts into a bucket (daily or UTC quarter-hour).

175+

* Avoids duplicating the same logic for both daily and quarter-hour message counts.

176+

*/

177+

const accumulateMessageCounts = (

178+

bucket: {

179+

total: number;

180+

user: number;

181+

assistant: number;

182+

toolCalls: number;

183+

toolResults: number;

184+

errors: number;

185+

},

186+

entry: ParsedTranscriptEntry,

187+

errorStopReasons: Set<string>,

188+

) => {

189+

bucket.total += entry.role === "user" || entry.role === "assistant" ? 1 : 0;

190+

if (entry.role === "user") {

191+

bucket.user += 1;

192+

} else if (entry.role === "assistant") {

193+

bucket.assistant += 1;

194+

}

195+

bucket.toolCalls += entry.toolNames.length;

196+

bucket.toolResults += entry.toolResultCounts.total;

197+

bucket.errors += entry.toolResultCounts.errors;

198+

if (entry.stopReason && errorStopReasons.has(entry.stopReason)) {

199+

bucket.errors += 1;

200+

}

201+

};

202+168203

const computeLatencyStats = (values: number[]): SessionLatencyStats | undefined => {

169204

if (!values.length) {

170205

return undefined;

@@ -572,6 +607,7 @@ export async function loadSessionCostSummary(params: {

572607

const activityDatesSet = new Set<string>();

573608

const dailyMap = new Map<string, { tokens: number; cost: number }>();

574609

const dailyMessageMap = new Map<string, SessionDailyMessageCounts>();

610+

const utcQuarterHourMessageMap = new Map<string, SessionUtcQuarterHourMessageCounts>();

575611

const dailyLatencyMap = new Map<string, number[]>();

576612

const dailyModelUsageMap = new Map<string, SessionDailyModelUsage>();

577613

const messageCounts: SessionMessageCounts = {

@@ -669,19 +705,27 @@ export async function loadSessionCostSummary(params: {

669705

toolResults: 0,

670706

errors: 0,

671707

};

672-

daily.total += entry.role === "user" || entry.role === "assistant" ? 1 : 0;

673-

if (entry.role === "user") {

674-

daily.user += 1;

675-

} else if (entry.role === "assistant") {

676-

daily.assistant += 1;

677-

}

678-

daily.toolCalls += entry.toolNames.length;

679-

daily.toolResults += entry.toolResultCounts.total;

680-

daily.errors += entry.toolResultCounts.errors;

681-

if (entry.stopReason && errorStopReasons.has(entry.stopReason)) {

682-

daily.errors += 1;

683-

}

708+

accumulateMessageCounts(daily, entry, errorStopReasons);

684709

dailyMessageMap.set(dayKey, daily);

710+711+

// Per-quarter-hour message counts for precise hourly stats (UTC-based)

712+

const quarterIndex = Math.floor(

713+

(entry.timestamp.getUTCHours() * 60 + entry.timestamp.getUTCMinutes()) / 15,

714+

);

715+

const utcDayKey = formatUtcDayKey(entry.timestamp);

716+

const quarterKey = `${utcDayKey}::${quarterIndex}`;

717+

const utcQuarterHour = utcQuarterHourMessageMap.get(quarterKey) ?? {

718+

date: utcDayKey,

719+

quarterIndex,

720+

total: 0,

721+

user: 0,

722+

assistant: 0,

723+

toolCalls: 0,

724+

toolResults: 0,

725+

errors: 0,

726+

};

727+

accumulateMessageCounts(utcQuarterHour, entry, errorStopReasons);

728+

utcQuarterHourMessageMap.set(quarterKey, utcQuarterHour);

685729

}

686730687731

if (!entry.usage) {

@@ -767,6 +811,10 @@ export async function loadSessionCostSummary(params: {

767811

dailyMessageMap.values(),

768812

).toSorted((a, b) => a.date.localeCompare(b.date));

769813814+

const utcQuarterHourMessageCounts: SessionUtcQuarterHourMessageCounts[] = Array.from(

815+

utcQuarterHourMessageMap.values(),

816+

).toSorted((a, b) => a.date.localeCompare(b.date) || a.quarterIndex - b.quarterIndex);

817+770818

const dailyLatency: SessionDailyLatency[] = Array.from(dailyLatencyMap.entries())

771819

.map(([date, values]) => {

772820

const stats = computeLatencyStats(values);

@@ -814,6 +862,9 @@ export async function loadSessionCostSummary(params: {

814862

activityDates: Array.from(activityDatesSet).toSorted(),

815863

dailyBreakdown,

816864

dailyMessageCounts,

865+

utcQuarterHourMessageCounts: utcQuarterHourMessageCounts.length

866+

? utcQuarterHourMessageCounts

867+

: undefined,

817868

dailyLatency: dailyLatency.length ? dailyLatency : undefined,

818869

dailyModelUsage: dailyModelUsage.length ? dailyModelUsage : undefined,

819870

messageCounts,