diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index b1ec461..a50e1f6 100644 *** a/doc/src/sgml/high-availability.sgml --- b/doc/src/sgml/high-availability.sgml *************** primary_conninfo = 'host=192.168.1.50 po *** 865,870 **** --- 865,879 ---- process status of the WAL receiver process, displayed using the ps command (see for details). + + You can retrieve a list of WAL sender processes via + pg_stat_replication view. Large differences between + pg_current_xlog_location and sent_location field + might show the master server is under high load. On the other hand, + differences between sent_location and + pg_last_xlog_receive_location on the standby might show the + standby is under high load or network delay. + diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 739b8a2..b935107 100644 *** a/doc/src/sgml/monitoring.sgml --- b/doc/src/sgml/monitoring.sgml *************** postgres: user + pg_stat_replicationpg_stat_replication + One row per WAL sender process, showing process ID, + user OID, user name, application name, client's address and port number, + times at which the server process, and transaction log location. + + + + pg_stat_databasepg_stat_database One row per database, showing database OID, database name, number of active server processes connected to that database,