mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Rename track_iotiming GUC to track_io_timing.
This spelling seems significantly more readable to me.
This commit is contained in:
@ -4288,10 +4288,10 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="guc-track-iotiming" xreflabel="track_iotiming">
|
||||
<term><varname>track_iotiming</varname> (<type>boolean</type>)</term>
|
||||
<varlistentry id="guc-track-io-timing" xreflabel="track_io_timing">
|
||||
<term><varname>track_io_timing</varname> (<type>boolean</type>)</term>
|
||||
<indexterm>
|
||||
<primary><varname>track_iotiming</> configuration parameter</primary>
|
||||
<primary><varname>track_io_timing</> configuration parameter</primary>
|
||||
</indexterm>
|
||||
<listitem>
|
||||
<para>
|
||||
@ -4299,7 +4299,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
|
||||
default, because it will repeatedly query the operating system for
|
||||
the current time, which may cause significant overhead on some
|
||||
platforms. You can use the <xref linkend="pgtesttiming"> tool to
|
||||
measure the overhead of timing on your system. Timing information is
|
||||
measure the overhead of timing on your system.
|
||||
I/O timing information is
|
||||
displayed in <xref linkend="pg-stat-database-view">, in the output of
|
||||
<xref linkend="sql-explain"> when the <literal>BUFFERS</> option is
|
||||
used, and by <xref linkend="pgstatstatements">. Only superusers can
|
||||
|
@ -155,7 +155,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The parameter <xref linkend="guc-track-iotiming"> enables monitoring
|
||||
The parameter <xref linkend="guc-track-io-timing"> enables monitoring
|
||||
of block read and write times.
|
||||
</para>
|
||||
|
||||
|
@ -161,7 +161,7 @@
|
||||
<entry></entry>
|
||||
<entry>
|
||||
Total time the statement spent reading blocks, in milliseconds
|
||||
(if <xref linkend="guc-track-iotiming"> is enabled, otherwise zero)
|
||||
(if <xref linkend="guc-track-io-timing"> is enabled, otherwise zero)
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
@ -171,7 +171,7 @@
|
||||
<entry></entry>
|
||||
<entry>
|
||||
Total time the statement spent writing blocks, in milliseconds
|
||||
(if <xref linkend="guc-track-iotiming"> is enabled, otherwise zero)
|
||||
(if <xref linkend="guc-track-io-timing"> is enabled, otherwise zero)
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
|
Reference in New Issue
Block a user