Understand every section of your Sim IDX app’s deployment: high-level metrics, build health, database access and automatically generated APIs.
The App Page is the central place to monitor your IDX app after it has been deployed. Here you can track ingestion progress, inspect generated endpoints, check build health and grab the database connection string.
If you have not deployed your IDX app yet, follow the Deployment guide first.
Your app's individual deployment page
At the very top you will see a stats bar that summarises your app’s activity: the chains it indexes, the connected GitHub repository and API metrics such as total requests, peak RPS and success rate over the last 24 hours. The numbers update live so you can leave the tab open while you ship new endpoints.
This card shows the build that is currently serving traffic.
It displays the Deployment ID (unique UUID for this deployment), Environment (Production points to the main
branch while Preview builds are generated for branches other than main
), Commit (Git SHA together with the GitHub author), and Last deployed (relative timestamp).
When a build is running the status badge moves from Building → Ingesting → Ready. Previous builds stay available in the Other deployments.
A Postgres DB connection string is issued for every deployment. It follows the pattern
Paste it into psql
, Supabase Studio, DBeaver or any other SQL client to explore your tables directly.
Two base URLs are generated:
/main
branch.Every endpoint that you add to your API appears here with usage statistics and a status badge. Click an endpoint to view detailed usage metrics.
If your app emits events you will see an Events table. For each event you can view:
Click an event to open a detailed view that shows catch-up progress, the last five processed events and full logs.
The Other deployments panel lists every build that ran for this app. For each row you can:
Clicking a deployment switches the entire App Page to that build, letting you inspect its endpoints, events and metrics in isolation.