mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-11 14:53:49 +00:00
23dcec3911
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
(cherry picked from commit e0930687f1
)
27 lines
430 B
Text
27 lines
430 B
Text
<source>
|
|
@type tail
|
|
format none
|
|
tag docker.testlog
|
|
path /var/lib/docker/containers/**/*.log
|
|
</source>
|
|
|
|
<source>
|
|
@type forward
|
|
port 24224
|
|
bind 0.0.0.0
|
|
</source>
|
|
|
|
<match **>
|
|
@type datadog
|
|
api_key test
|
|
# Optional
|
|
port 8427
|
|
use_ssl false
|
|
host dd-logs
|
|
include_tag_key true
|
|
tag_key 'tag'
|
|
# Optional parameters
|
|
dd_source 'fluentd'
|
|
dd_tags 'key1:value1,key2:value2'
|
|
dd_sourcecategory 'test'
|
|
</match>
|