npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ahmedhegazee/nestjs-telescope

v1.0.0

Published

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

Readme

🚀 NestJS Telescope v1.0.0

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

NPM Version NPM Downloads Build Status Coverage Status License

✨ Features

🔍 Core Monitoring

  • Request Watcher: HTTP request/response monitoring with performance metrics
  • Query Watcher: Database query analysis with optimization suggestions
  • Exception Watcher: Comprehensive error tracking with stack trace analysis
  • Job Watcher: Background job monitoring with Bull/BullMQ integration
  • Cache Watcher: Redis/Memory cache performance monitoring

🤖 ML-Powered Analytics

  • Anomaly Detection: Statistical algorithms for detecting unusual patterns
  • Performance Regression: Trend analysis and degradation detection
  • Query Optimization: ML-based database optimization suggestions
  • Predictive Insights: Forecasting performance and resource usage
  • Automated Alerting: Intelligent alert generation and management

🏢 Enterprise Features

  • Multi-Tenant Support: Complete tenant isolation and resource management
  • Advanced Security: SSO, OAuth2, SAML, LDAP integration
  • Role-Based Access Control: Granular permissions and policies
  • Compliance: GDPR, SOX, HIPAA, PCI compliance monitoring
  • Custom Branding: White-label capabilities and theme customization

Production Ready

  • Horizontal Scaling: Distributed deployment with load balancing
  • Advanced Caching: Multi-tier caching with intelligent eviction
  • Database Optimization: Query optimization and indexing strategies
  • Memory Management: Garbage collection and leak detection
  • Performance Benchmarking: Comprehensive load testing suite

🔧 Developer Experience

  • TypeScript First: Full type safety and IntelliSense support
  • Comprehensive Testing: Unit, integration, and performance tests
  • Rich Documentation: API docs, examples, and migration guides
  • Easy Integration: Simple setup with minimal configuration
  • Extensible Architecture: Plugin-based watcher system

📦 Installation

Prerequisites

  • Node.js >= 18.0.0
  • npm >= 8.0.0
  • NestJS >= 10.0.0

Install the Package

npm install ahmedhegazee/nestjs-telescope

Install Optional Dependencies

For full functionality, install these optional dependencies:

# Database support
npm install @nestjs/typeorm typeorm pg mysql2 sqlite3

# Job queue support
npm install @nestjs/bull bull

# Cache support
npm install redis

# Security features
npm install bcryptjs jsonwebtoken passport passport-jwt passport-oauth2

# Email notifications
npm install nodemailer

# Slack notifications
npm install @slack/web-api

# PDF generation
npm install pdf-lib puppeteer

# Excel export
npm install exceljs

# Compression
npm install compression

# Rate limiting
npm install express-rate-limit express-slow-down

# Security headers
npm install helmet cors

🚀 Quick Start

1. Basic Setup

import { Module } from '@nestjs/common';
import { TelescopeModule } from 'ahmedhegazee/nestjs-telescope';

@Module({
  imports: [
    TelescopeModule.forRoot({
      enabled: true,
      storage: {
        driver: 'file',
        path: './telescope-storage'
      },
      watchers: {
        request: true,
        query: true,
        exception: true,
        job: true,
        cache: true
      }
    })
  ]
})
export class AppModule {}

2. Advanced Configuration

import { Module } from '@nestjs/common';
import { TelescopeModule } from 'ahmedhegazee/nestjs-telescope';

