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
26 lines
883 B
YAML
26 lines
883 B
YAML
include:
|
|
- ../compose-base.yml
|
|
services:
|
|
agent:
|
|
image: docker.io/datadog/agent:7.57.2
|
|
restart: on-failure
|
|
volumes:
|
|
- /var/lib/docker/containers:/var/lib/docker/containers
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- /proc/:/host/proc/:ro
|
|
- /sys/fs/cgroup/:/host/sys/fs/cgroup:ro
|
|
environment:
|
|
DD_API_KEY: test
|
|
DD_URL: http://victoriametrics:8428/datadog
|
|
DD_LOGS_CONFIG_LOGS_DD_URL: http://dd-logs:8427
|
|
DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL: true
|
|
DD_LOGS_ENABLED: true
|
|
DD_LOGS_CONFIG_USE_HTTP: true
|
|
DD_PROCESS_CONFIG_PROCESS_COLLECTION_ENABLED: false
|
|
DD_PROCESS_CONFIG_CONTAINER_COLLECTION_ENABLED: false
|
|
DD_PROCESS_CONFIG_PROCESS_DISCOVERY_ENABLED: false
|
|
depends_on:
|
|
victorialogs:
|
|
condition: service_healthy
|
|
victoriametrics:
|
|
condition: service_healthy
|