-
Notifications
You must be signed in to change notification settings - Fork 13
/
cfg.yaml
58 lines (52 loc) · 1.91 KB
/
cfg.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Config file for envoy-logger
# Your login info for enphaseenergy.com
enphaseenergy:
email: name@example.com
password: mypassword123
# Information about your specific Envoy instance.
# https://enlighten.enphaseenergy.com will report the serial number under the "IQ-Gateway" information
envoy:
serial: 123456789012
url: https://envoy.local
# Give your envoy a name.
# All points logged will be tagged with "source=<tag>"
# Useful if you have multiple envoys
tag: power-meter
# How to access InfluxDB
influxdb:
url: http://localhost:8086
token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
org: home
# Which InfluxDB bucket to send measurements.
# This can be useful to control different data-retention rules
# alternatively use the "bucket" key if you want everything to be sent to the
# same bucket
bucket_hr: high_rate
bucket_lr: low_rate
# bucket: all_data
# Since the Envoy only tracks panel-level inverter production by serial number,
# it can be useful to provide InfluxDB measurements with additional tags that
# further describe your panels. This is completely optional, but can be useful
# metadata for your dashboard.
# You can figure out which inverter is which by logging into https://enlighten.enphaseenergy.com/
# and viewing: https://enlighten.enphaseenergy.com/pv/systems/<account number>/array_layout_x.json
# This will contain the X/Y coordinates of each inverter/panel.
# Since my layout is pretty simple, I chose to tag them with simple row/column numbers.
# Up to you to define a labeling scheme that works for you.
inverters:
"202212345600": # This is the inverter's serial number. NOT the inverter ID, module ID, or SKU as displayed in some places
tags:
row: 1
col: 1
"202212345601":
tags:
row: 1
col: 2
"202212345602":
tags:
row: 2
col: 1
"202212345603":
tags:
row: 2
col: 2