diff --git a/src/_posts/databases/about/2000-01-01-backup-policies.md b/src/_posts/databases/about/2000-01-01-backup-policies.md index ec223e756..d7b2088a8 100644 --- a/src/_posts/databases/about/2000-01-01-backup-policies.md +++ b/src/_posts/databases/about/2000-01-01-backup-policies.md @@ -151,6 +151,15 @@ The following events are available to monitor the backups: | `database_backup_succeeded` | A database backup has been successfully completed | | `database_backup_failed` | A database backup has failed | +The following events are available to monitor continuous backups for Point-in-Time +Recovery (PiTR): + +| Event | Description | +| ----------------------------------- | ----------- | +| `database_continuousbackup_healthy` | Point-in-time recovery is available and restore points are up to date | +| `database_continuousbackup_delayed` | The latest restorable point is more than 12 hours behind | +| `database_continuousbackup_stale` | The latest restorable point is more than 24 hours behind | + To learn more about events and notifiers, please visit the page dedicated to [app notifiers]({% post_url platform/app/2000-01-01-notifiers %}). ## Restoring a backup diff --git a/src/_posts/platform/app/2000-01-01-notifiers.md b/src/_posts/platform/app/2000-01-01-notifiers.md index 21dea91f2..1c9b5291e 100644 --- a/src/_posts/platform/app/2000-01-01-notifiers.md +++ b/src/_posts/platform/app/2000-01-01-notifiers.md @@ -139,6 +139,9 @@ Keep the rows sorted alphabetically by name. | `collaborator_role_changed` | Collaborator role changed | A collaborator role was changed | | `database_backup_failed` | Database backup failed | A database backup has failed | | `database_backup_succeeded` | Database backup succeeded | A database backup has succeeded | +| `database_continuousbackup_delayed` | Database continuous backup delayed | The latest restorable point is more than 12 hours behind | +| `database_continuousbackup_healthy` | Database continuous backup healthy | Point-in-time recovery is available and restore points are up to date | +| `database_continuousbackup_stale` | Database continuous backup stale | The latest restorable point is more than 24 hours behind | | `database_maintenance_completed` | Addon maintenance completed | A maintenance has been completed successfully on your addon | | `database_maintenance_planned` | Addon maintenance planned | A maintenance is planned on your addon | | `database_maintenance_started` | Addon maintenance started | A maintenance has started on your addon | diff --git a/src/changelog/api/_posts/2026-05-22-continuous_backup_events.md b/src/changelog/api/_posts/2026-05-22-continuous_backup_events.md new file mode 100644 index 000000000..80077d4d0 --- /dev/null +++ b/src/changelog/api/_posts/2026-05-22-continuous_backup_events.md @@ -0,0 +1,20 @@ +--- +modified_at: 2026-05-22 10:00:00 +title: "New Database Continuous Backup Events" +--- + +Three new event types have been added to monitor continuous backups for +Point-in-Time Recovery (PiTR): + +- `database_continuousbackup_healthy`: Point-in-time recovery is available and + restore points are up to date +- `database_continuousbackup_delayed`: The latest restorable point is more than + 12 hours behind +- `database_continuousbackup_stale`: The latest restorable point is more than + 24 hours behind + +These events can be used to create notifiers that alert you when continuous +backup health changes. + +More information about events and notifiers in the +[documentation]({% post_url platform/app/2000-01-01-notifiers %}).