G
GigaSieve

Slow Requests

If your log format includes response time, you can quickly surface slow endpoints and clients.

Open in App

How it works

  1. Open your log file in GigaSieve.
  2. Filter for lines with response time field (e.g., request_time).
  3. Sort or scan for high latency values (e.g., > 2s).
  4. 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.

Related Recipes

Related Guides