From: Bruce Momjian Date: Thu, 29 May 2025 01:42:34 +0000 (-0400) Subject: doc: clarify log_connections new "setup_durations" output X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=089f27cf8aa4716acc5601abce4b14a372c8569e;p=thirdparty%2Fpostgresql.git doc: clarify log_connections new "setup_durations" output --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index ca2a567b2b1..f4a0191c55b 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -7527,12 +7527,12 @@ local0.* /var/log/postgresql setup_durations Logs the time spent establishing the connection and setting up the - backend at the time the connection is ready to execute its first - query. The log message includes the total setup duration, starting - from the postmaster accepting the incoming connection and ending - when the connection is ready for query. It also includes the time - it took to fork the new backend and the time it took to - authenticate the user. + backend until the connection is ready to execute its first + query. The log message includes three durations: the total + setup duration (starting from the postmaster accepting the + incoming connection and ending when the connection is ready + for query), the time it took to fork the new backend, and + the time it took to authenticate the user.