Check backup time - NRPE backup completion check: Difference between revisions

From TykWiki
Jump to navigationJump to search
(Created page with "My backup solution updates the timestamp of the file <code>/var/backups/tykbackup_complete_timestamp</code> after a successful backup has been completed. I make NRPE check the ag...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
My backup solution updates the timestamp of the file <code>/var/backups/tykbackup_complete_timestamp</code> after a successful backup has been completed. I make NRPE check the age of that file, if it gets more than 25 hours old it throws a warning, more than 50 hours old it goes critical. I add the following to <code>/usr/local/etc/nrpe.cfg</code>:
{{DISPLAYTITLE:check_backup_time - NRPE backup completion check}}
[[category:nagios]]
[[category:TykBackup]]
My backup solution updates the timestamp of the file <code>/tmp/tykbackup_complete_timestamp</code> after a successful backup has been completed. I make NRPE check the age of that file, if it gets more than 25 hours old it throws a warning, more than 50 hours old it goes critical. I add the following to <code>/usr/local/etc/nrpe.cfg</code>:


<pre>
<pre>
command[check_backup_time]=/usr/local/libexec/nagios/check_file_age -w 90000 -c 180000 -f /var/backups/tykbackup_complete_timestamp
command[check_backup_time]=/usr/local/libexec/nagios/check_file_age -w 90000 -c 180000 -f /tmp/tykbackup_complete_timestamp
</pre>
</pre>

Latest revision as of 22:32, 13 December 2010

My backup solution updates the timestamp of the file /tmp/tykbackup_complete_timestamp after a successful backup has been completed. I make NRPE check the age of that file, if it gets more than 25 hours old it throws a warning, more than 50 hours old it goes critical. I add the following to /usr/local/etc/nrpe.cfg:

command[check_backup_time]=/usr/local/libexec/nagios/check_file_age -w 90000 -c 180000 -f /tmp/tykbackup_complete_timestamp