mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
05a64a8c14
### Describe Your Changes Marked fluentd in victorialogs roadmap Added fluentd syslog example setup ### Checklist The following checks are **mandatory**: - [ ] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/).
19 lines
305 B
Text
19 lines
305 B
Text
<source>
|
|
@type tail
|
|
format none
|
|
tag docker.testlog
|
|
path /var/lib/docker/containers/**/*.log
|
|
</source>
|
|
|
|
<match **>
|
|
@type remote_syslog
|
|
host victorialogs
|
|
port 8094
|
|
severity debug
|
|
program fluentd
|
|
protocol tcp
|
|
<format>
|
|
@type single_value
|
|
message_key message
|
|
</format>
|
|
</match>
|