Vejo algumas discrepâncias entre duas visualizações no postgres quanto à replicação e ao tempo de atraso.
Por esta consulta, claramente a replicação está ativa:
9.5.6.11
postgres=# select client_addr, sent_location, replay_location from pg_stat_replication where application_name = 'walreceiver';
client_addr | sent_location | replay_location
----------------+---------------+-----------------
172.yyy.yyy.213 | 1C/2B5732F8 | 1C/2B5732F8
10.xxx.xxx.195 | 1C/2B5732F8 | 1C/2B5732F8
10.xxx.xxx.196 | 1C/2B5732F8 | 1C/2B5732F8
10.1
postgres=# select client_addr, sent_lsn, replay_lsn from pg_stat_replication where application_name = 'walreceiver';
client_addr | sent_lsn | replay_lsn
--------------+------------+------------
10.qqq.qqq.44 | 1/8C000140 | 1/8C000140
Mas quando olhar para o tempo de atraso:
9.5.6.11
postgres-# SELECT pg_last_xlog_receive_location() , pg_last_xlog_replay_location() , now() , pg_last_xact_replay_timestamp();
pg_last_xlog_receive_location | pg_last_xlog_replay_location | now | pg_last_xact_replay_timestamp
-------------------------------+------------------------------+-------------------------------+-------------------------------
| | 2018-05-10 04:19:38.079161-04 |
10.1
postgres=# SELECT pg_last_wal_receive_lsn() , pg_last_wal_replay_lsn() , now() , pg_last_xact_replay_timestamp();
pg_last_wal_receive_lsn | pg_last_wal_replay_lsn | now | pg_last_xact_replay_timestamp
-------------------------+------------------------+-------------------------------+-------------------------------
| | 2018-05-10 04:29:21.730089-04 |
Não há informações.. O que estou perdendo?
Parece que você está executando o segundo conjunto de consultas no mestre. Essas funções precisam ser executadas na réplica, não no mestre.