Costa Tsaousis (ktsaou) 4016e2d9e3 Prepare release 1.7.0 7 years ago
..
node_modules a1392a88d9 updated to latest version of net-snmp 7 years ago
Makefile.am 4016e2d9e3 Prepare release 1.7.0 7 years ago
README.md 3dbcbc5d04 forgot the energy units 7 years ago
fronius.node.js 1c07a0ab78 Lower-casing the chart families, to fit better to netdata naming "convention". 7 years ago
named.node.js be5b69fcd1 changes suggested by codeclimate 8 years ago
sma_webbox.node.js 6c86a447a0 added node.d.conf and node.d markdown files to explain configuration 8 years ago
snmp.node.js 14d788984f do not multiple SNMP title strings; fixes #1929 8 years ago

README.md

Disclaimer

Module configurations are written in JSON and node.js is required.

to be edited.


The following node.d modules are supported:

fronius

This module collects metrics from the configured solar power installation from Fronius Symo. See netdata/conf.d/node.d/fronius.conf.md for more details.

Requirements

  • Configuration file fronius.conf in the node.d netdata config dir (default: /etc/netdata/node.d/fronius.conf)
  • Fronius Symo with network access (http)

It produces per server:

  1. Power

    • Current power input from the grid (positive values), output to the grid (negative values), in W
    • Current power input from the solar panels, in W
    • Current power stored in the accumulator (if present), in W (in theory, untested)
  2. Consumption

    • Local consumption in W
  3. Autonomy

    • Relative autonomy in %. 100 % autonomy means that the solar panels are delivering more power than it is needed by local consumption.
    • Relative self consumption in %. The lower the better
  4. Energy

    • The energy produced during the current day, in kWh
    • The energy produced during the current year, in kWh
  5. Inverter

    • The current power output from the connected inverters, in W, one dimension per inverter. At least one is always present.

configuration

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.