The plugin converts and stores IPFIX Data Records into FDS file format. The file is based on IPFIX, therefore, it provides highly-effective way for long-term storage and stores complete flow records (including all Enterprise-specific fields, biflow, etc.) together with identification of the flow exporters who exported these records.
All data are stored into flat files, which are automatically rotated and renamed every N minutes (by default 5 minutes).
Warning: The plugin is still under development and some incompatiblechanges in file format may be introduced!
<output>
<name>FDS output</name>
<plugin>fds</plugin>
<params>
<storagePath>/tmp/ipfixcol2/fds/</storagePath>
<compression>none</compression>
<dumpInterval>
<timeWindow>300</timeWindow>
<align>yes</align>
</dumpInterval>
</params>
</output>
storagePath : | The path element specifies the storage directory for data files. Keep on
mind that the path must exist in your system. Otherwise, no files are stored.
All files will be stored based on the configuration using the following
template: |
||||||
---|---|---|---|---|---|---|---|
compression : | Data compression helps to significantly reduce size of output files. Following compression algorithms are available:
|
||||||
dumpInterval : | Configuration of output files rotation.
|
||||||
asyncIO : | Allows to use asynchronous I/O for writing to the file. Usually when parts of the file are being written, the process is blocked on synchronous I/O and waits for the operation to complete. However, asynchronous I/O allows the plugin to simultaneously write to file and process flow records, which significantly improves overall performance. (Note: a pool of service threads shared among instances of FDS plugin might be created). [values: true/false, default: true] |