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

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point 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(diagnostics): bound diagnostic buffers · openclaw/ope...
vincentkoc · 2026-05-22 · via Recent Commits to openclaw:main

@@ -612,6 +612,17 @@ export type DiagnosticTelemetryExporterEvent = DiagnosticBaseEvent & {

612612

errorCategory?: string;

613613

};

614614615+

export type DiagnosticAsyncQueueDroppedEvent = DiagnosticBaseEvent & {

616+

type: "diagnostic.async_queue.dropped";

617+

droppedEvents: number;

618+

droppedTrustedEvents?: number;

619+

droppedUntrustedEvents?: number;

620+

droppedPriorityEvents?: number;

621+

queueLength: number;

622+

maxQueueLength: number;

623+

drainBatchSize: number;

624+

};

625+615626

export type DiagnosticEventPayload =

616627

| DiagnosticUsageEvent

617628

| DiagnosticWebhookReceivedEvent

@@ -660,6 +671,7 @@ export type DiagnosticEventPayload =

660671

| DiagnosticPayloadLargeEvent

661672

| DiagnosticLogRecordEvent

662673

| DiagnosticTelemetryExporterEvent

674+

| DiagnosticAsyncQueueDroppedEvent

663675

| DiagnosticFailoverEvent;

664676665677

export type DiagnosticEventInput = DiagnosticEventPayload extends infer Event

@@ -690,6 +702,10 @@ type DiagnosticEventsGlobalState = {

690702

dispatchDepth: number;

691703

asyncQueue: QueuedDiagnosticEvent[];

692704

asyncDrainScheduled: boolean;

705+

asyncDroppedEvents: number;

706+

asyncDroppedTrustedEvents: number;

707+

asyncDroppedUntrustedEvents: number;

708+

asyncDroppedPriorityEvents: number;

693709

};

694710695711

const MAX_ASYNC_DIAGNOSTIC_EVENTS = 10_000;

@@ -731,6 +747,10 @@ function createDiagnosticEventsState(): DiagnosticEventsGlobalState {

731747

dispatchDepth: 0,

732748

asyncQueue: [],

733749

asyncDrainScheduled: false,

750+

asyncDroppedEvents: 0,

751+

asyncDroppedTrustedEvents: 0,

752+

asyncDroppedUntrustedEvents: 0,

753+

asyncDroppedPriorityEvents: 0,

734754

};

735755

}

736756

@@ -754,6 +774,10 @@ function getDiagnosticEventsState(): DiagnosticEventsGlobalState {

754774

const globalRecord = globalThis as Record<PropertyKey, unknown>;

755775

const existing = globalRecord[DIAGNOSTIC_EVENTS_STATE_KEY];

756776

if (isDiagnosticEventsState(existing)) {

777+

existing.asyncDroppedEvents ??= 0;

778+

existing.asyncDroppedTrustedEvents ??= 0;

779+

existing.asyncDroppedUntrustedEvents ??= 0;

780+

existing.asyncDroppedPriorityEvents ??= 0;

757781

return existing;

758782

}

759783

const state = createDiagnosticEventsState();

@@ -834,15 +858,31 @@ function isPriorityAsyncDiagnosticEvent(entry: QueuedDiagnosticEvent): boolean {

834858

return entry.metadata.trusted && PRIORITY_ASYNC_DIAGNOSTIC_EVENT_TYPES.has(entry.event.type);

835859

}

836860837-

function makeRoomForPriorityAsyncDiagnosticEvent(state: DiagnosticEventsGlobalState): void {

861+

function noteAsyncDiagnosticDrop(

862+

state: DiagnosticEventsGlobalState,

863+

entry: QueuedDiagnosticEvent,

864+

): void {

865+

state.asyncDroppedEvents += 1;

866+

if (entry.metadata.trusted) {

867+

state.asyncDroppedTrustedEvents += 1;

868+

} else {

869+

state.asyncDroppedUntrustedEvents += 1;

870+

}

871+

if (isPriorityAsyncDiagnosticEvent(entry)) {

872+

state.asyncDroppedPriorityEvents += 1;

873+

}

874+

}

875+876+

function makeRoomForPriorityAsyncDiagnosticEvent(

877+

state: DiagnosticEventsGlobalState,

878+

): QueuedDiagnosticEvent | undefined {

838879

const nonPriorityIndex = state.asyncQueue.findIndex(

839880

(entry) => !isPriorityAsyncDiagnosticEvent(entry),

840881

);

841882

if (nonPriorityIndex >= 0) {

842-

state.asyncQueue.splice(nonPriorityIndex, 1);

843-

return;

883+

return state.asyncQueue.splice(nonPriorityIndex, 1)[0];

844884

}

845-

state.asyncQueue.shift();

885+

return state.asyncQueue.shift();

846886

}

847887848888

function deepFreezeDiagnosticValue(value: unknown, seen = new WeakSet<object>()): unknown {

@@ -878,8 +918,35 @@ function scheduleAsyncDiagnosticDrain(state: DiagnosticEventsGlobalState): void

878918

}

879919

if (state.asyncQueue.length > 0) {

880920

scheduleAsyncDiagnosticDrain(state);

921+

return;

881922

}

923+

dispatchAsyncDiagnosticDropSummary(state);

924+

});

