Slow Requests
If your log format includes response time, you can quickly surface slow endpoints and clients.
Open in AppHow it works
- Open your log file in GigaSieve.
- Filter for lines with response time field (e.g., request_time).
- Sort or scan for high latency values (e.g., > 2s).
- Group by URI to find the slowest routes.
Sample Input and Output
Input
203.0.113.10 - - "GET /api/users" 200 1200 rt=0.120 203.0.113.11 - - "GET /report" 200 1200 rt=3.512 203.0.113.10 - - "GET /report" 200 1200 rt=2.901
Output
/report avg rt: 3.2s /api/users avg rt: 0.12s
Tip
If your log format does not include response time, add it to your nginx log_format first.