![]() |
5 years ago | |
---|---|---|
.. | ||
Makefile.inc | 6 years ago | |
README.md | 5 years ago | |
fronius.node.js | 6 years ago |
This module collects metrics from the configured solar power installation from Fronius Symo.
Requirements
fronius.conf
in the node.d Netdata config dir (default: /etc/netdata/node.d/fronius.conf
)It produces per server:
Power
Consumption
Autonomy
Energy
Inverter
Sample:
{
"enable_autodetect": false,
"update_every": 5,
"servers": [
{
"name": "Symo",
"hostname": "symo.ip.or.dns",
"update_every": 5,
"api_path": "/solar_api/v1/GetPowerFlowRealtimeData.fcgi"
}
]
}
If no configuration is given, the module will be disabled. Each update_every
is optional, the default is 5
.
The plugin has been tested with a single inverter, namely Fronius Symo 8.2-3-M:
Other products and versions may work, but without any guarantees.
Example Netdata configuration for node.d/fronius.conf. Copy this section to fronius.conf and change name/ip. The module supports any number of servers. Sometimes there is a lag when collecting every 3 seconds, so 5 should be okay too. You can modify this per server.
{
"enable_autodetect": false,
"update_every": 5,
"servers": [
{
"name": "solar",
"hostname": "symo.ip.or.dns",
"update_every": 5,
"api_path": "/solar_api/v1/GetPowerFlowRealtimeData.fcgi"
}
]
}
The output of /solar_api/v1/GetPowerFlowRealtimeData.fcgi looks like this:
{
"Head" : {
"RequestArguments" : {},
"Status" : {
"Code" : 0,
"Reason" : "",
"UserMessage" : ""
},
"Timestamp" : "2017-07-05T12:35:12+02:00"
},
"Body" : {
"Data" : {
"Site" : {
"Mode" : "meter",
"P_Grid" : -6834.549847,
"P_Load" : -1271.450153,
"P_Akku" : null,
"P_PV" : 8106,
"rel_SelfConsumption" : 15.685297,
"rel_Autonomy" : 100,
"E_Day" : 35020,
"E_Year" : 5826076,
"E_Total" : 14788870,
"Meter_Location" : "grid"
},
"Inverters" : {
"1" : {
"DT" : 123,
"P" : 8106,
"E_Day" : 35020,
"E_Year" : 5826076,
"E_Total" : 14788870
}
}
}
}
}