Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 905 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 905 Bytes

docker-statsd-influxdb wercker status

Out-of-the-box StatsD + InfluxDB backend image for Docker

Running

Example command to run this image:

docker run -p 8125:8125/udp -e "INFLUXDB_HOST=localhost" -e "INFLUXDB_DATABASE=site_dev" -e "INFLUXDB_USERNAME=username" -e "INFLUXDB_PASSWORD=password" -e "STATSD_DEBUG=true" shakr/statsd-influxdb

Following environment varaiables can be used:

  • INFLUXDB_HOST or INFLUXDB_MASTER_SERVICE_HOST (default: localhost)
  • INFLUXDB_PORT or INFLUXDB_MASTER_SERVICE_PORT (default: 8086)
  • INFLUXDB_DATABASE (default: site_dev)
  • INFLUXDB_USERNAME (default: root)
  • INFLUXDB_PASSWORD (default: root)
  • STATSD_PORT (default: 8125)
  • STATSD_DEBUG (default: false)