Flowcus
Flowcus is a high performance NetFlow/IPFIX collector with embedded database and query interface
Install / Use
/learn @consi/FlowcusREADME
Flowcus
High-performance NetFlow/IPFIX flow collector with columnar storage and built-in query engine. Single binary, zero external dependencies.

Collects NetFlow (RFC 3954) v5/v9 and IPFIX (RFC 7011) over UDP/TCP, stores flows in a compressed columnar format with automatic compaction, and serves a web UI for real-time analysis.
Features
- NetFlow v5/v9 + IPFIX collection — UDP and TCP listeners, 200+ IANA IEs + 9 vendor registries (Cisco, Juniper, Palo Alto, VMware, Fortinet, ntop, Nokia, Huawei, Barracuda)
- Columnar storage — Time-partitioned, generation-based merge compaction, automatic codec selection (Delta, DeltaDelta, GCD), CRC32-C integrity on all formats, ZSTD compressed
- Query engine — FQL query language with typed AST, bloom filter point lookups, granule mark seeking
- Embedded web UI — React frontend compiled into the binary, no separate web server needed
- Single binary — All components embedded, deploy by copying one file
Quick Start
# Run with defaults (HTTP :2137, IPFIX :4739/udp)
./flowcus
# Or with Docker
docker run -p 2137:2137 -p 4739:4739/udp ghcr.io/consi/flowcus:latest
Open http://localhost:2137 for the web UI.
MikroTik RouterOS Configuration Example
/ip traffic-flow
set cache-entries=1k enabled=yes interfaces=ether1-wan
/ip traffic-flow ipfix
set nat-events=yes
/ip traffic-flow target
add dst-address=192.168.1.100 port=4739 src-address=192.168.1.1 version=ipfix
Replace 192.168.1.100 with your Flowcus server IP, 192.168.1.1 with the router's address, and ether1-wan with your WAN interface name.
Installation
Binary — download from Releases
Debian/Ubuntu:
sudo dpkg -i flowcus_*.deb
sudo systemctl enable --now flowcus
Docker:
docker run -d \
-p 2137:2137 \
-p 4739:4739/udp \
-v flowcus-data:/data/storage \
ghcr.io/consi/flowcus:latest
Configuration
Use WebUI to configure app. Settings are stored with flow data in flowcus.settings
Development
Requires: Rust 1.85+, Node 22+, just
just dev # Full stack (Vite HMR + Rust backend)
just test # Unit + integration + E2E tests
just build # Production release build
just check # Format + lint + test
