README
¶
SOLAREDGE_EXPORTER REBOOT 2025
- Prometheus Exporter for Solaredge Solar Inverter
- Local TCP modbus access, local first, no cloud, no internet, no subscription service required
- Grafana Dashboards, Alerting, Monitoring, Actions
forked: github.com/dave92082/solaredge-exporter
- credit goes to the author
- stale/last commit: 5 years ago (no updates or dep bumps since Nov 2020)
2025 REBOOT ACTIONS UPDATES / TODO / DONE:
- seperate main program into cmd/solaredge_exporter
- migrate main repo into library only mode
- update / refactor dependencies
- add Makefiles for build / automatic dependency updates / code quality checks
- add signed semver version tags
- add prometheus build time linker tag, semver version, build, date (including makefile examples)
- major code cleanup / refactor
- add golang release build packages
- add ghrc.io docker builds
- add linker tags / rev / semver
- add nixos package prometheus-solaredge-exporter
- and nixos native integration: services.prometheus.exporter.solaredge.enable = true;
========= LEGACY: README.md LICENSE.md (unmodified) ========
SolarEdge Prometheus Exporter
Having just installed a SolarEdge inverter and not happy with the 15 minute delay and low resolution of the monitoring data provided by the monitoring service/api, I created this exporter to connects directly to SolarEdge inverter over ModBus TCP to export (near) real time data to Prometheus.
Status
The code could use some clean up but I have had it running for a weeks scraping data from the inverter every 5 seconds without any issues.
Requirements
- SolarEdge Inverter that supports SunSpec protocol (Tested with SE5000 w. CPU version 3.2221.0)
- ModBus TCP Enabled on the inverter
- Local network connection to the inverter (No ZigBee/GSM support)
Modbus TCP is a local network connection only and does not interfere or replace your connection to the SolarEdge monitoring service. As per the SolarEdge documentation, the two monitoring methods can be used in parallel without impacting each other.
More information on how to enable ModBus TCP can be found in the SolarEdge Documentation here
TODO
- Implement consumption meter output.
- This may already be working however my consumption meter is not installed yet so I cannot test
Quick Start
-
Download the binary from the Releases section for your platform
-
Configure the exporter using one of the two methods available.
Replace the IP address in these samples with the address of your inverter
- Environment Variables:
INVERTER_ADDRESS=192.168.1.189 EXPORTER_INTERVAL=5 INVERTER_PORT=502
- config.yaml:
Create a config file named
config.yaml
in the same location that you downloaded the executable with the following contents:
SolarEdge: InverterAddress: "192.168.1.189" InverterPort: 502 Exporter: # Update Interval in seconds Interval: 5
-
Add the target to your prometheus server with port
2112
Metrics
Metric | Type | Description/Help |
---|---|---|
SunSpec_DID | Guage | 101 = single phase 102 = split phase1 103 = three phase |
SunSpec_Length | Guage | Registers 50 = Length of model block |
AC_Current | Guage | Amps AC Total Current value |
AC_CurrentA | Guage | Amps AC Phase A Current value |
AC_CurrentB | Guage | Amps AC Phase B Current value |
AC_CurrentC | Guage | Amps AC Phase C Current value |
AC_Current_SF | Guage | AC Current scale factor |
AC_VoltageAB | Guage | Volts AC Voltage Phase AB value |
AC_VoltageBC | Guage | Volts AC Voltage Phase BC value |
AC_VoltageCA | Guage | Volts AC Voltage Phase CA value |
AC_VoltageAN | Guage | Volts AC Voltage Phase A to N value |
AC_VoltageBN | Guage | Volts AC Voltage Phase B to N value |
AC_VoltageCN | Guage | Volts AC Voltage Phase C to N value |
AC_Voltage_SF | Guage | AC Voltage scale factor |
AC_Power | Guage | Watts AC Power value |
AC_Power_SF | Guage | AC Power scale factor |
AC_Frequency | Guage | Hertz AC Frequency value |
AC_Frequency_SF | Guage | Scale factor |
AC_VA | Guage | VA Apparent Power |
AC_VA_SF | Guage | Scale factor |
AC_VAR | Guage | VAR Reactive Power |
AC_VAR_SF | Guage | Scale factor |
AC_PF | Guage | % Power Factor |
AC_PF_SF | Guage | Scale factor |
AC_Energy_WH | Guage | WattHours AC Lifetime Energy production |
AC_Energy_WH_SF | Guage | Scale factor |
DC_Current | Guage | Amps DC Current value |
DC_Current_SF | Guage | Scale factor |
DC_Voltage | Guage | Volts DC Voltage value |
DC_Voltage_SF | Guage | Scale factor |
DC_Power | Guage | Watts DC Power value |
DC_Power_SF | Guage | Scale factor |
Temp_Sink | Guage | Degrees C Heat Sink Temperature |
Temp_SF | Guage | Scale factor |
Status | Guage | Operating State |
Status_Vendor | Guage | Vendor-defined operating state and error codes. For error description, meaning and troubleshooting, refer to the SolarEdge Installation Guide. |
MIT License
Copyright (c) 2019 David Suarez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Directories
¶
Path | Synopsis |
---|---|
cmd
|
|
MIT License
|
MIT License |
MIT License
|
MIT License |
MIT License
|
MIT License |