Replies: 7 comments
-
Sieht so aus, als würde es ein Problem in Deinem angepassten Script in der Funktion aggregateMonth() geben. Alle Aggregationen, die nach den Loadpoints kommen, fehlen hier. Also alles ab dieser Zeile: Kannst Du mal Deine angepasste |
Beta Was this translation helpful? Give feedback.
-
Dein Support ist echt der Hammer !
|
Beta Was this translation helpful? Give feedback.
-
Joah... das ist dann klar. Du hast hier den Rest der Funktion entfernt ;-). Füge mal wieder die Zeilen 252-260 ein: evcc-grafana-dashboards/scripts/evcc-influx-aggregate.sh Lines 252 to 260 in b01adf2 Danach bitte die Aggregation der Jahre nochmal neu starten - dann sollten die Datenpunkte wieder da sein. |
Beta Was this translation helpful? Give feedback.
-
wie auch immer das passieren konnte.......
|
Beta Was this translation helpful? Give feedback.
-
Hab mir mal erlaubt die Einrückungen zu korrigieren. Mir rollen sich sonst die Fußnägel auf ;-) aggregateMonth() {
ayear=$1
amonth=$2
logInfo "`printf "%04d" $ayear`-`printf "%02d" $amonth`: Aggregating monthly metrics."
writeMonthlyEnergies "value" "pvDailyEnergy" "pvMonthlyEnergy" $ayear $amonth
writeMonthlyEnergies "value" "homeDailyEnergy" "homeMonthlyEnergy" $ayear $amonth
writeMonthlyEnergies "value" "carDailyEnergy" "carMonthlyEnergy" $ayear $amonth
writeMonthlyEnergies "value" "loadpoint1DailyEnergy" "loadpoint1MonthlyEnergy" $ayear $amonth
if [ "$LOADPOINT_2_ENABLED" == "true" ]; then
writeMonthlyEnergies "value" "loadpoint2DailyEnergy" "loadpoint2MonthlyEnergy" $ayear $amonth
else
logDebug "Loadpoint 2 is disabled."
fi
if [ "$LOADPOINT_3_ENABLED" == "true" ]; then
writeMonthlyEnergies "value" "loadpoint3DailyEnergy" "loadpoint3MonthlyEnergy" $ayear $amonth
else
logDebug "Loadpoint 3 is disabled."
fi
writeMonthlyEnergies "value" "gridDailyEnergy" "gridMonthlyEnergy" $ayear $amonth
writeMonthlyEnergies "value" "feedInDailyEnergy" "feedInMonthlyEnergy" $ayear $amonth
if [ "$HOME_BATTERY" == "true" ]; then
writeMonthlyEnergies "value" "dischargeDailyEnergy" "dischargeMonthlyEnergy" $ayear $amonth
writeMonthlyEnergies "value" "chargeDailyEnergy" "chargeMonthlyEnergy" $ayear $amonth
else
logDebug "Home battery aggregation is disabled"
fi
} |
Beta Was this translation helpful? Give feedback.
-
Kein Problem, läuft grade durch dauert gefühlt zumindest schon mal länger. |
Beta Was this translation helpful? Give feedback.
-
Alles Funktioniert, Danke. |
Beta Was this translation helpful? Give feedback.
-
Hi,
ich muss schon wieder nerven.
Ich habe grade festgestellt das mir ein Datenpunkte fehlt:
gibt es eine Möglichkeit diese zu überprüfen oder neu anlegen zu lassen.
Hier auch meine Meter:
Hier auch nochmal der Script:
Grüße
Beta Was this translation helpful? Give feedback.
All reactions