Implement real-time stats tracking including connection counts, request metrics, bandwidth usage, and route-specific monitoring. Adds MetricsCollector with observable streams for reactive monitoring integration.
8 lines
266 B
TypeScript
8 lines
266 B
TypeScript
/**
|
|
* SmartProxy models
|
|
*/
|
|
// Export everything except IAcmeOptions from interfaces
|
|
export type { ISmartProxyOptions, IConnectionRecord, TSmartProxyCertProvisionObject } from './interfaces.js';
|
|
export * from './route-types.js';
|
|
export * from './metrics-types.js';
|