evcc-io / evcc

Sonne tanken ☀️🚘
https://evcc.io
MIT License
3.41k stars 623 forks source link

1 million mqtt messages within 5 minute #16563

Open chiefjoejj opened 1 day ago

chiefjoejj commented 1 day ago

Describe the bug

My EVCC-installation pushes out a crazy amount of mqtt-messages which causes a high cpu load within my docker environment. Otherwise I wouldn't care because it is working - apart from the constant error messages telling me that there are "no message IDs availabe" because I guess my mqtt-broker is completely giving up... Tried a couple of modifications within my evcc.yaml but no luck so far to fix it. help, please! :)

Steps to reproduce

  1. start container
  2. wait a couple of seconds
  3. watch the mqtt messages skyrocket ...

Configuration details

# open evcc at http://evcc.local:7070
network:
  schema: http
  host: evcc.local # .local suffix announces the hostname on MDNS
  port: 7070

log: info

# unique installation id
plant: 1234567890123456789012345678901234567890123456789012345678xxxxxx

interval: 30 # control cycle interval

# trial token, valid until 2024-10-09
#sponsortoken: xxx

# sponsors can set telemetry: true to enable anonymous data aggregation
# see https://github.com/evcc-io/evcc/discussions/4554
telemetry: false

meters:
  - name: SolarEdge
    type: template
    template: victron-energy
    usage: pv
    host: 192.168.3.11 # IP address or hostname
    port: 502 # Port (optional)
#  - name: pv
#    type: custom
#    power: # Leistung (W)
#      source: mqtt
#      topic: victron/solaredge/power_w
#    energy: # Energie (kWh)
#      source: mqtt
#      topic: victron/solaredge/energy_kwh
#      scale: 1.000
#  - name: Stromnetz
#    type: template
#    template: victron-energy
#    usage: grid
#    host: 192.168.3.11 # IP address or hostname
#    port: 502 # Port (optional)
#    meterid: # Grid-Meter VRM instance- can be read out in VRM portal or via remoteUI. (optional)
  - name: Stromnetz
    type: custom
    power: # Leistung (W) - Forward
      source: mqtt
      topic: victron/grid/power_forward_w
      scale: -1
    energy: # Energie (kWh)
      source: mqtt
      topic: victron/grid/imported_kwh
      scale: 1
  - name: Hausspeicher
    type: template
    template: victron-energy
    usage: battery
    host: 192.168.3.11 # IP address or hostname
    port: 502 # Port (optional)
    capacity: 90 # Battery capacity in kWh (optional)
    minsoc: 80 # Immediate charging with maximum power up to the defined state of charge independently from solar production if the charge mode is not set to 'Off' (optional)
    maxsoc: # optional

chargers:
  - name: CarportL
    type: template
    template: openwb-pro
    host: 192.168.3.156
    #host: openWBPro-669974.fritz.box # IP-Adresse oder Hostname
  - name: CarportR
    type: template
    template: openwb-pro
    host: 192.168.3.119
    #host: openWBPro-481710.fritz.box # IP-Adresse oder Hostname

loadpoints:
  - title: "Carport Links"
    charger: CarportL
    mode: pv # Standardmodus zum Laden
    phases: 0 # Automatische Umschaltung zwischen 1 und 3 Phasen
    enable:
      threshold: 0 # 0 = Export die minimale Ladeleistung erreicht haben
      delay: 1m
    disable:
      threshold: 200 # Maximaler Netzbezug von 200W ist erlaubt
      delay: 3m
    #mincurrent: 6 # Mindestens 6A
    #maxcurrent: 32 # Maximal 16A
  - title: "Carport Rechts"
    charger: CarportR
    mode: pv # Standardmodus zum Laden
    phases: 0 # Automatische Umschaltung zwischen 1 und 3 Phasen
    enable:
      threshold: 0 # 0 = Export die minimale Ladeleistung erreicht haben
      delay: 1m
    disable:
      threshold: 200 # Maximaler Netzbezug von 200W ist erlaubt
      delay: 3m
    #mincurrent: 6 # Mindestens 6A
    #maxcurrent: 32 # Maximal 16A

