Every Brimble project has an Observability tab that shows CPU, memory, network, and response-time metrics in real time. Use it to size your project, debug latency spikes, and watch traffic patterns. This is separate from web analytics, which counts visitors and pageviews on the front end. Observability metrics are server-side, what your container is doing.Documentation Index
Fetch the complete documentation index at: https://paper.brimble.io/llms.txt
Use this file to discover all available pages before exploring further.
Open the Observability tab
- In the dashboard, open the project.
- Click Observability.

Top: live gauges
Two semi-circular gauges show the current snapshot:- CPU usage, percentage of allocated CPU in use, with the allocation in vCPU shown alongside (for example
7.2% - 2.0 vCPU). - Memory usage, percentage of allocated memory in use, with the allocation in GB (e.g.
1.8% / 1.5 GB).
Bottom: time-series chart
Pick a metric from the tabs above the chart:| Metric | Unit | Description |
|---|---|---|
| Memory Usage | % | Memory consumption as a percentage of the project’s allocated memory. |
| CPU Usage | % | CPU consumption as a percentage of the project’s allocated CPU. |
| Network Egress | KB/s | Outbound network throughput from your container. |
| Response Times | ms | Latency percentiles for HTTP responses. Toggle between P90, P95, P99, and Average. Not available on database projects. |

Response Time percentiles
For web services and MCP servers, the Response Times tab is the most useful one for catching tail latency:- P90, 90% of responses were faster than this. Useful for “typical worst case.”
- P95, 95% of responses were faster. Use for SLOs.
- P99, 99% of responses were faster. Most actionable signal for tail latency, if P99 is bad, a meaningful slice of users are seeing it.
- Average, sum of all response times divided by request count. Easy to read but hides outliers; prefer percentiles for real analysis.
Time range
The dropdown in the top right of the tab picks the time window:- Last 1 Hour (default)
- Last 6 Hours
- Last 24 Hours
- Last 7 Days
- Last 30 Days
Reading the chart
A few patterns worth recognizing:- Memory climbing steadily over hours, then dropping when the deployment restarts. That saw-tooth shape is a leak. The chart confirms it; finding what’s holding allocations is on you.
- P99 response time much higher than P90. A small slice of requests are slow. Usually a slow downstream (a database query, a third-party API) on specific paths. Cross-reference with request logs.
Database projects
Database projects show Memory Usage, CPU Usage, and Network Egress, the same gauges and the same chart. They don’t have Response Times because Brimble doesn’t time individual queries from the platform side; for query-level performance, use the database engine’s native tools (e.g.pg_stat_statements for PostgreSQL).
Workspace bandwidth
Per-project network egress is on the Observability tab. The workspace’s total bandwidth is on the home page in the Bandwidth tile, with a small chart showing the usage trend across the current cycle. Bandwidth is what’s billed against your plan’s allowance, see Plans and pricing for the limits and overage rate.Refresh and freshness
Metrics auto-refresh when you change the time range. They don’t auto-tick within a fixed window, to pull the latest second-by-second data, switch ranges (e.g. flip from 1 Hour to 6 Hours and back). There’s no manual refresh button on the Observability tab. The data behind it has a few-seconds lag from the source.Where to find error and request data
Errors and request volume don’t live on the Observability tab. They’re under Logs:- Error rates over time appear in the application-logs trend chart, with stacked counts for error, warn, and info levels across your selected window.
- HTTP errors appear in the request-logs view, with a status filter (
2xx,4xx,5xx) and a detail drawer per request.
Troubleshooting
Gauges show 0% with traffic. The metrics pipeline lags by a few seconds for fresh deployments, wait a minute and refresh. If still zero after a few minutes, runtime metrics may be unavailable temporarily; check status.brimble.io. Response Times tab is missing. You’re on a database, worker, or static-site project. Response times only apply to projects that handle HTTP requests (web service, MCP server). Numbers look wrong vs. my own monitoring. Brimble’s CPU and memory percentages are relative to the allocation you picked under Settings → Resources, not the host’s total capacity. If your container’stop shows 30% but Brimble shows 90%, your container is using 90% of what Brimble gave it.
Next steps
- Configure scaling, when CPU or memory hit ceiling.
- Web analytics, visitor-facing analytics, separate from these metrics.
- Plans and pricing, bandwidth allowance and overage.