🚀 Announcing BYOC and the OpenTelemetry Distribution BuilderRead more

NetFlow

Data Support

  • Process Template Records if present
  • Process Netflow V5, V9, and IPFIX messages
  • Mapping of custom fields is not yet supported

Supported Platforms

PlatformMetricsLogsTraces
Linux✓
Windows✓
macOS✓

Configuration Fields

FieldDescriptionDefault
SchemeThe scheme to use for the NetFlow source. Can be netflow or sflow.netflow
HostnameThe hostname or IP address to bind to.0.0.0.0
PortThe port to use for the NetFlow source.2055
SocketsThe number of sockets to use for the NetFlow source.1
WorkersThe number of workers to use for the NetFlow source.1

Example Configuration

This configuration sets up a basic NetFlow source with necessary details such as host, port, and version.

observIQ docs - NetFlow Source

Standalone Source

yaml
1apiVersion: bindplane.observiq.com/v1
2kind: Source
3metadata:
4  id: netflow
5  name: netflow
6spec:
7  type: netflow
8  parameters:
9    - name: scheme
10      value: 'netflow'
11    - name: hostname
12      value: 'localhost'
13    - name: port
14      value: 2055
15    - name: sockets
16      value: 1
17    - name: workers
18      value: 1