Telemetry

Metrics API with Grafana Cloud


Grafana Cloud gives you a fully managed Prometheus endpoint plus hosted Grafana dashboards, which makes it the fastest way to explore the Supabase Metrics API without operating your own infrastructure.

Prerequisites

  • A Supabase project with access to the Metrics API (service role key or another secret key).
  • A Grafana Cloud account with Prometheus metrics enabled (Free or Pro tier).
  • A Grafana API token with the metrics:write and metrics:read scopes if you plan to push data manually.

1. Create a Grafana Cloud stack

  1. Sign in to Grafana Cloud.
  2. Create (or select) a stack that has Prometheus Metrics enabled (Free and Pro tiers both work for this guide).

2. Configure the Supabase integration

  1. Navigate to Connections → Add new connection → Supabase inside Grafana Cloud.
  2. Provide:
    • Your Supabase project ref (e.g. abcd1234).
    • The Metrics API endpoint: https://<project-ref>.supabase.co/customer/v1/privileged/metrics.
    • HTTP Basic Auth credentials (service_role / service_role key).
  3. Choose the scrape interval (1 minute recommended) and test the connection. Grafana Cloud will deploy an agent in the background that scrapes the Metrics API and forwards the data to Prometheus.

If you prefer to reuse an existing Grafana Agent deployment, configure an integration pipeline with the same URL and credentials.

3. Import the Supabase dashboard

  1. Open your Grafana Cloud dashboard list and click New → Import.
  2. Paste the raw contents of supabase-grafana/dashboard.json.
  3. When prompted for the datasource, choose the Prometheus instance that receives the Supabase metrics.

This dashboard includes 200+ charts grouped by CPU, IO, connections, replication, WAL, and bloat indicators.

Supabase Grafana dashboard showcasing database metrics

4. Configure alerts (optional)

The docs/example-alerts.md file contains suggested alert rules (disk saturation, long-running queries, replication lag, etc.). Import the alert rules into Grafana Cloud’s Alerting UI or translate them into Grafana Cloud’s managed alert rule format.

5. Troubleshooting

  • Metrics missing? Ensure the Grafana Cloud agent can reach https://<project-ref>.supabase.co and that the selected service role key is still valid.
  • 401 errors? Rotate the service role key from the API settings page and update the Grafana Cloud credentials.
  • Long scrape durations? Reduce label cardinality in your Grafana queries or lower the time range to focus on recent data.

← Back to the Metrics API landing