@Module({
  imports: [
    TelescopeModule.forRoot({
      enabled: true,
      
      // Storage Configuration
      storage: {
        driver: 'database',
        database: {
          type: 'postgresql',
          host: 'localhost',
          port: 5432,
          database: 'telescope',
          username: 'user',
          password: 'password'
        },
        retention: {
          hours: 24,
          maxEntries: 10000
        }
      },

      // Watchers Configuration
      watchers: {
        request: {
          enabled: true,
          sampling: 100, // 100% sampling
          maskSensitiveData: true,
          excludePaths: ['/health', '/metrics'],
          logSuccessfulResponseBodies: false
        },
        query: {
          enabled: true,
          slowQueryThreshold: 1000, // 1 second
          connectionPoolMonitoring: true,
          enableQueryAnalysis: true
        },
        exception: {
          enabled: true,
          grouping: true,
          stackTraceAnalysis: true,
          enableSourceMaps: true,
          maxStackTraceDepth: 10
        },
        job: {
          enabled: true,
          queueMonitoring: true,
          performanceTracking: true,
          enableJobHistory: true
        },
        cache: {
          enabled: true,
          hitRatioTracking: true,
          memoryUsageMonitoring: true,
          enableCacheAnalysis: true
        }
      },

      // ML Analytics Configuration
      mlAnalytics: {
        enabled: true,
        anomalyDetection: true,
        performanceRegression: true,
        queryOptimization: true,
        predictiveInsights: true,
        dataRetention: 30 // days
      },

      // Alerting Configuration
      alerting: {
        enabled: true,
        channels: {
          email: {
            enabled: true,
            smtp: {
              host: 'smtp.gmail.com',
              port: 587,
              secure: false,
              auth: {
                user: '[email protected]',
                pass: 'your-password'
              }
            }
          },
          slack: {
            enabled: true,
            webhookUrl: 'https://hooks.slack.com/services/YOUR/WEBHOOK/URL'
          }
        }
      },

      // Enterprise Features
      enterpriseSecurity: {
        enabled: true,
        authentication: {
          enabled: true,
          methods: ['jwt', 'oauth2']
        },
        authorization: {
          enabled: true,
          rbac: true,
          abac: true
        }
      },

      multiTenant: {
        enabled: true,
        isolation: {
          strategy: 'database',
          databasePrefix: 'telescope_'
        }
      },

      // DevTools Integration
      devtools: {
        enabled: true,
        port: 3001,
        features: {
          dependencyGraph: true,
          interactivePlayground: true,
          performanceMetrics: true
        }
      }
    })
  ]
})
export class AppModule {}

3. Environment Variables

Create a .env file in your project root:

# Telescope Configuration
TELESCOPE_ENABLED=true
TELESCOPE_STORAGE_DRIVER=database
TELESCOPE_STORAGE_DATABASE_URL=postgresql://user:pass@localhost:5432/telescope

# Security
JWT_SECRET=your-super-secret-jwt-key
JWT_EXPIRES_IN=1h

# Email Configuration
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
[email protected]
SMTP_PASS=your-app-password

# Slack Configuration
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL

# Redis Configuration
REDIS_URL=redis://localhost:6379

# Database Configuration
DATABASE_URL=postgresql://user:pass@localhost:5432/telescope

📊 Dashboard

Access the Telescope dashboard at http://localhost:3000/telescope to view:

  • Real-time Metrics: Live performance and error monitoring
  • Analytics Dashboard: ML-powered insights and trends
  • Query Analysis: Database performance and optimization suggestions
  • Job Monitoring: Background job status and performance
  • Cache Analytics: Hit ratios and memory usage
  • Security Audit: Compliance and security monitoring

🔧 API Reference

Core Services

TelescopeService

