UNPKG

@ahmedhegazee/nestjs-telescope

Version:

Advanced observability and monitoring solution for NestJS applications with ML-powered analytics, enterprise features, and production-ready scaling

17 lines (16 loc) 495 B
export interface QueryWatcherConfig { enabled: boolean; priority?: number; tags?: string[]; dependencies?: string[]; slowQueryThreshold: number; verySlowQueryThreshold: number; enableStackTrace: boolean; enableQueryAnalysis: boolean; enableOptimizationHints: boolean; maxQueryLength: number; excludeQueries: string[]; sampleRate: number; connectionPoolMonitoring: boolean; } export declare const defaultQueryWatcherConfig: QueryWatcherConfig;