diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 65ab95be370..f55f38cb85b 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -8568,7 +8568,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; - Enables timing of database I/O calls. This parameter is off by + Enables timing of database I/O waits. This parameter is off by default, as it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. You can use the tool to @@ -8602,7 +8602,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; - Enables timing of WAL I/O calls. This parameter is off by default, + Enables timing of WAL I/O waits. This parameter is off by default, as it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. You can use the pg_test_timing tool to diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index bacc09cb8af..a6d67d2fbaa 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -2747,7 +2747,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage read_time double precision - Time spent in read operations in milliseconds (if + Time spent waiting for read operations in milliseconds (if is enabled and object is not wal, or if is enabled @@ -2785,7 +2785,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage write_time double precision - Time spent in write operations in milliseconds (if + Time spent waiting for write operations in milliseconds (if is enabled and object is not wal, or if is enabled @@ -2813,7 +2813,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage writeback_time double precision - Time spent in writeback operations in milliseconds (if + Time spent waiting for writeback operations in milliseconds (if is enabled, otherwise zero). This includes the time spent queueing write-out requests and, potentially, the time spent to write out the dirty data. @@ -2849,7 +2849,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage extend_time double precision - Time spent in extend operations in milliseconds. (if + Time spent waiting for extend operations in milliseconds. (if is enabled and object is not wal, or if is enabled @@ -2923,7 +2923,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage fsync_time double precision - Time spent in fsync operations in milliseconds (if + Time spent waiting for fsync operations in milliseconds (if is enabled and object is not wal, or if is enabled @@ -3010,7 +3010,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage - Columns tracking I/O time will only be non-zero when + Columns tracking I/O wait time will only be non-zero when is enabled. The user should be careful when referencing these columns in combination with their corresponding I/O operations in case track_io_timing