analyze_slow_queries
Identify database queries exceeding a time threshold in Laravel applications to pinpoint performance bottlenecks. Analyze recent HTTP requests, filter by URI, and return slow queries for debugging.
Instructions
Find slow database queries above threshold
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Analyze all available requests (max 100) | |
| uri | No | Filter by URI pattern (substring match) | |
| count | No | Number of recent HTTP requests to analyze | |
| limit | No | Max queries to return | |
| since | No | Time duration to look back (e.g., "30m", "1h", "2d", "1w") | |
| token | No | Pre-authenticated X-Clockwork-Auth token (alternative to password) | |
| baseUrl | No | Clockwork application base URL (e.g. https://my-app.test). Overrides CLOCKWORK_BASE_URL / local storage for this call | |
| password | No | Clockwork authentication password | |
| username | No | Clockwork authentication username | |
| requestId | No | Specific request ID (highest priority) | |
| threshold | No | Slow query threshold in ms |