import { TelescopeService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class MyService {
  constructor(private telescopeService: TelescopeService) {}

  async recordEntry(entry: TelescopeEntry) {
    await this.telescopeService.record(entry);
  }

  async findEntries(filter: TelescopeFilter) {
    return await this.telescopeService.find(filter);
  }

  async getMetrics() {
    return await this.telescopeService.getMetrics();
  }
}

MLAnalyticsService

import { MLAnalyticsService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class AnalyticsService {
  constructor(private mlAnalytics: MLAnalyticsService) {}

  async getAnomalies() {
    return await this.mlAnalytics.getAnomalies();
  }

  async getPredictiveInsights() {
    return await this.mlAnalytics.getPredictiveInsights();
  }

  async getQueryOptimizations() {
    return await this.mlAnalytics.getQueryOptimizations();
  }
}

AutomatedAlertingService

import { AutomatedAlertingService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class AlertService {
  constructor(private alerting: AutomatedAlertingService) {}

  async createAlert(alert: AlertRule) {
    return await this.alerting.createAlert(alert);
  }

  async getAlertHistory() {
    return await this.alerting.getAlertHistory();
  }
}

Controllers

Health Controller

GET /telescope/health
GET /telescope/health/detailed
GET /telescope/health/metrics

Analytics Controller

GET /telescope/analytics/anomalies
GET /telescope/analytics/predictions
GET /telescope/analytics/optimizations
POST /telescope/analytics/query

Alerting Controller

GET /telescope/alerts
POST /telescope/alerts
PUT /telescope/alerts/:id
DELETE /telescope/alerts/:id

🏢 Enterprise Features

Multi-Tenant Support

import { MultiTenantService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class TenantService {
  constructor(private multiTenantService: MultiTenantService) {}

  async createTenant() {
    // Tenant provisioning
    const tenant = await this.multiTenantService.provisionTenant({
      name: 'Acme Corp',
      slug: 'acme-corp',
      plan: 'enterprise',
      metadata: {
        industry: 'technology',
        size: 'enterprise'
      }
    });

    // Tenant-specific configuration
    await this.multiTenantService.updateTenantConfiguration(tenant.id, {
      features: {
        mlAnalytics: true,
        alerting: true
      },
      settings: {
        dataRetention: 365,
        samplingRate: 100
      }
    });

    return tenant;
  }
}

Advanced Security

import { EnterpriseSecurityService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class SecurityService {
  constructor(private securityService: EnterpriseSecurityService) {}

  async authenticate() {
    // Authentication
    const authResult = await this.securityService.authenticate({
      method: 'oauth2',
      code: 'authorization_code'
    });

    return authResult;
  }

  async authorize(userId: string, action: string, resource: string) {
    // Authorization
    const authzResult = await this.securityService.authorize(
      userId,
      action,
      resource,
      { ipAddress: '192.168.1.1' }
    );

    return authzResult;
  }

  async getComplianceReport() {
    // Compliance monitoring
    const compliance = await this.securityService.generateComplianceReport();
    return compliance;
  }
}

Custom Branding

import { MultiTenantService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class BrandingService {
  constructor(private multiTenantService: MultiTenantService) {}

  async updateBranding(tenantId: string) {
    await this.multiTenantService.updateTenantBranding(tenantId, {
      logo: 'https://example.com/logo.png',
      primaryColor: '#007bff',
      secondaryColor: '#6c757d',
      companyName: 'Acme Corporation',
      theme: 'dark'
    });
  }
}

⚡ Performance & Scaling

Horizontal Scaling

import { HorizontalScalingService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class ScalingService {
  constructor(private scalingService: HorizontalScalingService) {}

  async configureScaling() {
    // Enable horizontal scaling
    const scalingConfig = {
      enabled: true,
      clusterMode: true,
      discovery: {
        method: 'redis',
        interval: 30000
      },
      loadBalancing: {
        strategy: 'least-loaded',
        healthCheckInterval: 10000
      }
    };

    return scalingConfig;
  }
}

Advanced Caching

import { AdvancedCachingService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class CacheService {
  constructor(private cacheService: AdvancedCachingService) {}

  async configureCaching() {
    // Multi-tier caching
    const cacheConfig = {
      tiers: {
        l1: { type: 'memory', maxSize: 100, ttl: 300000 },
        l2: { type: 'redis', ttl: 3600000 },
        l3: { type: 'database', ttl: 86400000 }
      },
      strategies: {
        writePolicy: 'write-through',
        readPolicy: 'read-through',
        evictionPolicy: 'lru'
      }
    };

    return cacheConfig;
  }
}

Database Optimization

import { DatabaseOptimizerService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class DatabaseService {
  constructor(private dbOptimizer: DatabaseOptimizerService) {}

  async optimizeQuery(query: string) {
    // Query optimization
    const optimization = await this.dbOptimizer.optimizeQuery(query);
    return optimization;
  }

  async getIndexSuggestions() {
    // Index suggestions
    const suggestions = await this.dbOptimizer.getIndexSuggestions();
    return suggestions;
  }
}

🧪 Testing

Unit Tests

npm test

Integration Tests

npm run test:e2e

Performance Tests

npm run test:performance

Load Testing

npm run benchmark

🚀 Deployment

Docker

FROM node:18-alpine

WORKDIR /app

COPY package*.json ./
RUN npm ci --only=production

COPY dist ./dist
COPY node_modules ./node_modules

EXPOSE 3000

CMD ["node", "dist/main.js"]
# Build and run
docker build -t nestjs-telescope .
docker run -p 3000:3000 nestjs-telescope

Docker Compose

version: '3.8'

services:
  telescope:
    build: .
    ports:
      - "3000:3000"
    environment:
      - NODE_ENV=production
      - DATABASE_URL=postgresql://user:pass@postgres:5432/telescope
      - REDIS_URL=redis://redis:6379
    depends_on:
      - postgres
      - redis

  postgres:
    image: postgres:15
    environment:
      POSTGRES_DB: telescope
      POSTGRES_USER: user
      POSTGRES_PASSWORD: pass
    volumes:
      - postgres_data:/var/lib/postgresql/data

  redis:
    image: redis:7-alpine
    volumes:
      - redis_data:/data

volumes:
  postgres_data:
  redis_data:

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: telescope
spec:
  replicas: 3
  selector:
    matchLabels:
      app: telescope
  template:
    metadata:
      labels:
        app: telescope
    spec:
      containers:
      - name: telescope
        image: nestjs/telescope:latest
        ports:
        - containerPort: 3000
        env:
        - name: NODE_ENV
          value: "production"
        - name: DATABASE_URL
          valueFrom:
            secretKeyRef:
              name: telescope-secrets
              key: database-url
        resources:
          requests:
            memory: "256Mi"
            cpu: "250m"
          limits:
            memory: "512Mi"
            cpu: "500m"

📈 Monitoring & Observability

Metrics

Telescope exposes Prometheus metrics at /telescope/metrics:

// Custom metrics
const metrics = {
  requests_total: 1000,
  requests_duration_seconds: 0.5,
  errors_total: 10,
  cache_hit_ratio: 0.85,
  database_connections: 5
};

Health Checks

// Health check endpoints
GET /telescope/health
GET /telescope/health/ready
GET /telescope/health/live

Logging

// Structured logging
this.logger.log('Request processed', {
  userId: '123',
  duration: 150,
  status: 'success',
  metadata: { endpoint: '/api/users' }
});

🔒 Security

Authentication

// JWT Authentication
const token = jwt.sign(
  { userId: '123', roles: ['admin'] },
  process.env.JWT_SECRET,
  { expiresIn: '1h' }
);

// OAuth2 Integration
const oauthConfig = {
  providers: {
    google: {
      clientId: process.env.GOOGLE_CLIENT_ID,
      clientSecret: process.env.GOOGLE_CLIENT_SECRET
    }
  }
};

Authorization

// Role-based access control
@Roles('admin')
@Permissions('telescope:read', 'telescope:write')
export class TelescopeController {
  // Controller methods
}

// Policy-based authorization
const policy = {
  id: 'admin-access',
  type: 'allow',
  resources: ['telescope:*'],
  actions: ['*'],
  conditions: [
    { field: 'roles', operator: 'contains', value: 'admin' }
  ]
};

Data Protection

// Data encryption
const encrypted = await securityService.encrypt(sensitiveData);
const decrypted = await securityService.decrypt(encrypted);

// Data masking
const maskedData = {
  email: 'u***@e***.com',
  phone: '+1-***-***-1234',
  ssn: '***-**-1234'
};

📚 Examples

Basic Monitoring

import { Controller, Get } from '@nestjs/common';
import { TelescopeService } from 'ahmedhegazee/nestjs-telescope';

@Controller('users')
export class UsersController {
  constructor(private telescopeService: TelescopeService) {}

  @Get()
  async getUsers() {
    // Telescope automatically monitors this request
    return await this.userService.findAll();
  }
}

Custom Watcher

import { Injectable } from '@nestjs/common';
import { Watcher, TelescopeEntry } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class CustomWatcher implements Watcher {
  async process(entry: TelescopeEntry): Promise<void> {
    // Custom processing logic
    console.log('Custom watcher processed:', entry);
  }
}

ML Analytics Integration

import { Injectable } from '@nestjs/common';
import { MLAnalyticsService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class AnalyticsService {
  constructor(private mlAnalytics: MLAnalyticsService) {}

  async analyzePerformance() {
    const anomalies = await this.mlAnalytics.getAnomalies();
    const predictions = await this.mlAnalytics.getPredictiveInsights();
    
    return { anomalies, predictions };
  }
}

Alerting

import { Injectable } from '@nestjs/common';
import { AutomatedAlertingService } from 'ahmedhegazee/nestjs-telescope';

@Injectable()
export class AlertService {
  constructor(private alerting: AutomatedAlertingService) {}

  async setupAlerts() {
    await this.alerting.createAlert({
      name: 'High Error Rate',
      condition: 'error_rate > 0.05',
      channels: ['email', 'slack'],
      severity: 'high'
    });
  }
}

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

# Clone the repository
git clone https://github.com/ahmedhegazee/nestjs-telescope.git
cd nestjs-telescope

# Install dependencies
npm install

# Run tests
npm test

# Start development server
npm run start:dev

Code Style

We use ESLint and Prettier for code formatting:

npm run lint
npm run format

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

📞 Support


Made with ❤️ by Ahmed Hegazy