/** Loadbalancer statistics */
export interface Stats {
    /** Number of currently active connections */
    activeConnections: number;
    /** Total bytes received */
    bytesIn: number;
    /** Total bytes sent */
    bytesOut: number;
    /** Total requests that were unable to be fulfilled */
    requestErrors: number;
    /** Total connections handled */
    totalConnections: number;
}
//# sourceMappingURL=Stats.d.ts.map