diff options
author | Bruce Momjian <bruce@momjian.us> | 2025-05-28 21:42:34 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2025-05-28 21:42:34 -0400 |
commit | 089f27cf8aa4716acc5601abce4b14a372c8569e (patch) | |
tree | ab2d08c7339c81f5aca8c9454a4af3c85cb5428e /doc/src | |
parent | bf6034d00dd4c7e82fe281df5a22c8e49ad76dde (diff) | |
download | postgresql-089f27cf8aa4716acc5601abce4b14a372c8569e.tar.gz postgresql-089f27cf8aa4716acc5601abce4b14a372c8569e.zip |
doc: clarify log_connections new "setup_durations" output
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 12 |
1 files changed, 6 insertions, 6 deletions
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 <entry><literal>setup_durations</literal></entry> <entry> 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. </entry> </row> |