On Mon, Apr 26, 2021 at 11:34:16AM +0900, Michael Paquier wrote: > +++ b/doc/src/sgml/config.sgml > @@ -7596,6 +7596,24 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' > WITH csv; > </listitem> > </varlistentry> > > + <varlistentry id="guc-track-activity-authn-size" > xreflabel="track_activity_authn_size"> > + <term><varname>track_activity_authn_size</varname> > (<type>integer</type>) > + <indexterm> > + <primary><varname>track_activity_authn_size</varname> configuration > parameter</primary> > + </indexterm> > + </term> > + <listitem> > + <para> > + Specifies the amount of memory reserved to store the text of the > + currently executing command for each active session, for the
That part looks to be a copy+paste error. > + > <structname>pg_stat_activity</structname>.<structfield>authenticated_id</structfield> > field. > + If this value is specified without units, it is taken as bytes. > + The default value is 128 bytes. > + This parameter can only be set at server start. > + </para> > + </listitem> > + </varlistentry> I think many/most things in log/CSV should also go in PSA, and vice versa. It seems like there should be a comment about this - in both places - to avoid forgetting it in the future. -- Justin