Build an x86_64 or ARM compatible Docker image that will output commonly used UPS device statistics to an influxdb database using an included version of the APCUPSd tool. Dockerfiles included for both intel and ARM (RaspberryPi or comparable) chipsets.
Building the image is straight forward:
- Git clone this repo
docker build -t fonduemangvi/apcupsd-influxdb-exporter
These are all the available environment variables, along with some example values, and a description.
Environment Variable | Example Value | Description |
---|---|---|
WATTS | 1500 | if your ups doesn't have NOMPOWER, set this to be the rated max power, if you do have NOMPOWER, don't set this variable |
APCUPSD_HOST | 192.168.1.100 | host running apcupsd |
APCUPSD_PORT | 3551 | port on host running apcupsd |
INFLUXDB_HOST | 192.168.1.101 | host running influxdb |
HOSTNAME | unraid | host you want to show up in influxdb, optional defaults to apcupsd-influxdb-exporter |
INFLUXDB_DATABASE | apcupsd | db name for influxdb. optional, defaults to apcupsd |
INFLUXDB_USER | myuser | optional, defaults to empty |
INFLUXDB_PASSWORD | pass | optional, defaults to empty |
INFLUXDB_PORT | 8086 | optional, defaults to 8086 |
VERBOSE | true | if anything but true docker logging will show no output |
UPS_ALIAS | server_closet | an additional influxdb tag to the influxdb output |
This docker image assumes that you already have an instance of apcupsd running. If you want to deploy one via docker, you can use the following docker-compose:
version: '3.3'
services:
apcupsd:
container_name: apcupsd
restart: unless-stopped
volumes:
- '/tmp/apcupsd-docker:/tmp/apcupsd-docker'
- '/etc/apcupsd/apcupsd.conf:/etc/apcupsd/apcupsd.conf'
image: 'gersilex/apcupsd:v1'
tty: true
stdin_open: true
ports:
- 3552:3551
Make sure to change the volume to wherever your apcupsd.conf file is
docker run --rm -d --name="apcupsd-influxdb-exporter" \
-e "WATTS=600" \
-e "HOSTNAME=unraid" \
-e "INFLUXDB_HOST=10.0.1.11" \
-e "APCUPSD_HOST=10.0.1.11" \
-e "APCUPSD_PORT=3551" \
-t fonduemangvi/apcupsd-influxdb-exporter
Note: if your UPS does not include the NOMPOWER metric, you will need to include the WATTS environment variable in order to compute the live-power consumption metric.
version: '3'
services:
apcupsd-influxdb-exporter:
image: fonduemangvi/apcupsd-influxdb-exporter
container_name: apcupsd-influxdb-exporter
restart: always
environment:
WATTS: 1500
APCUPSD_HOST: localhost
APCUPSD_PORT: 3551
INFLUXDB_HOST: localhost
HOSTNAME: unraid
INFLUXDB_DATABASE: apcupsd
INFLUXDB_USER:
INFLUXDB_PASSWORD:
INFLUXDB_PORT: 8086
If you want to debug the apcaccess output or the send to influxdb, set the environment variable "VERBOSE" to "true"