diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 0f19aeace39..8477784e889 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1,4 +1,4 @@ - + Monitoring Database Activity @@ -487,7 +487,7 @@ postgres: user database host pg_stat_get_db_xact_commit(oid) bigint - Transactions committed in database + Number of transactions committed in database @@ -495,7 +495,7 @@ postgres: user database host pg_stat_get_db_xact_rollback(oid) bigint - Transactions rolled back in database + Number of transactions rolled back in database @@ -696,7 +696,7 @@ postgres: user database host NULL is specified. The fields returned are the same as in the - pg_stat_activity view + pg_stat_activity view. @@ -704,7 +704,7 @@ postgres: user database host pg_stat_get_function_calls(oid) bigint - Number of times the function has been called. + Number of times the function has been called @@ -731,7 +731,7 @@ postgres: user database host setof integer Set of currently active server process numbers (from 1 to the - number of active server processes). See usage example in the text + number of active server processes). See usage example in the text. @@ -820,8 +820,8 @@ postgres: user database host inet The IP address of the client connected to the given - server process. Null if the connection is over a Unix domain - socket. Also null if the current user is not a superuser nor + server process; null if the connection is over a Unix domain + socket, also null if the current user is not a superuser nor the same user as that of the session being queried @@ -831,8 +831,8 @@ postgres: user database host integer The TCP port number of the client connected to the given - server process. -1 if the connection is over a Unix domain - socket. Null if the current user is not a superuser nor the + server process; -1 if the connection is over a Unix domain + socket, null if the current user is not a superuser nor the same user as that of the session being queried @@ -841,7 +841,7 @@ postgres: user database host pg_stat_get_bgwriter_timed_checkpoints() bigint - The number of times the background writer has started timed checkpoints + Number of times the background writer has started timed checkpoints (because the checkpoint_timeout time has expired) @@ -850,7 +850,7 @@ postgres: user database host pg_stat_get_bgwriter_requested_checkpoints() bigint - The number of times the background writer has started checkpoints based + Number of times the background writer has started checkpoints based on requests from backends because the checkpoint_segments has been exceeded or because the CHECKPOINT command has been issued @@ -861,7 +861,7 @@ postgres: user database host pg_stat_get_bgwriter_buf_written_checkpoints() bigint - The number of buffers written by the background writer during checkpoints + Number of buffers written by the background writer during checkpoints @@ -869,7 +869,7 @@ postgres: user database host pg_stat_get_bgwriter_buf_written_clean() bigint - The number of buffers written by the background writer for routine cleaning of + Number of buffers written by the background writer for routine cleaning of dirty pages @@ -878,7 +878,7 @@ postgres: user database host pg_stat_get_bgwriter_maxwritten_clean() bigint - The number of times the background writer has stopped its cleaning scan because + Number of times the background writer has stopped its cleaning scan because it has written more buffers than specified in the bgwriter_lru_maxpages parameter @@ -888,7 +888,7 @@ postgres: user database host pg_stat_get_buf_written_backend() bigint - The number of buffers written by backends because they needed + Number of buffers written by backends because they needed to allocate a new buffer @@ -897,7 +897,7 @@ postgres: user database host pg_stat_get_buf_alloc() bigint - The total number of buffer allocations + Total number of buffer allocations @@ -1101,19 +1101,19 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS procpid, transaction-start (LocalTransactionId) Probe that fires at the start of a new transaction. - arg0 is the transaction id. + arg0 is the transaction ID. transaction-commit (LocalTransactionId) Probe that fires when a transaction completes successfully. - arg0 is the transaction id. + arg0 is the transaction ID. transaction-abort (LocalTransactionId) Probe that fires when a transaction completes unsuccessfully. - arg0 is the transaction id. + arg0 is the transaction ID. query-start