-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathudp2json.xml
46 lines (44 loc) · 1.18 KB
/
udp2json.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!--
Receive flow data over UDP, convert them into JSON and provide them as
a server on local port
-->
<ipfixcol2>
<!-- Input plugins -->
<inputPlugins>
<input>
<name>UDP collector</name>
<plugin>udp</plugin>
<params>
<!-- List on port 4739 -->
<localPort>4739</localPort>
<!-- Bind to all local adresses -->
<localIPAddress></localIPAddress>
</params>
</input>
</inputPlugins>
<!-- Output plugins -->
<outputPlugins>
<output>
<name>JSON output</name>
<plugin>json</plugin>
<params>
<!-- JSON format paramters -->
<tcpFlags>formatted</tcpFlags>
<timestamp>formatted</timestamp>
<protocol>formatted</protocol>
<ignoreUnknown>false</ignoreUnknown>
<ignoreOptions>true</ignoreOptions>
<nonPrintableChar>true</nonPrintableChar>
<!-- Output methods -->
<outputs>
<!-- Create a local server on port 8000 -->
<server>
<name>Local server</name>
<port>8000</port>
<blocking>no</blocking>
</server>
</outputs>
</params>
</output>
</outputPlugins>
</ipfixcol2>