Re: Script to check replication

From: Jehan-Guillaume de Rorthais <ioguix(at)free(dot)fr>
To: Ashish Chauhan <Ashish(dot)Chauhan(at)support(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Script to check replication
Date: 2016-03-09 10:02:26
Message-ID: 20160309110226.46b8abc0@firost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Le Fri, 4 Mar 2016 19:35:16 +0000,
Ashish Chauhan <Ashish(dot)Chauhan(at)support(dot)com> a écrit :

> Hi,
>
> We are running Streaming replication with Hot standby in our current
> production. I do have below script to check replication status and
> replication lag. Does anyone have script which runs every 15 mins to check
> replication status and send out email if replication is not running or
> lagging behind.
>
> SELECT pg_last_xlog_receive_location() receive,
> pg_last_xlog_replay_location() replay, now() -
> pg_last_xact_replay_timestamp() AS replication_delay, (extract(epoch FROM
> now()) - extract(epoch FROM pg_last_xact_replay_timestamp()))::int lag
>
> Thanks for your help!

Usually, such requirement is fullfilled by a monitoring system. Eg. Nagios,
Zabbix, Munin, and so on.

Considering the replication check or lag check, we are using
check_pgactivity[1] (see releases [2]). See its "streaming_delta" service. If
you don't use Nagios or a compatible derivative, writing a wrapper around this
script is quite easy to do.

Regards,

[1] https://github.com/OPMDG/check_pgactivity
[2] https://github.com/OPMDG/check_pgactivity/releases

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Albe Laurenz 2016-03-09 10:45:46 Re: Windows default directory for client certificates
Previous Message Alvaro Herrera 2016-03-09 02:17:29 Re: Does a call to a language handler provide a context/session, and somewhere to keep session data?