vehicles:
  - name: Shiby
    type: template
    template: teslamate
    title: # Wird in der Benutzeroberfläche angezeigt (optional)
    id: 1 # optional
    capacity: 56 # Akkukapazität in kWh (optional)
    icon: car # Icon in der Benutzeroberfläche (optional)
    phases: 3 # Die maximale Anzahl der Phasen welche genutzt werden können (optional)
    mode: # Möglich sind Off, Now, MinPV und PV, oder leer wenn keiner definiert werden soll (optional)
    minCurrent: 6 # Definiert die minimale Stromstärke pro angeschlossener Phase mit welcher das Fahrzeug geladen werden soll (optional)
    maxCurrent: 32 # Definiert die maximale Stromstärke pro angeschlossener Phase mit welcher das Fahrzeug geladen werden soll (optional)
    identifiers: # Fahrzeugidentifikation# Kann meist erst später eingetragen werden, siehe: https://docs.evcc.io/docs/features/vehicle (optional)
       - 98:ED:5C:xx:xx:xx
    priority: # Priorität des Ladepunktes oder Fahrzeugs in Relation zu anderen Ladepunkten oder Fahrzeugen für die Zuweisung von PV-Energie (optional)
  - name: Shaby
    type: template
    template: teslamate
    title: # Wird in der Benutzeroberfläche angezeigt (optional)
    id: 2 # optional
    capacity: 71 # Akkukapazität in kWh (optional)
    icon: car # Icon in der Benutzeroberfläche (optional)
    phases: 3 # Die maximale Anzahl der Phasen welche genutzt werden können (optional)
    mode: # Möglich sind Off, Now, MinPV und PV, oder leer wenn keiner definiert werden soll (optional)
    minCurrent: 6 # Definiert die minimale Stromstärke pro angeschlossener Phase mit welcher das Fahrzeug geladen werden soll (optional)
    maxCurrent: 32 # Definiert die maximale Stromstärke pro angeschlossener Phase mit welcher das Fahrzeug geladen werden soll (optional)
    identifiers: # Fahrzeugidentifikation# Kann meist erst später eingetragen werden, siehe: https://docs.evcc.io/docs/features/vehicle (optional)
       - DC:44:27:xx:xx:xx
       - dc:44:27:xx:xx:xx
    priority: # Priorität des Ladepunktes oder Fahrzeugs in Relation zu anderen Ladepunkten oder Fahrzeugen für die Zuweisung von PV-Energie (optional)

tariffs:
  currency: EUR
  grid:
    type: awattar
    region: de # optional, choose at for Austria
    charges: 0.10 # optional, additional charges per kWh
    tax: 0.19 # optional, additional tax (0.1 for 10%)
#    type: fixed
#    price: 0.4
  feedin:
    type: awattar
    region: de # optional, choose at for Austria
    charges: 0 # optional, additional charges per kWh
    tax: 0 # optional, additional tax (0.1 for 10%)
#    type: fixed
#    price: 0.09
  planner:
    type: grünstromindex
    zip: 74523

mqtt:
  broker: 192.168.3.8:1883
  topic: evcc
  clientid: evcc
  #user: evcc
  #password: xyz123123567567

# influx database
#influx:
#   url: http://192.168.3.30:8086
#   database: hallbude
#   user: pi
#   password: password

site:
  title: Hallbude
  meters:
    grid: Stromnetz
    pv: SolarEdge
    battery: Hausspeicher
  residualPower: 300 # Soll-Arbeitspunkt der Überschussregelung am Netzübergang, 300 bedeutet 300W Einspeisung

# push messages
messaging:
  events:
    start:
      title: Ladevorgang gestartet
      msg: Ladevorgang wurde mit Modus "${mode}" gestartet
    stop:
      title: Ladevorgang beendet
      msg: ${chargedEnergy:%.1fk}kWh in ${chargeDuration} geladen
    connect:
      title: Fahrzeug verbunden
      msg: Ladepunkt ${loadpoint}
    disconnect:
      title: Fahrzeug getrennt
      msg: Ladepunkt ${loadpoint} nach ${connectedDuration} getrennt
  services:
  # - type: pushover
  #   app: # app id
  #   recipients:
  #   - # list of recipient ids
  # - type: telegram
  #   token: asdf
  #   chats:
  #     - -1234 # list of chat ids
  # - type: email
  #   uri: smtp://<user>:<password>@<host>:<port>/?fromAddress=<from>&toAddresses=<to>
  # - type: ntfy
  #   uri: https://<host>/<topics>
  #   priority: <priority>
  #   tags: <tags>

Log details

