From: Bruce Momjian Date: Fri, 10 Apr 2009 03:13:36 +0000 (+0000) Subject: Document how *_blks_read statistics columns are computed. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=248a8da2f6c35fc62d97b0842902af182814e25c;p=users%2Fsimon%2Fpostgres.git Document how *_blks_read statistics columns are computed. --- diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 9dfc0578d4..4b0c4999cd 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -927,8 +927,9 @@ postgres: user database host pg_stat_get_blocks_fetched minus pg_stat_get_blocks_hit gives the number of kernel read() calls issued for the table, index, or - database; but the actual number of physical reads is usually - lower due to kernel-level buffering. + database; the number of actual physical reads is usually + lower due to kernel-level buffering. The *_blks_read + statistics columns uses this subtraction, i.e. fetched minus hit.