forked from dkruyt/ginlong-scraper
-
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.
Merge pull request #71 from Gentleman1983/13-documentation-of-special…
…-fields-for-influxdb 13 documentation of special fields for influxdb
- Loading branch information
Showing
4 changed files
with
83 additions
and
61 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
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
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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# Mapping internal data / REST endpoints | ||
This table helps to define which Solis REST API endpoints provide which information used for monitoring. | ||
|
||
| fieldKey | fieldType | REST endpoint | API | | ||
|--------------------------|-----------|----------------|------------------------------| | ||
| AC_Current | float | inverterDetail | (iAc1+iAc2+iAc3)/3 | | ||
| AC_Frequency | float | inverterDetail | fac | | ||
| AC_Power | float | inverterDetail | pac | | ||
| AC_Voltage | float | inverterDetail | (uAc1+uAc2+uAc3)/3 | | ||
| Annual_Energy_Used | float | inverterYear | energy - gridSellEnergy | | ||
| Annual_Generation | float | inverterYear | energy | | ||
| Battery_Charge_Percent | float | | | | ||
| Consumption_Energy | float | inverterDetail | homeLoadTotalEnergy | | ||
| Consumption_Power | float | inverterDetail | familyLoadPower | | ||
| DC_Current1 | float | inverterDetail | iPv1 | | ||
| DC_Current2 | float | inverterDetail | iPv2 | | ||
| DC_Current3 | float | inverterDetail | iPv3 | | ||
| DC_Current4 | float | inverterDetail | iPv4 | | ||
| DC_Power_PV1 | float | inverterDetail | pow1 | | ||
| DC_Power_PV2 | float | inverterDetail | pow2 | | ||
| DC_Power_PV3 | float | inverterDetail | pow3 | | ||
| DC_Power_PV4 | float | inverterDetail | pow4 | | ||
| DC_Voltage_PV1 | float | inverterDetail | uPv1 | | ||
| DC_Voltage_PV2 | float | inverterDetail | uPv2 | | ||
| DC_Voltage_PV3 | float | inverterDetail | uPv3 | | ||
| DC_Voltage_PV4 | float | inverterDetail | uPv4 | | ||
| Daily_Energy_Used | float | inverterDetail | eToday - gridSellTodayEnergy | | ||
| Daily_Generation | float | inverterDetail | eToday | | ||
| Generation_Last_Month | float | inverterMonth | energy | | ||
| Inverter_Temperature | float | inverterDetail | inverterTemperature | | ||
| Monthly_Energy_Used | float | inverterMonth | energy - gridSellEnergy | | ||
| Monthly_Generation | float | inverterDetail | eMonth | | ||
| Power_Grid_Total_Power | float | inverterDetail | pSum | | ||
| Total_Energy_Purchased | float | inverterDetail | gridPurchasedTotalEnergy | | ||
| Total_Generation | float | inverterDetail | eTotal | | ||
| Total_On_grid_Generation | float | inverterDetail | gridSellTotalEnergy | | ||
| updateDate | integer | inverterDetail | dataTimestamp | | ||
| fieldKey | fieldType | Unit | REST endpoint | API | | ||
|--------------------------|-----------|------|------------------|------------------------------| | ||
| AC_Current | float | A | inverterDetail | (iAc1+iAc2+iAc3)/3 | | ||
| AC_Frequency | float | Hz | inverterDetail | fac | | ||
| AC_Power | float | W | inverterDetail | pac | | ||
| AC_Voltage | float | V | inverterDetail | (uAc1+uAc2+uAc3)/3 | | ||
| Annual_Energy_Used | float | kWh | inverterDetail | eYear - gridSellYearEnergy | | ||
| Annual_Generation | float | kWh | inverterDetail | eYear | | ||
| Battery_Charge_Percent | float | | | | | ||
| Consumption_Energy | float | kWh | inverterDetail | homeLoadTotalEnergy | | ||
| Consumption_Power | float | W | inverterDetail | familyLoadPower | | ||
| DC_Current1 | float | A | inverterDetail | iPv1 | | ||
| DC_Current2 | float | A | inverterDetail | iPv2 | | ||
| DC_Current3 | float | A | inverterDetail | iPv3 | | ||
| DC_Current4 | float | A | inverterDetail | iPv4 | | ||
| DC_Power_PV1 | float | W | inverterDetail | pow1 | | ||
| DC_Power_PV2 | float | W | inverterDetail | pow2 | | ||
| DC_Power_PV3 | float | W | inverterDetail | pow3 | | ||
| DC_Power_PV4 | float | W | inverterDetail | pow4 | | ||
| DC_Voltage_PV1 | float | V | inverterDetail | uPv1 | | ||
| DC_Voltage_PV2 | float | V | inverterDetail | uPv2 | | ||
| DC_Voltage_PV3 | float | V | inverterDetail | uPv3 | | ||
| DC_Voltage_PV4 | float | V | inverterDetail | uPv4 | | ||
| Daily_Energy_Used | float | kWh | inverterDetail | eToday - gridSellTodayEnergy | | ||
| Daily_Generation | float | kWh | inverterDetail | eToday | | ||
| Generation_Last_Month | float | kWh | inverterYear[-2] | energy | | ||
| Inverter_Temperature | float | °C | inverterDetail | inverterTemperature | | ||
| Monthly_Energy_Used | float | kWh | inverterDetail | eMonth - gridSellMonthEnergy | | ||
| Monthly_Generation | float | kWh | inverterDetail | eMonth | | ||
| Power_Grid_Total_Power | float | W | inverterDetail | pSum | | ||
| Total_Energy_Purchased | float | kWh | inverterDetail | gridPurchasedTotalEnergy | | ||
| Total_Generation | float | kWh | inverterDetail | eTotal | | ||
| Total_On_grid_Generation | float | kWh | inverterDetail | gridSellTotalEnergy | | ||
| updateDate | integer | | inverterDetail | dataTimestamp | |
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