mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
e0930687f1
This commit adds the following changes: - Added support to push datadog logs with examples of how to ingest data using Vector and Fluentbit - Updated VictoriaLogs examples directory structure to have single container image for victorialogs, agent (fluentbit, vector, etc) but multiple configurations for different protocols Related issue https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6632
31 lines
642 B
Text
31 lines
642 B
Text
[INPUT]
|
|
name tail
|
|
path /var/lib/docker/containers/**/*.log
|
|
path_key path
|
|
multiline.parser docker, cri
|
|
Parser docker
|
|
Docker_Mode On
|
|
|
|
[INPUT]
|
|
Name syslog
|
|
Listen 0.0.0.0
|
|
Port 5140
|
|
Parser syslog-rfc3164
|
|
Mode tcp
|
|
|
|
[SERVICE]
|
|
Flush 1
|
|
Parsers_File parsers.conf
|
|
|
|
[OUTPUT]
|
|
Name datadog
|
|
Match *
|
|
Host dd-logs
|
|
Port 8427
|
|
TLS off
|
|
compress gzip
|
|
apikey test
|
|
dd_service test
|
|
dd_source data
|
|
dd_message_key log
|
|
dd_tags env:dev
|