| Crates.io | lueur-cli |
| lib.rs | lueur-cli |
| version | 0.4.0 |
| created_at | 2025-02-28 12:31:44.317337+00 |
| updated_at | 2025-05-09 17:42:53.070705+00 |
| description | Lueur CLI |
| homepage | |
| repository | https://github.com/rebound-how/rebound |
| max_upload_size | |
| id | 1572748 |
| size | 812,161 |

lueur is here to help you uncover and address resiliency issues early in your development cycle. By easily injecting network faults into your application’s daily workflows, lueur encourages you to shift resiliency concerns to the left, long before reaching production. The result: more confident engineering teams and applications that gracefully handle the unexpected.
At its core, lueur acts as a local proxy you can route traffic through, giving you fine-grained control over conditions like latency, jitter, and faults. Rather than waiting until late-stage testing or worse, customer reports, you can quickly see how your application responds when the network isn’t perfect.
Why lueur?
lueur is distributed as built bianries on GitHub. Please refer to the documentation.
The lueur proxy is installed as follows
cargo +nightly install lueur-cli
If you want to enable ebpf support (highly experimental and likely broken):
cargo +nightly install lueur-cli --features stealth
In that case you will also need to install the lueur ebpf programs.
Once installed, you can start a latency fault inkjection proxy (for instance):
lueur run --with-latency --latency-mean 300 --latency-direction ingress --upstream localhost:9090
This is will inject 300ms (mean) latency on network coming back from the
host localhost:9090.