Case architecture
Dashboard Data Freshness Checks Architecture
- 01List every data source a
Freshness checks layered onto existing dashboards so a stale or stalled feed shows a clear warning instead of quietly serving old numbers as if the...
- 02a freshness check that
Add a freshness check that records each source's last-updated timestamp and computes lag.
- 03Supabase Postgres
Supabase Postgres contributes the trusted model for Dashboard Data Freshness Checks so metrics are defined before they are visualized.
- 04pg_cron
Schedule the check with pg_cron so freshness is measured continuously, not on page load only.
- 05Review Queue
When automation confidence is low, route the record to a manual owner with the source, stage, and last action attached.
- 06Dashboard Action
Every dashboard shows a clear 'data as of' stamp; Stale feeds throw a warning instead of lying; Scheduled lag checks via pg_cron, not on-load only;...