| Crates.io | probe-zmq |
| lib.rs | probe-zmq |
| version | 0.3.7 |
| created_at | 2025-02-09 03:39:12.215429+00 |
| updated_at | 2025-07-27 00:19:25.166421+00 |
| description | Probe is a TUI ZMQ PUB/SUB monitor and debugger. |
| homepage | |
| repository | https://github.com/ckoehler/probe |
| max_upload_size | |
| id | 1548631 |
| size | 487,431 |
Probe is a TUI ZMQ PUB/SUB monitor and debugger.

| Key | Action |
|---|---|
| q | Quit |
| h, Left | Previous Tab |
| l, Right | Next Tab |
| j | Next Probe |
| k | Previous Probe |
| <Enter> | Show Details for selected probe |
Probe looks for a probe.toml file to know what to do. The format is very simple, just an array of one or more [[probes]]:
[[probes]]
address = "tcp://127.0.0.1:5556"
name = "Probe 1"
[[probes]]
address = "tcp://127.0.0.1:5555"
name = "Probe 2"
filter = "2"
| Config | Meaning |
|---|---|
address |
The ZMQ socket to subscribe to |
name |
The name of this probe, shown in the UI |
filter |
Optional regex filter, applied to the ZMQ message body. Default: .* |