From: Marko Kreen Date: Sun, 28 Oct 2012 16:41:37 +0000 (+0200) Subject: Improve description of pooling states X-Git-Tag: pgbouncer_1_5_4~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3a26f1961302d01573bdd263baf16f0ad3fe7d6;p=pgbouncer Improve description of pooling states --- diff --git a/doc/usage.txt b/doc/usage.txt index 3d544cb..556f9e6 100644 --- a/doc/usage.txt +++ b/doc/usage.txt @@ -279,28 +279,30 @@ database:: Database name. user:: - Username. + User name. cl_active:: - Count of currently +active+ client connections. + Client connections that are linked to server connection and can process queries. cl_waiting:: - Count of currently +waiting+ client connections. + Client connections have sent queries but have not yet got a server connection. sv_active:: - Count of currently +active+ server connections. + Server connections that linked to client. sv_idle:: - Count of currently +idle+ server connections. + Server connections that unused and immediately usable for client queries. sv_used:: - Count of currently +used+ server connections. + Server connections that have been idle more than `server_check_delay`, + so they needs `server_check_query` to run on it before it can be used. sv_tested:: - Count of currently +tested+ server connections. + Server connections that are currently running either `server_reset_query` + or `server_check_query`. sv_login:: - Count of server connections currently +logged in+ to PostgreSQL. + Server connections currently in logging in process. maxwait:: How long the first (oldest) client in queue has waited, in seconds.