Performance and slowness
Slow UI, slow endpoints, timeouts, or high consumption.
Last updated
Was this helpful?
Slow UI, slow endpoints, timeouts, or high consumption.
UI slow to load lists and forms.
API timeouts.
Slowness only in one environment (e.g., Prod).
Compare Dev vs Staging vs Prod.
Test with a “clean” user (without much data).
Isolate: is it UI, API, or database?
Client-side: high CPU in the browser, heavy rendering.
Server-side: slow requests in Network, high time-to-first-byte.
Lists without pagination tend to degrade quickly.
Filters and sorts may require indexes.
Do calls to external services block the main request?
Are timeouts configured?
Slow lists: pagination, mandatory filters, reduce columns.
Slow API: review critical endpoints and queries.
Database: indexes, avoid N+1, review recent migrations.
SLA affected in Staging/Prod.
Abrupt degradation after release.
Frequent and repeatable timeouts.
Before escalating, gather this evidence. It greatly reduces back-and-forth.
Project and environment (Dev/Staging/Prod).
Time of the error (with timezone).
Steps to reproduce (short and deterministic).
Full error message (no cropped screenshots).
Screenshot of the screen (if applicable).
Browser console (relevant errors and warnings).
Tab Network (request that failed + status + payload, if there is no sensitive data).
If there is a requestId, traceId or execution link, include it as well.
Last updated
Was this helpful?
Was this helpful?
