mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-11 14:53:49 +00:00
6adb3f0dc2
### 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/).
(cherry picked from commit 05a64a8c14
)
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>
|