From: Bruce Momjian <bruce@momjian.us>
Date: Thu, 9 Apr 2009 22:32:02 +0000 (+0000)
Subject: Clarify documentation references to pg_stat_get_blocks_fetched and
X-Git-Tag: REL8_4_BETA1~2
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4af189db39e3b14f95d797ba6a98b02d461b16e;p=postgresql

Clarify documentation references to pg_stat_get_blocks_fetched and
pg_stat_get_blocks_hit, per suggestion from Robert Haas.
---

diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index e93560baec..acfccc4c99 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/monitoring.sgml,v 1.66 2009/03/28 00:10:23 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/monitoring.sgml,v 1.67 2009/04/09 22:32:02 momjian Exp $ -->
 
 <chapter id="monitoring">
  <title>Monitoring Database Activity</title>
@@ -924,8 +924,8 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
 
    <note>
     <para>
-     <function>blocks_fetched</function> minus
-     <function>blocks_hit</function> gives the number of kernel
+     <function>pg_stat_get_blocks_fetched</function> minus
+     <function>pg_stat_get_blocks_hit</function> gives the number of kernel
      <function>read()</> calls issued for the table, index, or
      database; but the actual number of physical reads is usually
      lower due to kernel-level buffering.