You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
470 B
32 lines
470 B
## |
|
## fluentd.conf -- FluentD Configuration |
|
## |
|
|
|
<system> |
|
rpc_endpoint 127.0.0.1:24444 |
|
</system> |
|
|
|
<source> |
|
@type forward |
|
bind 127.0.0.1 |
|
port 24224 |
|
</source> |
|
|
|
<source> |
|
@type syslog |
|
bind 127.0.0.1 |
|
port 5140 |
|
protocol_type udp |
|
source_host_key source_host |
|
</source> |
|
|
|
<match **> |
|
@type file |
|
path @l_prefix@/var/fluentd/log/fluentd.log.d |
|
format json |
|
append true |
|
<buffer> |
|
flush_interval 10s |
|
</buffer> |
|
</match> |
|
|
|
|