Back to lessons

Hosting Operations

Read the Restore Drill Validation Report

You need to pull the key pass, RPO, RTO, checksum, and file-count lines from a restore drill report.

Command

cd restore-dr && grep -E 'status=|rpo_minutes=|rto_seconds=|checksum=|file_count=' reports/restore-dr-2026-06-25.txt

What changed

Nothing changes. The command reads the report.

Danger

safe

When to use it

Use after a drill to capture the validation signals people will ask for during an incident review.

When not to use it

Do not use a report as a substitute for running the restore and validation commands.

Undo or recovery

No undo needed because this command is read-only.

Expected output

Key report lines showing status, RPO, RTO, checksum, and file-count results.

demo script

Disposable terminal steps

  1. cd restore-dr && cat reports/restore-dr-2026-06-25.txt
  2. cd restore-dr && grep -E 'status=|rpo_minutes=|rto_seconds=|checksum=|file_count=' reports/restore-dr-2026-06-25.txt

simulated output

What it looks like

disposable vessel
::fixture-ready::
$ cd restore-dr && cat reports/restore-dr-2026-06-25.txt
restore_dr=2026-06-25
backup_id=2026-06-25
status=pass
rpo_minutes=15
rto_seconds=42
checksum=pass
file_count=pass
permissions=reviewed
::exit-code::0
$ cd restore-dr && grep -E 'status=|rpo_minutes=|rto_seconds=|checksum=|file_count=' reports/restore-dr-2026-06-25.txt
status=pass
rpo_minutes=15
rto_seconds=42
checksum=pass
file_count=pass
::exit-code::0

YouTube Short

Keep restore evidence.

End the drill with evidence: status, RPO, RTO, checksum, and file-count results. Future you needs receipts.

LinkedIn hook

A restore drill that leaves no evidence is hard to trust later.

Question: What evidence do you keep from restore drills?

experiments

A/B tests to run

Metric: linkedin_save_rate

A: A restore drill needs evidence.

B: Can you prove the drill passed?