diff options
author | Fujii Masao <fujii@postgresql.org> | 2020-02-17 16:16:08 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2020-02-17 16:16:08 +0900 |
commit | f4ae7221413d5176e4d5a49883217ea87312104a (patch) | |
tree | 66044267ccdccb3b8f497eedf859fe461a52a5a8 /doc/src | |
parent | e593148d43adb8ef1721ccd987046c02f4532920 (diff) |
Add description about GSSOpenServer wait event into document.
This commit also updates wait event enum into alphabetical order.
Previously the enum entry for GSSOpenServer was added out-of-order.
Back-patch to v12 where commit b0b39f72b9 introduced
GSSOpenServer wait event. In v12, the commit doesn't include
the update of wait event enum, not to break ABI.
Author: Fujii Masao
Reviewed-by: Michael Paquier
Discussion: https://postgr.es/m/949931aa-4ed4-d867-a7b5-de9c02b2292b@oss.nttdata.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 0e5a4a0b86a..a9f6ee6e32a 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1293,7 +1293,7 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting in main loop of WAL writer process.</entry> </row> <row> - <entry morerows="7"><literal>Client</literal></entry> + <entry morerows="8"><literal>Client</literal></entry> <entry><literal>ClientRead</literal></entry> <entry>Waiting to read data from the client.</entry> </row> @@ -1302,6 +1302,10 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting to write data to the client.</entry> </row> <row> + <entry><literal>GSSOpenServer</literal></entry> + <entry>Waiting to read data from the client while establishing the GSSAPI session.</entry> + </row> + <row> <entry><literal>LibPQWalReceiverConnect</literal></entry> <entry>Waiting in WAL receiver to establish connection to remote server.</entry> </row> |