redis_slowlog
Retrieve recent Redis slow log entries to identify commands that exceed the latency threshold, showing execution time and client details.
Instructions
Recent entries from the Redis slow log -- commands that took longer than slowlog-log-slower-than microseconds (default 10000 = 10ms). Each entry has the command, execution time in microseconds, a unix timestamp, and the client address/name (Redis 4+). The fastest way to find which specific commands are slow. Read-only (SLOWLOG GET); SLOWLOG RESET would need ALLOW_WRITES and is intentionally not exposed here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max slowlog entries to return (default 20). |