aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-02-27 18:03:49 -0500
committerBruce Momjian <bruce@momjian.us>2011-02-27 18:04:22 -0500
commitc11f1f714b6983e011cc4639cf669151d587e8c2 (patch)
treebecdb3342c91a300b238740b986c2f5d13c0da91
parent22690719ea5a89ccbcd04deb58c83d8d5f138df8 (diff)
downloadpostgresql-c11f1f714b6983e011cc4639cf669151d587e8c2.tar.gz
postgresql-c11f1f714b6983e011cc4639cf669151d587e8c2.zip
Document that last vacuum statistics and counts are for non-FULL vacuums.
-rw-r--r--doc/src/sgml/monitoring.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 2dc1bfc19c7..aaa613e988a 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -325,11 +325,11 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
scans, numbers of row insertions, updates, and deletions,
number of row updates that were HOT (i.e., no separate index update),
numbers of live and dead rows,
- the last time the table was vacuumed manually,
+ the last time the table was non-<option>FULL</> vacuumed manually,
the last time it was vacuumed by the autovacuum daemon,
the last time it was analyzed manually,
the last time it was analyzed by the autovacuum daemon,
- number of times it has been vacuumed manually,
+ number of times it has been non-<option>FULL</> vacuumed manually,
number of times it has been vacuumed by the autovacuum daemon,
number of times it has been analyzed manually,
and the number of times it has been analyzed by the autovacuum daemon.
@@ -781,7 +781,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
<entry><literal><function>pg_stat_get_last_vacuum_time</function>(<type>oid</type>)</literal></entry>
<entry><type>timestamptz</type></entry>
<entry>
- Time of the last vacuum initiated by the user on this table
+ Time of the last non-<option>FULL</option> vacuum initiated by the user on this table
</entry>
</row>
@@ -814,7 +814,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
<entry><literal><function>pg_stat_get_vacuum_count</function>(<type>oid</type>)</literal></entry>
<entry><type>bigint</type></entry>
<entry>
- The number of times this table has been vacuumed manually
+ The number of times this table has been non-<option>FULL</> vacuumed manually
</entry>
</row>