1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# config options for cadvisor(1)
#
# Docker endpoint to connect to
# Default: unix:///var/run/docker.sock
CADVISOR_DOCKER_ENDPOINT="unix:///var/run/docker.sock"
# Port to listen on
# Default: 8080
CADVISOR_PORT="8080"
# Storage driver
# Default: none/blank
#
# Available Options:
# - <empty>
# - bigquery
# - elasticsearch
# - kafka
# - redis
# - statsd
# - stdout
CADVISOR_STORAGE_DRIVER=""
# Storage driver host
# Default: localhost:8086"
CADVISOR_STORAGE_DRIVER_HOST="localhost:8086"
# Storage driver password
# Default: root
CADVISOR_STORAGE_DRIVER_PASSWORD="root"
# Storage driver secure connection
# Default: false
CADVISOR_STORAGE_DRIVER_SECURE="false"
# Storage driver user
# Default: root
CADVISOR_STORAGE_DRIVER_USER="root"
# Log to stderr ("true" logs to journal on systemd
# and "false" to "/var/log/cadvisor.log" on SysV)
# Default: true
CADVISOR_LOG_TO_STDERR="true"
# Other options:
#DAEMON_ARGS=""
|