Redis, key by key, cluster by cluster.
Binary-safe key browser with typed get/set, a full command console, streams and consumer groups, cluster topology, client list and kill, and SSH remapping for clusters behind a bastion.
Redis & Valkey · cluster topology · SSH remapping
The command trace Mongrel shows for your keyspace.
Click any command below to see latency, keyspace stats, and what Mongrel would suggest. Same view you get inside the workbench.
// SCAN · cursor 0 · MATCH cache:session:*
Cursor-based iteration over a 4.2M-key keyspace without blocking. COUNT 100 hint per round-trip; the cursor resumes where it left off. Replaces the KEYS call that stalled the server for 850ms.
-- session-cache · redis-prod-1 · db0 KEYS cache:session:* -- 4,231,884 keys · 850ms · server blocked SCAN 0 MATCH "cache:session:*" COUNT 100 1) "9382" 2) 1) "cache:session:8f2c…" … 100 keys TTL cache:session:8f2c -- (integer) -1 · no expiry set -- ✓ Proposal: replace KEYS with cursor SCAN -- ✓ Proposal: EXPIRE cache:session:8f2c 3600 EXPIRE cache:session:8f2c 3600 -- (integer) 1 · expiry set
What Mongrel ships for Redis.
Binary-safe key browser
Browse keys with raw bytes intact — nulls, non-printable sequences, and non-UTF-8 names render faithfully. Tree view by separator.
Typed get/set
String, list, hash, set, zset, and stream values each get a native editor. No guesswork, no serialized blobs.
Command console
A full RESP console with autocomplete, history, and guards that warn before blocking or keyspace-wide commands run.
Streams & consumer groups
Read streams with XRANGE/XREAD, inspect consumer groups and pending entries, and claim or ack from the UI.
Cluster topology
Visual map of primaries and replicas with slot ranges, failover state, and per-node stats — Redis Cluster and Valkey alike.
Client list & kill
See every connected client via CLIENT LIST — idle time, buffer usage, blocked state — and disconnect the ones misbehaving.
TTL & expiry audit
Find keys with no expiry, spot TTL outliers, and set or adjust expirations in bulk before memory runs away.
SSH cluster remapping
Reach a cluster through a bastion. Mongrel remaps MOVED and ASK redirects through the tunnel so slot hops just work.
Import, export, copy
Copy keys between instances with pattern filters, or export filtered keysets to JSON and CSV. Binary-safe throughout.

