source: node_modules/undici/types/pool-stats.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 669 bytes
Line 
1import Pool from "./pool"
2
3export default PoolStats
4
5declare class PoolStats {
6 constructor(pool: Pool);
7 /** Number of open socket connections in this pool. */
8 connected: number;
9 /** Number of open socket connections in this pool that do not have an active request. */
10 free: number;
11 /** Number of pending requests across all clients in this pool. */
12 pending: number;
13 /** Number of queued requests across all clients in this pool. */
14 queued: number;
15 /** Number of currently active requests across all clients in this pool. */
16 running: number;
17 /** Number of active, pending, or queued requests across all clients in this pool. */
18 size: number;
19}
Note: See TracBrowser for help on using the repository browser.