Urara-Blog/node_modules/.pnpm-store/v3/files/69/877b4f453fc42fafa97479f22f7af445df193e8885888275c3d729e4cc1dabfe65369dd69d632568c0362f773ed388f6ed50795cd2a384fed9271796672d19
2022-08-14 01:14:53 +08:00

19 lines
669 B
Text

import Pool = require("./pool")
export = PoolStats
declare class PoolStats {
constructor(pool: Pool);
/** Number of open socket connections in this pool. */
connected: number;
/** Number of open socket connections in this pool that do not have an active request. */
free: number;
/** Number of pending requests across all clients in this pool. */
pending: number;
/** Number of queued requests across all clients in this pool. */
queued: number;
/** Number of currently active requests across all clients in this pool. */
running: number;
/** Number of active, pending, or queued requests across all clients in this pool. */
size: number;
}