UNPKG

@ahmedhegazee/nestjs-telescope

Version:

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

24 lines (23 loc) 490 B
export interface TelescopeEntry { id: string; type: string; familyHash: string; content: Record<string, any>; tags: string[]; timestamp: Date; sequence: number; batchId?: string; } export interface TelescopeEntryFilter { type?: string; tags?: string[]; dateFrom?: Date; dateTo?: Date; limit?: number; offset?: number; } export interface TelescopeEntryResult { entries: TelescopeEntry[]; total: number; hasMore: boolean; }