gateway: wire channel health monitor into startup with configurable interval

This commit is contained in:
David Szarzynski
2026-02-12 11:47:26 +07:00
committed by Peter Steinberger
parent 497e2d76ad
commit 30ee12e40a
2 changed files with 17 additions and 0 deletions

View File

@@ -312,4 +312,10 @@ export type GatewayConfig = {
trustedProxies?: string[];
/** Tool access restrictions for HTTP /tools/invoke endpoint. */
tools?: GatewayToolsConfig;
/**
* Channel health monitor interval in minutes.
* Periodically checks channel health and restarts unhealthy channels.
* Set to 0 to disable. Default: 5.
*/
channelHealthCheckMinutes?: number;
};