Skip to content

Database connection pool status.

GET
/api/db_pool_status

Pool statistics.

object
pool_type

Pool implementation (aiomysql or pymysql_sync).

string
mysql_pool_size

Configured pool size.

integer
minsize

Min connections (aiomysql).

integer
nullable
maxsize

Max connections.

integer
nullable
size

Current pool size (aiomysql).

integer
nullable
freesize

Free connections (aiomysql).

integer
nullable
created

Created connections (sync).

integer
nullable
available

Available connections (sync).

integer
nullable
free_slots

Remaining slots (sync).

integer
nullable