Telemetry
Integration guide

Supabase And Postgres App Telemetry

Track product workflows, database-adjacent jobs, API routes, and customer-facing failures from server code.

Useful for
  • API reliability
  • Activation tracking
  • Operational debugging

Snippet

Start with one structured event

Add this shape where the workflow completes, fails, or retries. Then build the dashboard from real fields.

supabase-postgres

Supabase And Postgres App Telemetry event

javascript
await telemetry.log("api_request_completed", {
  route_template: "/api/projects/:id/sync",
  method: "POST",
  status_code: 200,
  status: "success",
  latency_ms: 266,
  team_id: team.id,
});

Templates to pair with this integration

More integrations