1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-24 02:46:36 +01:00
fastnetmon-rewritten/docs/REDIS.md

24 lines
715 B
Markdown
Raw Normal View History

2015-04-13 11:36:47 +02:00
# Redis backend
2015-08-11 08:27:55 +02:00
I introduced Redis support for storing information about attacks. Redis support is bundled to project installer now. Please use installer with flag --use-git-master if you want Redis support.
2015-05-07 09:14:07 +02:00
2015-04-13 11:36:47 +02:00
Please call ```redis-cli``` and input following commands
```bash
keys *
1) "10.10.10.200_flow_dump"
2) "10.10.10.200_information"
3) "10.10.10.200_packets_dump"
```
Basic information about attack (stored immediately)
```get 10.10.10.200_information```
Complete flow dump for attack if flow tracking enabled (stored immediately)
```get 10.10.10.200_flow_dump```
2015-04-13 12:05:42 +02:00
Complete per packet attack dump (stored with some delay; can be absent in some cases of slow attacks)
2015-04-13 11:36:47 +02:00
```get 10.10.10.200_packets_dump```