Defined in: src/tollgate/policy/types.ts:223
const healthConfig: HealthCheckConfig = { enabled: true, intervalMs: 15000, // Check every 15 seconds timeoutMs: 3000, // 3 second timeout per check failureThreshold: 2 // Mark unhealthy after 2 failures };
optional enabled: boolean;
optional failureThreshold: number;
optional intervalMs: number;
optional timeoutMs: number;