Hub
Network

NetFlow / IPFIX

NetFlow v9 / IPFIX biflow records — network telemetry as exported by routers, switches, and firewalls. TCP, UDP, and ICMP flows with byte/packet counters, AS numbers, and interface indexes.

Quick Start

uv tool install eventum-generator
git clone https://github.com/eventum-generator/content-packs.git
cd content-packs
eventum generate \
  --path generators/network-netflow/generator.yml \
  --id netflow \
  --live-mode true

Event Types

Event IDDescriptionFrequencyCategory
tcp-flowTCP flows (HTTPS, HTTP, SSH, RDP, SMB, LDAP)~71%network
udp-flowUDP flows (DNS, NTP, SNMP, syslog)~27%network
icmp-flowICMP flows (echo, unreachable, time exceeded)~2%network

Realism Features

  • Protocol-realistic traffic profiles — each service has appropriate byte ranges, packet counts, and flow durations
  • TCP flag simulation — cumulative bitmasks for completed (70%), active (15%), refused (10%), half-open (5%) flows
  • Direction-aware routing — outbound (60%), inbound (25%), internal (15%)
  • BGP AS numbers from 13 major cloud/CDN providers (Google, Cloudflare, AWS, Microsoft, Meta)
  • Response ratio modeling — each service defines initiator-to-responder byte ratios
  • VLAN tagging — workstations (VLAN 10), servers (VLAN 20), DMZ (VLAN 30)

Sample Output

{
    "@timestamp": "2026-02-21T12:00:05.000000+00:00",
    "event": {
        "action": "netflow_flow",
        "category": ["network", "session"],
        "dataset": "netflow.log",
        "kind": "event"
    },
    "source": { "ip": "10.1.1.30", "port": 52341, "locality": "internal" },
    "destination": { "ip": "203.0.113.50", "port": 443, "locality": "external" },
    "network": {
        "bytes": 397540,
        "direction": "outbound",
        "transport": "tcp"
    },
    "netflow": {
        "bgp_destination_as_number": 13335,
        "tcp_control_bits": 27,
        "vlan_id": 10
    }
}

Parameters

ParameterDefaultDescription
exporter_ip10.0.0.1NetFlow/IPFIX exporter IP
exporter_port2055Exporter UDP port
source_id512IPFIX Observation Domain ID
collector_namenetflow-collectorFilebeat collector hostname
agent_ida1b2c3d4-...Filebeat agent ID
agent_version8.17.0Filebeat version

Related Generators