@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 430 B
TypeScript
/** 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