basgys / dokku-influxdb

an influxdb plugin for dokku
MIT License
4 stars 4 forks source link

Support data ingress via UDP #1

Open MikeSchroll opened 8 years ago

MikeSchroll commented 8 years ago

influxdb can accept data via UDP. It does require some extra configuration options.

MikeSchroll commented 8 years ago

This is supported by the tutum image in this way:

from: https://hub.docker.com/r/tutum/influxdb/

UDP support If you provide a UDP_DB, influx will open a UDP port (4444 or if provided UDP_PORT) for reception of events for the named database.

docker run -d -p 8083:8083 -p 8086:8086 -p 4444:4444/udp --expose 8090 --expose 8099 --expose 4444 -e UDP_DB="my_db" tutum/influxdb