Example systemd unit file for starting proxy. Only tested on arch linux. BTW, I would love it if we could add a config file and/or env variables. Any objection to a pull request?
[Unit]
Description=Proxy that forwards collectd data to influxdb
[Service]
Type=simple
ExecStart=/usr/local/bin/influxdb-collectd-proxy --database=collectd --username=root --password=root --typesdb=/usr/share/collectd/types.db
User=collectd-proxy
Group=collectd-proxy
[Install]
RequiredBy=collectd.service
Example systemd unit file for starting proxy. Only tested on arch linux. BTW, I would love it if we could add a config file and/or env variables. Any objection to a pull request?