Releases: openfip/redfi
Releases · openfip/redfi
v0.2-Release-candidate-1
This release adds the ability to manage the attack plan through redis-cli
by pointing it to port 6380
.
connect to the configuration port
redis-cli -p 6380
some examples of commands to run inside redis-cli
:
# adds a rule named "delay_25" a delay for 25% of the commands
$ RULEADD "delay_25" delay=2000 percentage=25
# remove rule "delay_25"
$ RULEDEL
# list commands and their hit counts as well
$ RULELIST
v0.1
- Simple to use. It's just a binary that you execute.
- Transparent to the client.
- Flexibility to inject failures on Redis Commands you define.
- Limit failure injection to a percentage of the commands.
- Limit failure injection to certain clients only.
- Inject latency, drop connections, return empty responses.