ai-debug-local-mcp
Version:
🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh
49 lines • 1.43 kB
JavaScript
/**
* V2 Stability Types - Comprehensive type definitions for advanced stability monitoring
*/
/**
* V2 Default Stability Configuration
*/
export const V2_STABILITY_DEFAULTS = {
monitoringIntervalMs: 30000, // 30 seconds
healthCheckIntervalMs: 60000, // 1 minute
circuitBreaker: {
failureThreshold: 5,
recoveryTimeoutMs: 60000, // 1 minute
halfOpenMaxAttempts: 3,
successThreshold: 2
},
alerts: {
cpuThreshold: 80, // 80%
memoryThresholdMB: 512, // 512MB
errorRateThreshold: 0.05, // 5%
responseTimeThreshold: 5000, // 5 seconds
diskUsageThreshold: 85 // 85%
},
autoRecovery: {
enabled: true,
maxAttempts: 3,
cooldownMs: 300000, // 5 minutes
criticalOnlyMode: false
},
performance: {
trendAnalysisWindow: 3600000, // 1 hour
performanceThresholds: {
minThroughput: 10, // 10 requests/second
maxLatency: 2000, // 2 seconds
minAvailability: 95, // 95%
minReliability: 90, // 90%
minScalability: 70 // 70%
}
},
httpTransport: {
maxConnectionsPerSession: 10,
requestTimeoutMs: 30000, // 30 seconds
retryAttempts: 3,
rateLimit: {
windowMs: 60000, // 1 minute
maxRequests: 100
}
}
};
//# sourceMappingURL=v2-stability-types.js.map