UNPKG

@ahmedhegazee/nestjs-telescope

Version:

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

30 lines (29 loc) 2.5 kB
export { TelescopeModule } from './telescope/telescope.module'; export { TelescopeService } from './telescope/core/services/telescope.service'; export * from './telescope/core/interfaces/telescope-config.interface'; export * from './telescope/core/interfaces/telescope-entry.interface'; export { EntryManagerService } from './telescope/core/services/entry-manager.service'; export { EnhancedEntryManagerService } from './telescope/core/services/enhanced-entry-manager.service'; export { MetricsService } from './telescope/core/services/metrics.service'; export { AnalyticsService } from './telescope/core/services/analytics.service'; export { PerformanceCorrelationService } from './telescope/core/services/performance-correlation.service'; export { ExportReportingService } from './telescope/core/services/export-reporting.service'; export { MLAnalyticsService } from './telescope/core/services/ml-analytics.service'; export { AutomatedAlertingService } from './telescope/core/services/automated-alerting.service'; export { HorizontalScalingService } from './telescope/core/services/horizontal-scaling.service'; export { AdvancedCachingService } from './telescope/core/services/advanced-caching.service'; export { DatabaseOptimizerService } from './telescope/core/services/database-optimizer.service'; export { MemoryOptimizerService } from './telescope/core/services/memory-optimizer.service'; export { EnterpriseSecurityService } from './telescope/core/services/enterprise-security.service'; export { MultiTenantService } from './telescope/core/services/multi-tenant.service'; export { WatcherRegistryService } from './telescope/watchers/watcher-registry.service'; export { RequestWatcherService } from './telescope/watchers/request/request-watcher.service'; export { QueryWatcherService } from './telescope/watchers/query/query-watcher.service'; export { ExceptionWatcherService } from './telescope/watchers/exception/exception-watcher.service'; export { JobWatcherService } from './telescope/watchers/job/job-watcher.service'; export { CacheWatcherService } from './telescope/watchers/cache/cache-watcher.service'; export { StorageService } from './telescope/storage/storage.service'; export { StorageManagerService } from './telescope/storage/storage-manager.service'; export * from './telescope/watchers/interfaces/watcher.interface'; export * from './telescope/storage/interfaces/storage.interface'; export { defaultTelescopeConfig } from './telescope/core/interfaces/telescope-config.interface';