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

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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(discord): surface stalled transport health (#76327) ·...
joshavant · 2026-05-03 · via Recent Commits to openclaw:main

@@ -14,6 +14,11 @@ import { getRuntimeConfig } from "../config/config.js";

1414

import { resolveStorePath } from "../config/sessions/paths.js";

1515

import type { OpenClawConfig } from "../config/types.openclaw.js";

1616

import { buildGatewayConnectionDetails, callGateway } from "../gateway/call.js";

17+

import {

18+

DEFAULT_CHANNEL_CONNECT_GRACE_MS,

19+

DEFAULT_CHANNEL_STALE_EVENT_THRESHOLD_MS,

20+

evaluateChannelHealth,

21+

} from "../gateway/channel-health-policy.js";

1722

import type { ChannelRuntimeSnapshot } from "../gateway/server-channel-runtime.types.js";

1823

import { info } from "../globals.js";

1924

import { isTruthyEnvValue } from "../infra/env.js";

@@ -92,6 +97,20 @@ const formatDurationParts = (ms: number): string => {

9297

return parts.join(" ");

9398

};

9499100+

function formatEventLoopHealthLine(summary: HealthSummary): string | null {

101+

const eventLoop = summary.eventLoop;

102+

if (!eventLoop) {

103+

return null;

104+

}

105+

const state = eventLoop.degraded ? "degraded" : "ok";

106+

const reasons = eventLoop.reasons.length > 0 ? ` reasons=${eventLoop.reasons.join(",")}` : "";

107+

return `Gateway event loop: ${state}${reasons} max=${Math.round(

108+

eventLoop.delayMaxMs,

109+

)}ms p99=${Math.round(eventLoop.delayP99Ms)}ms util=${eventLoop.utilization} cpu=${

110+

eventLoop.cpuCoreRatio

111+

}`;

112+

}

113+95114

const resolveHeartbeatSummary = (cfg: OpenClawConfig, agentId: string) =>

96115

resolveHeartbeatSummaryForAgent(cfg, agentId);

97116

@@ -307,6 +326,7 @@ export async function getHealthSnapshot(params?: {

307326

probe?: boolean;

308327

includeSensitive?: boolean;

309328

runtimeSnapshot?: ChannelRuntimeSnapshot;

329+

eventLoop?: HealthSummary["eventLoop"];

310330

}): Promise<HealthSummary> {

311331

const timeoutMs = params?.timeoutMs;

312332

const cfg = getRuntimeConfig();

@@ -432,6 +452,15 @@ export async function getHealthSnapshot(params?: {

432452

if (lastProbeAt) {

433453

snapshot.lastProbeAt = lastProbeAt;

434454

}

455+

const health = evaluateChannelHealth(snapshot, {

456+

channelId: plugin.id,

457+

now: Date.now(),

458+

staleEventThresholdMs: DEFAULT_CHANNEL_STALE_EVENT_THRESHOLD_MS,

459+

channelConnectGraceMs: DEFAULT_CHANNEL_CONNECT_GRACE_MS,

460+

});

461+

if (!health.healthy) {

462+

snapshot.healthState = health.reason;

463+

}

435464436465

const summary = plugin.status?.buildChannelSummary

437466

? await plugin.status.buildChannelSummary({

@@ -483,6 +512,7 @@ export async function getHealthSnapshot(params?: {

483512

ok: true,

484513

ts: Date.now(),

485514

durationMs: Date.now() - start,

515+

...(params?.eventLoop ? { eventLoop: params.eventLoop } : {}),

486516

...(pluginHealth ? { plugins: pluginHealth } : {}),

487517

channels,

488518

channelOrder,

@@ -667,6 +697,10 @@ export async function healthCommand(

667697

for (const line of channelLines) {

668698

runtime.log(styleHealthChannelLine(line, rich));

669699

}

700+

const eventLoopLine = formatEventLoopHealthLine(summary);

701+

if (eventLoopLine) {

702+

runtime.log(styleHealthChannelLine(eventLoopLine, rich));

703+

}

670704

for (const plugin of displayPlugins) {

671705

const channelSummary = summary.channels?.[plugin.id];

672706

if (!channelSummary || channelSummary.linked !== true) {