https://github.com/kudo/flowstatd
Netflow statistics daemon
https://github.com/kudo/flowstatd
Last synced: 4 months ago
JSON representation
Netflow statistics daemon
- Host: GitHub
- URL: https://github.com/kudo/flowstatd
- Owner: Kudo
- License: gpl-2.0
- Created: 2011-04-13T18:10:26.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2012-08-01T05:49:20.000Z (over 13 years ago)
- Last Synced: 2025-08-31T06:29:22.568Z (4 months ago)
- Language: C
- Homepage:
- Size: 1.34 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
flowstatd
====================
1. Introduction
---------------------
flowstatd is a Netflow statistics service provides these features:
- Very lightweight
- Real time query, all the data queried is latest
- Calculate each IP's flow day by day
- Can list top flow's IP addresses
- With given over quota flow bytes, flowstatd can list overflow IP addresses
- Socket based query protocol, you can implement frontend your own.
- Provide white list which can hide some IP addresses' record.
2. Support Platform
---------------------
- FreeBSD (support kqueue)
- Linux
3. How To
---------------------
Requirements:
- cmake
- zlib
Build:
```
cd /path/to/flowstatd
mkdir build
cd build
cmake ..
make install
```
Usage:
```
cd /path/to/flowstatd/bin
./flowstatd [-f /path/to/config.json]
```
4. License
---------------------
GPLv2
5. Authors
---------------------
Kudo Chien <ckchien At gmail.com>