Two self-contained SQL bundles ready for the Supabase dashboard SQL editor (or any plain-SQL client). No psql, no CLI, no extension registry.
Latest release: v2.29.2
Tables, collection functions, scheduling, the partitioned sample ring, safety mechanisms. Schedules every pg_cron job on install.
Loading…
Anomaly detection, time-travel, incident timelines, capacity planning. Requires pgfr_record to be installed first.
Loading…
Destructive.
Each script drops a schema with CASCADE — every table, view, and function in that schema is removed, along with the data. Cron jobs (pgfr_*) are unscheduled first. If you only want to stop collection without removing data, run SELECT pgfr_record.disable(); instead.
Drops the pgfr_analyze schema. Reverses the second install step. Safe to run first; it has no side effects on pgfr_record.
Loading…
Unschedules every pgfr_* cron job, deletes their run-history rows, then drops the pgfr_record schema. Run this after pgfr_analyze if you've installed both.
Loading…