[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:14 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:15 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:16 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/chargeTotalImport: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/chargeTotalImport: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionSolarPercentage: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionSolarPercentage: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionPricePerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionPricePerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/2/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/soc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/soc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/sessionEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/sessionEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/sessionSolarPercentage: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/sessionSolarPercentage: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:17 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:18 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/charging: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/charging: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:24 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/1/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/1/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargeTotalImport: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/chargeTotalImport: timeout
[mqtt  ] ERROR 2024/10/08 10:26:25 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/pv/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/pv/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:26 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planOverrun: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/planOverrun: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:27 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/sessionEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/sessionEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/2/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/2/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:28 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/controllable: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/battery/1/controllable: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:34 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/chargeDuration: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/chargeDuration: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:35 send: evcc/loadpoints/2/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/battery/1/soc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:36 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batteryCapacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batteryCapacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batterySoc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batterySoc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/sessionCo2PerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/sessionCo2PerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/pvEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:37 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/1/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/1/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/tariffPriceHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/tariffPriceHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/tariffPriceLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/tariffPriceLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:38 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:44 send: evcc/loadpoints/1/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/effectiveMaxCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/loadpoints/2/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/greenShareLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:45 send: evcc/site/greenShareLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/1/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/1/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionPrice: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionPrice: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/chargedEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:46 send: evcc/loadpoints/2/chargedEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/vehicleWelcomeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/vehicleWelcomeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeDuration: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeDuration: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeTotalImport: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/effectivePriority: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/sessionCo2PerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargedEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargedEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveMaxCurrent: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveMaxCurrent: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveLimitSoc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveLimitSoc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/2/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/greenShareHome: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:47 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/2/sessionPricePerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/loadpoints/2/sessionPricePerKWh: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:48 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/planProjectedEnd: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/effectivePlanTime: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/planProjectedEnd: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/battery/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pv/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/pv/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/2/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:54 send: evcc/site/battery: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pv/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/1/smartCostNextStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/planOverrun: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:55 send: evcc/loadpoints/2/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/batteryCapacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/batteryCapacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/gridPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/gridPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/gridEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/site/gridEnergy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/chargeDuration: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/vehicleWelcomeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/2/effectiveLimitSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/vehicleWelcomeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:56 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/planOverrun: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/planOverrun: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectivePlanTime: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/chargeCurrents: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceLoadpoints: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/tariffPriceHome: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/2/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:57 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/sessionPrice: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/mode: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/planProjectedStart: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/batteryGridChargeActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargeCurrents/l1: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/site/batteryGridChargeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/2/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargeCurrents/l2: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:26:58 send: evcc/loadpoints/1/chargeCurrents/l2: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/sessionCo2PerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/sessionCo2PerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/capacity: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery/1/controllable: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/pvPower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/enabled: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/connected: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/tariffPriceLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/greenShareHome: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/battery: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/connected: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/1/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:04 send: evcc/loadpoints/2/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/smartCostActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/smartCostNextStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/chargeCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionPricePerKWh: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionSolarPercentage: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/smartCostActive: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/power: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/energy: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/soc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/battery/1/soc: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/energy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv/1/power: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/homePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/site/pv: timeout
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/charging: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/charging: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:05 send: evcc/loadpoints/2/enabled: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batterySoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/2/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/1/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/2/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/1/charging: timeout
[mqtt  ] ERROR 2024/10/08 10:27:06 send: evcc/loadpoints/1/chargeCurrents/l1: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/chargedEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/chargeCurrents/l3: no message IDs available
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/pvPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/greenShareLoadpoints: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/effectivePriority: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/2/vehicleWelcomeActive: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/sessionEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/effectivePlanSoc: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/mode: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/batteryPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/chargeCurrents/l2: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/loadpoints/1/effectiveMinCurrent: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:07 send: evcc/site/batteryCapacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/planProjectedStart: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargePower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/battery/1/capacity: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargeCurrents/l3: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/gridPower: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/loadpoints/1/chargeCurrents: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/gridEnergy: timeout
[mqtt  ] ERROR 2024/10/08 10:27:08 send: evcc/site/gridEnergy: timeout

What type of operating system are you running?

Linux

Nightly build

Version

v0.130.13

RenatusRo commented 1 day ago

Are you sure about the health of your broker? I've got this once every so many months, to be fixed by throwing away the broker and re-installing it.

chiefjoejj commented 22 hours ago

The broker is up and running - completely normal behaviour. All other clients connect perfectly without issues. Updated the mqtt-broker - same probleme as before. Tried a test-mqtt-broker - same probleme.

Only when I set the ip-addresses for the OpenWB Pros to nirvana then the probleme with millions of mqtt messages disappears. Updated the firmware of my two OpenWB Pros a few minutes ago but same issue...

andig commented 21 hours ago

start container wait a couple of seconds watch the mqtt messages skyrocket

Not visible in the log.

Dein Broker hat einen Schluckauf und anscheinend funktioniert das Reconnect nicht, deshalb stauen die sich die Nachrichten. Leider kann ich das Reconnect-Issue (das wir auch schon in https://github.com/volkszaehler/mbmd/issues/346 gesehen) nicht reproduzieren. Ohne Reproducer gibts leider keinen Fix. Im Zweifel musst Du versuchen die Ursache lokal mit Deinem Broker zu identifizieren, ein kleines Go-Tool bauen und ggf. ein Ticket bei https://github.com/eclipse/paho.mqtt.golang auf machen. Ich hab leider keinen Anhaltspunkt wo ich suchen könnte.

Maybe c5d31684f8946dec4ccf52f8b7b5b888c3b67941 can help with the load, but it won't fix the reconnect.

chiefjoejj commented 19 hours ago

I tried another MQTT-broker in my network - the one hosted on my Venus OS installation. Same probleme here - My wild guess is still that it has to do something with the openWB Pros. As soon as EVCC connects to the wallboxes the probleme starts...

andig commented 18 hours ago

OWBPro has nothing to do with mqtt.