forked from CESNET/ipfixcol2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IPFIX input: add support for reading IPFIX Files, documentation
- Loading branch information
Showing
3 changed files
with
280 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
IPFIX file (input plugin) | ||
IPFIX File (input plugin) | ||
========================= | ||
|
||
TODO | ||
The plugin reads flow data from one or more files in IPFIX File format. It is possible to | ||
use it to load flow records previously stored using IPFIX output plugin. | ||
|
||
Unlike UDP and TCP input plugins which infinitely waits for data from NetFlow/IPFIX | ||
exporters, the plugin will terminate the collector after all files are processed. | ||
|
||
Example configuration | ||
--------------------- | ||
|
||
.. code-block:: xml | ||
<input> | ||
<name>IPFIX input</name> | ||
<name>IPFIX File</name> | ||
<plugin>ipfix</plugin> | ||
<params> | ||
<dirPath>4739</dirPath> | ||
<fileName></fileName> | ||
<path>/tmp/flow/file.ipfix</path> | ||
</params> | ||
</input> | ||
Parameters | ||
---------- | ||
|
||
TODO | ||
:``path``: | ||
Path to file(s) in IPFIX File format. It is possible to use asterisk instead of | ||
a filename/directory, tilde character (i.e. "~") instead of the home directory of | ||
the user, and brace expressions (i.e. "/tmp/{source1,source2}/file.ipfix"). | ||
Directories and non-IPFIX Files that match the file pattern are skipped/ignored. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.