925+

}

926+927+

function dispatchAsyncDiagnosticDropSummary(state: DiagnosticEventsGlobalState): void {

928+

if (state.asyncDroppedEvents <= 0) {

929+

return;

930+

}

931+

const droppedEvents = state.asyncDroppedEvents;

932+

const droppedTrustedEvents = state.asyncDroppedTrustedEvents;

933+

const droppedUntrustedEvents = state.asyncDroppedUntrustedEvents;

934+

const droppedPriorityEvents = state.asyncDroppedPriorityEvents;

935+

state.asyncDroppedEvents = 0;

936+

state.asyncDroppedTrustedEvents = 0;

937+

state.asyncDroppedUntrustedEvents = 0;

938+

state.asyncDroppedPriorityEvents = 0;

939+

const event = enrichDiagnosticEvent(state, {

940+

type: "diagnostic.async_queue.dropped",

941+

droppedEvents,

942+

...(droppedTrustedEvents > 0 ? { droppedTrustedEvents } : {}),

943+

...(droppedUntrustedEvents > 0 ? { droppedUntrustedEvents } : {}),

944+

...(droppedPriorityEvents > 0 ? { droppedPriorityEvents } : {}),

945+

queueLength: state.asyncQueue.length,

946+

maxQueueLength: MAX_ASYNC_DIAGNOSTIC_EVENTS,

947+

drainBatchSize: MAX_ASYNC_DIAGNOSTIC_EVENTS_PER_TURN,

882948

});

949+

dispatchDiagnosticEvent(state, event, { trusted: false });

883950

}

884951885952

export async function waitForDiagnosticEventsDrained(): Promise<void> {

@@ -919,9 +986,13 @@ function emitDiagnosticEventWithTrust(event: DiagnosticEventInput, trusted: bool

919986

if (ASYNC_DIAGNOSTIC_EVENT_TYPES.has(enriched.type)) {

920987

if (state.asyncQueue.length >= MAX_ASYNC_DIAGNOSTIC_EVENTS) {

921988

if (!trusted || !PRIORITY_ASYNC_DIAGNOSTIC_EVENT_TYPES.has(enriched.type)) {

989+

noteAsyncDiagnosticDrop(state, { event: enriched, metadata });

922990

return;

923991

}

924-

makeRoomForPriorityAsyncDiagnosticEvent(state);

992+

const droppedEntry = makeRoomForPriorityAsyncDiagnosticEvent(state);

993+

if (droppedEntry) {

994+

noteAsyncDiagnosticDrop(state, droppedEntry);

995+

}

925996

}

926997

state.asyncQueue.push({ event: enriched, metadata });

927998

scheduleAsyncDiagnosticDrain(state);

@@ -999,4 +1070,8 @@ export function resetDiagnosticEventsForTest(): void {

9991070

state.dispatchDepth = 0;

10001071

state.asyncQueue = [];

10011072

state.asyncDrainScheduled = false;

1073+

state.asyncDroppedEvents = 0;

1074+

state.asyncDroppedTrustedEvents = 0;

1075+

state.asyncDroppedUntrustedEvents = 0;

1076+

state.asyncDroppedPriorityEvents = 0;

10021077

}