git404hub

what is redissnoop fr?

yeet-src/redissnoop — explained in plain English

Analysis updated 2026-05-18

25JavaScriptAudience · developerComplexity · 4/5LicenseSetup · moderate

tl;dr

redissnoop is a zero-config Linux tool that shows live Redis traffic, including encrypted commands, straight from the kernel without touching the app or adding load to the server.

vibe map

mindmap
  root((redissnoop))
    What it does
      Live Redis traffic view
      Reads encrypted traffic
      Key pattern grouping
      Dangerous command flags
    Tech stack
      JavaScript
      eBPF
      yeet runtime
    Use cases
      Debug slowdowns
      Audit shared caches
      Pre launch review
    Audience
      Backend developers
      SREs

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Figure out which Redis key pattern or command is causing a performance slowdown after a deploy.

VIBE 2

Audit a shared Redis cache to see which service and commands are hammering it.

VIBE 3

Check a service before launch for dangerous commands like scanning the entire keyspace.

VIBE 4

See what an app sends to Redis even when the connection is encrypted with TLS.

what's the stack?

JavaScriptJSXeBPFyeet

how it stacks up fr

yeet-src/redissnoop0xpira/sskillsarulsebastin71/smartqueue
Stars252525
LanguageJavaScriptJavaScriptJavaScript
Setup difficultymoderateeasymoderate
Complexity4/52/53/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · moderate time til it works · 5min

Linux only, needs kernel BTF and uprobe support (on by default on current Ubuntu, Debian, Fedora), encrypted capture requires the client to use dynamically linked OpenSSL.

GPL-2.0 license: you can use and modify the code, but any distributed modified versions must also be released under the same license.

in plain english

redissnoop is a live monitoring tool that shows exactly what an application is doing to a Redis database, without changing the application, running a proxy, or adding any load to the Redis server itself. It works by watching the operating system's kernel directly, reading the raw network traffic between the app and Redis, and it can even see the contents of traffic that is encrypted with TLS by reading it just before encryption happens inside the app's own TLS library. Once running, it shows a live count of commands per second, a breakdown of how many were seen encrypted versus in plain text, and a count of risky commands in use. There are three tabbed views. The first is a Report tab that lists problems worth fixing, worst first, such as a single type of key dominating traffic, a particularly hot key, or a dangerous command being used. The second, Key Patterns, groups traffic by the shape of the keys being accessed, such as treating user:1839 and user:204 as the same pattern, showing which patterns make up most of the load. The third, Command Mix, groups traffic by the actual Redis command being run and flags commands that are cheap to type but expensive to run on a live server, like scanning the entire keyspace. It requires Linux with certain kernel features enabled, which are on by default on current Ubuntu, Debian, and Fedora, plus a small privileged helper program called yeet to load its kernel-level monitoring code. The encrypted traffic view only works if the connecting client uses a dynamically linked OpenSSL library, and it only sees plaintext traffic sent over regular network connections rather than local Unix domain sockets. It is meant as a traffic profiler, not a precise latency measurement tool, and it never shows the actual values stored in the database, only which commands and key patterns are running. Installation is a single command that installs the underlying yeet tool and then runs redissnoop directly from its GitHub repository. The project is released under the GPL-2.0 license.

prompts (copy fr)

prompt 1
Explain how redissnoop reads encrypted Redis traffic before it gets encrypted by the TLS library.
prompt 2
Walk me through installing redissnoop and reading its Report, Key Patterns, and Command Mix tabs.
prompt 3
What Redis commands does redissnoop flag as 'footguns' and why are they risky in production?
prompt 4
What are the limitations of redissnoop's encrypted traffic capture, like statically linked TLS or Unix socket connections?

Frequently asked questions

what is redissnoop fr?

redissnoop is a zero-config Linux tool that shows live Redis traffic, including encrypted commands, straight from the kernel without touching the app or adding load to the server.

What language is redissnoop written in?

Mainly JavaScript. The stack also includes JavaScript, JSX, eBPF.

What license does redissnoop use?

GPL-2.0 license: you can use and modify the code, but any distributed modified versions must also be released under the same license.

How hard is redissnoop to set up?

Setup difficulty is rated moderate, with roughly 5min to a first successful run.

Who is redissnoop for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.