Docker image running influxdb-collectd-proxy in a container.
docker build -t influxdb-collectd-proxy .
The following environment variables are mapped to the proxy's command line options:
ICP_HOST: -influxdbICP_DATABASE: -databaseICP_USERNAME: -username (default root)ICP_PASSWORD: -password (default root)ICP_NORMALIZE: -normalize (default true)ICP_VERBOSE: -verbose (default false)Run a container:
docker run -d \
-e ICP_HOST=sandbox.influxdb.com:8086 \
-e ICP_DATABASE=collectd \
-e ICP_VERBOSE=true \
-p 8096:8096/udp \
influxdb-collectd-proxy:latest
You can override the built-in collectd types.db file by attaching your custom file as a volume to /types.db in the container:
docker run [other options] -v /my/own/types.db:/types.db:ro influxdb-collectd-proxy:latest
Content type
Image
Digest
sha256:1b4c4a587…
Size
136.6 MB
Last updated
almost 11 years ago
docker pull falzm/docker-influxdb-collectd-proxy