UNPKG

logs-interceptor

Version:

High-performance, production-ready log interceptor for Node.js applications with Loki integration. Built with Clean Architecture principles. Supports Node.js, Browser, and Node-RED.

9 lines 291 B
/** * Infrastructure: SamplingService * Implements log sampling strategies */ import { ISamplingService } from './ISamplingService'; export declare class SamplingService implements ISamplingService { shouldSample(rate: number): boolean; } //# sourceMappingURL=SamplingService.d.ts.map