From acceb0e9a4f7b2899610e6324880c09f863f7f02 Mon Sep 17 00:00:00 2001 From: dbsqp Date: Fri, 9 Apr 2021 01:52:24 +0200 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 154eccc..0b876c8 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,28 @@ Updated for InfluxDBv2. Changed outputted values. Poll multiple NUT servers. ## Roadmap +## NUT Servers Accessories +- Get IP address of NUT servers +- Create list of IPs: ['IP1','IP2', ...] +- Create list of hostnames (mapped to hosts in Influx): ['Host1','Host2', ...] + +## InfluxDBv2 Setup +Setup InfluxDBv2, create bucket and create a token with write permissions for bucket. + +## Docker Setup +``` +$ docker run -d \ + -e HOMEKIT_IP_LIST="['','',...]" \ + + ## How to run ``` $ docker run -d \ - -e NUT_HOST_LIST="IP1, IP2, ... " \ + -e NUT_HOST_LIST="['','',...]" \ -e NUT_PORT="" \ -e NUT_PASSWORD="" \ -e NUT_USERNAME="" \ - -e NUT_HOSTNAME_LIST="Hostname1, Hostname2, ..." \ + -e NUT_HOSTNAME_LIST="['','',...]" \ -e NUT_UPSNAME="" \ -e INFLUXDB2_HOST="" \ -e INFLUXDB2_PORT="8086" \