aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2012-04-05 11:50:06 -0400
committerRobert Haas <rhaas@postgresql.org>2012-04-05 11:50:06 -0400
commit97e26dc66d47624bdbdee1dbd007a0f4212defcb (patch)
treecc48ffd264a352f89ab3231dc9c4199a0c721e32 /doc/src
parent644828908fb132ee1f1da5b8b7975c0d73d6158a (diff)
downloadpostgresql-97e26dc66d47624bdbdee1dbd007a0f4212defcb.tar.gz
postgresql-97e26dc66d47624bdbdee1dbd007a0f4212defcb.zip
Correctly explain units used by function-timing stats functions.
The views are in milliseconds, but the raw functions return microseconds.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/monitoring.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 013dd335a4a..ed8aeb20c60 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -1654,7 +1654,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<entry><type>bigint</></entry>
<entry>Total time spent in this functions and all other functions
called by it, in milliseconds.
- This value can also be returned by directly calling
+ The same value can be returned in microseconds by directly calling
the <function>pg_stat_get_function_time</function> function.</entry>
</row>
<row>
@@ -1662,7 +1662,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<entry><type>bigint</></entry>
<entry>Total time spent in this functions itself but not including
other functions called by it, in milliseconds.
- This value can also be returned by directly calling
+ The same value can be returned in microseconds by directly calling
the <function>pg_stat_get_function_self_time</function> function.</entry>
</row>
</tbody>