Sergio Slobodrian | 8725ea8 | 2017-08-27 23:47:41 -0400 | [diff] [blame] | 1 | # Configuration for the Fluentd Forwarders, it collects logs from voltha components and sends to Fluentd Log Aggregrators. |
2 | # TCP input | ||||
3 | <source> | ||||
4 | @type forward | ||||
5 | port 24224 | ||||
6 | </source> | ||||
7 | <match **> | ||||
8 | @type file | ||||
9 | |||||
10 | path /fluentd/log/voltha | ||||
11 | buffer_path /fluentd/log/*.log | ||||
12 | append true | ||||
13 | time_slice_wait 10m | ||||
14 | time_format %Y%m%dT%H%M%S%z | ||||
15 | time_slice_format %Y%m%d%H | ||||
16 | </match> |