What you can call
GET /api/health
The one public health endpoint. Returns 200 OK when the project’s API service is reachable through Kong. Lightweight — useful as a synthetic uptime check.What the Studio shows you
The Studio at app.powabase.ai has three observability views for each project, fed by control-plane endpoints (/api/platform/projects/<ref>/observability/*) that aren’t exposed externally:
- Project overview — aggregate request counts, error rates, recent activity timeline.
- Extraction queue — for the AI surface specifically — which source extractions are pending / running / failed.
- Health checks — per-service status (Postgres, GoTrue, Storage, etc.) inside your project’s stack.
/metrics endpoint — but those /metrics endpoints are not routed through Kong and not accessible from outside the cluster.
What’s NOT externally accessible
Honest list, because expectations matter:- No
/metricsPrometheus endpoint on your project URL. The project API shipsprometheus_flask_exporterinternally but the route isn’t in Kong’s allowlist. Self-hosted deployments can change this; managed cloud doesn’t. - No structured request log API. If you want to know “what requests did my project receive in the last 24 hours?”, the answer today is “check the Studio’s overview page” — there’s no programmatic export.
- No tail-style log streaming. No
/logs/followWebSocket, no log shipping endpoint. Workflow execution logs are queryable via/api/workflows/{id}/executions/{execution_id}/logs(see Workflows reference) but that’s the only piece. - No per-endpoint latency histograms exposed. Internal histograms exist (Prometheus-style) but aren’t user-callable.
- Hit
/api/healthfrom your own monitoring tool. Datadog Synthetics, BetterUptime, or anything that pings URLs on a schedule. - Instrument your own application. The auth/storage/PostgREST calls go through your code; you can wrap them in metrics emission to whatever you already use.
- Use the agentic API’s existing logs. Run histories, execution logs, session messages — all queryable per resource.
Per-resource observability inside the API
The agentic/api/* surface has logging for AI resources:
GET /api/sources/{id}— extraction status, error message if extraction failed, task id.GET /api/knowledge-bases/{id}/sources?status=failed— list failed indexed sources to find broken indexing runs.GET /api/agents/runs/{run_id}— full run state including LLM steps, tool calls, retrieved context.GET /api/sessions/{id}/runs/{run_id}/retrieved-context— what context the agent saw on a specific run, useful for debugging “why did it answer that way”.GET /api/workflows/{id}/executions/{execution_id}/logs— per-block logs from a workflow execution.
ai.* via PostgREST. See ai-schema recipes Recipe 2 for the usage-analytics pattern.
Status and incidents
Platform-wide incidents go on status.powabase.ai. Subscribe there for outage notifications. Per-project status (your specific project is healthy / degraded) isn’t separately reported today — the assumption is that incidents affect everyone, and the platform’s monitoring catches per-project issues before users do. If you suspect your project is in a degraded state and the platform status page is green, the right move is to check/api/health from a couple of different network locations. Persistent failures: file a support ticket with your project ref.
What’s coming
Realistic expectations: a programmatic observability API surface is on the platform team’s radar but not committed. The most likely next addition is an exportable request-and-error log feed, similar to what the Studio’s overview shows but accessible from your own monitoring tools. If you have a specific observability need, file it as a platform request — the more concrete the use case, the higher it ranks.Next steps
Backups and disaster recovery
The other “platform internal” topic with similar disclosure shape.
Common pitfalls
What users get wrong that ends up looking like an observability problem.
ai-schema recipes
Where the closest thing to “query my project’s telemetry” actually lives — direct queries against ai.*.
Self-host enterprise
If you self-host, you control what’s exposed; managed cloud is more conservative.