-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# energy-usage | ||
|
||
Realtime energy usage reporting from Bright MQTT feed (SEP) into InfluxDB/VictoriaMetrics. Can be installed and run via pip or docker. | ||
|
||
## Configuration | ||
|
||
Copy `config.yaml.example` to `config.yaml` and fill in your MQTT login details, and your influx/vm server details. | ||
The config file should be placed into one of the following locations: | ||
|
||
* `/etc/energy-usage/config.yaml` | ||
* `~/.config/energy-usage/config.yaml` | ||
* Any dir pointed at by `ENERGY-USAGEDIR` env var | ||
|
||
## Pip usage | ||
|
||
### Installation | ||
|
||
pip install energy-usage | ||
|
||
### Run | ||
|
||
```bash | ||
energy-usage [--debug] [--noop] | ||
``` | ||
|
||
* `--debug` enables verbose output about what the script is doing | ||
* `--noop` mode will retrieve stats from mqtt, and show you what would be published to influx but does not actually send anything | ||
|
||
## Docker usage | ||
|
||
### Build | ||
|
||
```bash | ||
docker build -t energy-usage:latest . | ||
``` | ||
|
||
### Run | ||
|
||
```bash | ||
docker run -v config.yaml:/etc/energy-usage/config.yaml energy-usage:latest | ||
``` | ||
|
||
## Tested with: | ||
|
||
* Python 3 | ||
* VictoriaMetrics 1.40 | ||
* Docker 19.03.05 | ||
* Nomad 0.12.4 |