evcc-io / evcc

Sonne tanken β˜€οΈπŸš˜
https://evcc.io
MIT License
3.35k stars 614 forks source link

vehicle soc limit: not available on VW e-Golf with id template #13249

Closed electric-m closed 5 months ago

electric-m commented 5 months ago

Describe the bug

Der Fehler tritt in allen aktuellen Versionen, sowohl nightly, als auch stable auf. Es scheint nicht nur ein kosmetischer Fehler zu sein. targetSoc von evcc wird nicht beachtet (z.B. 90%). In evcc wird zwar bei 90% keine Ladung mehr angezeigt, das Auto wird jedoch weiter bis 100% geladen.

Steps to reproduce

  1. start evcc
  2. start charging in any mode SCR-20240401-mdjc

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
levels:
  cache: error
  lp-1: trace
  id: trace

# unique installation id
plant: 4097c305316ec841e820fd7b0f0b2d5a34bbb6a138ba1a8503a5be8e8c298504

interval: 30s # control cycle interval

sponsortoken: ***

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

meters:
- name: grid1
  type: sma
  serial: *** # insert your own serialnumber

- name: pv2
  type: template
  template: sma-inverter
  usage: pv
  host: 10.1.1.2 # IP-Adresse oder Hostname
  password: ***  # Passwort fΓΌr Benutzergruppe Benutzer # Optional 

chargers:
- type: template
  template: go-e-v3 
  host: 10.1.1.183  
  name: wallbox4

vehicles:
- type: template
  template: id
  title: e-Golf
  user: ***
  password: ***
  vin: ***
  capacity: 35.8
  phases: 2
  icon: car
  mode: pv
  cache: 15m
  name: ev3

loadpoints:
- title: Carport
  charger: wallbox4
  vehicle: ev3
  mode: pv
  #phases: 0
  soc:
    poll:
      mode: connected
      interval: 60m
    estimate: false

site:
  title: Zuhause
  meters:
    grid: grid1
    pv:
    - pv2

# mqtt message broker  
mqtt:  
  broker: 10.1.1.170:1883  
  topic: evcc # root topic for publishing, set empty to disable  
  user: ***  
  password: ***

# Stromtarife
tariffs:  
  currency: EUR # three letter ISO-4217 currency code (default EUR)  
  grid:  
    # either static grid price  
    type: fixed  
    price: 0.3654 # EUR/kWh  

  feedin:  
    # rate for feeding excess (pv) energy to the grid  
    type: fixed  
    price: 0.0683 # EUR/kWh

# push messages

#Logging
influx:
  url: http://10.1.1.188:8086
  database: evcc
  token: ***
  org: ***

messaging:  
  events:  
    start: # charge start event  
      title: Charge of {{.vehicleTitle}} started  
      msg: |  
        Wallbox {{.title}} started charging {{.vehicleTitle}} in {{ toString .mode | upper }} mode.  
        --------------------------  
        evcc Status {{printf `(%d-%02d-%02d %02d:%02d:%02d)` now.Year now.Month now.Day now.Hour now.Minute now.Second}}  
        Netz-Leistung: {{round (divf .gridPower 1000) 3 }} kW  
        Solar-Leistung: {{round (divf .pvPower 1000) 3 }} kW  
        Eigenverbrauch: {{round (divf .homePower 1000) 3 }} kW
        --------------------------
        http://10.1.1.10:7070/  
        {{if .batteryConfigured}}Batteriespeicher-Status: {{round (divf .batteryPower 1000) 3 }} kW ({{.batterySoC }} %){{end}}  
    stop: # charge stop event  
      title: Charge of {{.vehicleTitle}} finished  
      msg: |  
        Wallbox {{.title}} finished charging {{.vehicleTitle}}   
        with {{round (divf .chargedEnergy 1000) 2 }} kWh in {{.chargeDuration}}.  
        --------------------------  
        evcc Status {{printf `(%d-%02d-%02d %02d:%02d:%02d)` now.Year now.Month now.Day now.Hour now.Minute now.Second}}  
        Netz-Leistung: {{round (divf .gridPower 1000) 3 }} kW  
        Solar-Leistung: {{round (divf .pvPower 1000) 3 }} kW  
        Eigenverbrauch: {{round (divf .homePower 1000) 3 }} kW
        --------------------------
        http://10.1.1.10:7070/    
        {{if .batteryConfigured}}Batteriespeicher-Status: {{round (divf .batteryPower 1000) 3 }} kW ({{.batterySoC }} %){{end}}  
    connect: # vehicle connect event  
      title: "{{.vehicleTitle}} connected on wallbox {{.title}}"  
      msg: |  
        {{.vehicleTitle}} connected on wallbox {{.title}} at {{round (divf .pvPower 1000) 2 }} kW PV.  
        --------------------------  
        evcc Status {{printf `(%d-%02d-%02d %02d:%02d:%02d)` now.Year now.Month now.Day now.Hour now.Minute now.Second}}  
        Netz-Leistung: {{round (divf .gridPower 1000) 3 }} kW  
        Solar-Leistung: {{round (divf .pvPower 1000) 3 }} kW  
        Eigenverbrauch: {{round (divf .homePower 1000) 3 }} kW
        --------------------------
        http://10.1.1.10:7070/    
        {{if .batteryConfigured}}Batteriespeicher-Status: {{round (divf .batteryPower 1000) 3 }} kW ({{.batterySoC }} %){{end}}  
    disconnect: # vehicle connected event  
      title: "{{.vehicleTitle}} disconnected of wallbox {{.title}}"  
      msg: |  
        {{.vehicleTitle}} disconnected of wallbox {{.title}} after {{.connectedDuration}}.  
        --------------------------  
        evcc Status {{printf `(%d-%02d-%02d %02d:%02d:%02d)` now.Year now.Month now.Day now.Hour now.Minute now.Second}}  
        Netz-Leistung: {{round (divf .gridPower 1000) 3 }} kW  
        Solar-Leistung: {{round (divf .pvPower 1000) 3 }} kW  
        Eigenverbrauch: {{round (divf .homePower 1000) 3 }} kW
        --------------------------
        http://10.1.1.10:7070/    
        {{if .batteryConfigured}}Batteriespeicher-Status: {{round (divf .batteryPower 1000) 3 }} kW ({{.batterySoC }} %){{end}}  
  services:
    - type: telegram
      token: ***
      chats:
      - ***

Log details

[id    ] TRACE 2024/04/01 13:33:12 <!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="utf-8"/>
    <meta name="viewport"
          content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=no"/>
    <meta name="identitykit" content="loginIdentifier"/>

<script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.eu01.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"535875755",accountID:"2547829",trustKey:"2217462",xpid:"VgMDVl5RARAEUlFQBQQOXlY=",licenseKey:"NRJS-ecd5929e8859410bbd9",applicationID:"460225982"};;/*! For license information please see nr-loader-spa-1.253.0.min.js.LICENSE.txt */
(()=>{var e,t,r={234:(e,t,r)=>{"use strict";r.d(t,{P_:()=>m,Mt:()=>b,C5:()=>s,DL:()=>x,OP:()=>N,lF:()=>C,Yu:()=>w,Dg:()=>v,CX:()=>c,GE:()=>E,sU:()=>O});var n=r(8632),o=r(9567);const i={beacon:n.ce.beacon,errorBeacon:n.ce.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,o.D)(t,i);const r=(0,n.ek)(e);r&&(r.info=a[e])}const d=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var u=r(7056),l=r(50);const f="[data-nr-mask]",h=()=>{const e={mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{feature_flags:[],proxy:{assets:void 0,beacon:void 0},privacy:{cookies_enabled:!0},ajax:{deny_list:void 0,block_internal:!0,enabled:!0,harvestTimeSeconds:10,autoStart:!0},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},session:{domain:void 0,expiresMs:u.oD,inactiveMs:u.Hb},ssl:void 0,obfuscate:void 0,jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},metrics:{enabled:!0,autoStart:!0},page_action:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1,autoStart:!0},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},harvest:{tooManyRequestsDelay:60},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,inline_stylesheet:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){d(t)?e.mask_selector="".concat(t,",").concat(f):""===t||null===t?e.mask_selector=f:(0,l.Z)("An invalid session_replay.mask_selector was provided. '*' will be used.",t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){d(t)?e.block_selector+=",".concat(t):""!==t&&(0,l.Z)("An invalid session_replay.block_selector was provided and will not be used",t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,l.Z)("An invalid session_replay.mask_input_option was provided and will not be used",t)}},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},soft_navigations:{enabled:!0,harvestTimeSeconds:10,autoStart:!0}}},p={},g="All configuration objects require an agent identifier!";function m(e){if(!e)throw new Error(g);if(!p[e])throw new Error("Configuration for ".concat(e," was never set"));return p[e]}function v(e,t){if(!e)throw new Error(g);p[e]=(0,o.D)(t,h());const r=(0,n.ek)(e);r&&(r.init=p[e])}function b(e,t){if(!e)throw new Error(g);var r=m(e);if(r){for(var n=t.split("."),o=0;o<n.length-1;o++)if("object"!=typeof(r=r[n[o]]))return;r=r[n[n.length-1]]}return r}const y={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},A={};function x(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!A[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return A[e]}function E(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");A[e]=(0,o.D)(t,y);const r=(0,n.ek)(e);r&&(r.loader_config=A[e])}const w=(0,n.mF)().o;var _=r(385),S=r(6818);const T={buildEnv:S.Re,customTransaction:void 0,disabled:!1,distMethod:S.gF,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,offset:Math.floor(_._A?.performance?.timeOrigin||_._A?.performance?.timing?.navigationStart||Date.now()),onerror:void 0,origin:""+_._A.location,ptid:void 0,releaseIds:{},session:void 0,xhrWrappable:"function"==typeof _._A.XMLHttpRequest?.prototype?.addEventListener,version:S.q4,denyList:void 0},R={};function N(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!R[e])throw new Error("Runtime for ".concat(e," was never set"));return R[e]}function O(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");R[e]=(0,o.D)(t,T);const r=(0,n.ek)(e);r&&(r.runtime=R[e])}function C(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},9567:(e,t,r)=>{"use strict";r.d(t,{D:()=>o});var n=r(50);function o(e,t){try{if(!e||"object"!=typeof e)return(0,n.Z)("Setting a Configurable requires an object as input");if(!t||"object"!=typeof t)return(0,n.Z)("Setting a Configurable requires a model to set its initial properties");const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),i=0===Object.keys(r).length?e:r;for(let a in i)if(void 0!==e[a])try{Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=o(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.Z)("An error occurred while setting a property of a Configurable",e)}return r}catch(e){(0,n.Z)("An error occured while setting a Configurable",e)}}},6818:(e,t,r)=>{"use strict";r.d(t,{Re:()=>o,gF:()=>i,lF:()=>a,q4:()=>n});const n="1.253.0",o="PROD",i="CDN",a="2.0.0-alpha.11"},385:(e,t,r)=>{"use strict";r.d(t,{FN:()=>c,IF:()=>l,LW:()=>a,Nk:()=>h,Tt:()=>d,_A:()=>i,cv:()=>p,iS:()=>s,il:()=>n,ux:()=>u,v6:()=>o,w1:()=>f});const n="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),i=n?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),a="complete"===i?.document?.readyState,s=Boolean("hidden"===i?.document?.visibilityState),c=""+i?.location,d=/iPad|iPhone|iPod/.test(i.navigator?.userAgent),u=d&&"undefined"==typeof SharedWorker,l=(()=>{const e=i.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),f=Boolean(n&&window.document.documentMode),h=!!i.navigator?.sendBeacon,p=Math.floor(i?.performance?.timeOrigin||i?.performance?.timing?.navigationStart||Date.now())},9907:(e,t,r)=>{"use strict";r.d(t,{A:()=>n});class n{constructor(e){this.contextId=e}}},4938:(e,t,r)=>{"use strict";r.d(t,{v:()=>a});var n=r(8632),o=r(3117),i=r(9907);class a{static contextId="nr@context:".concat(o.a);static contextOriginalId="nr@original:".concat(o.a);static contextWrappedId="nr@wrapped:".concat(a.contextId);static getObservationContextByAgentIdentifier(e){const t=(0,n.fP)();return Object.keys(t?.initializedAgents||{}).indexOf(e)>-1?t.initializ
[id    ] TRACE 2024/04/01 13:33:12 POST https://identity.vwgroup.io/signin-service/v1/a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com/login/identifier
[id    ] TRACE 2024/04/01 13:33:12 _csrf=A2Avf3T7RXUCVqYyxQCAvfKbVtib8aZB1NVn5C6W2kuk8pQxYVEXGUzOJhMvYJ4K9S20iMf6e7qryJZsseAChxmj7ymWxvIJ&email=***&hmac=bda8a5075320dd1b98c12f9c00865f1c8a685418b2a0cf2b954c9dbbb7e32609&relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6
[id    ] TRACE 2024/04/01 13:33:12 GET https://identity.vwgroup.io/signin-service/v1/a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com/login/authenticate?relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6
[id    ] TRACE 2024/04/01 13:33:13 <!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="utf-8"/>
    <meta name="viewport"
          content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=no"/>
    <meta name="identitykit" content="loginAuthenticate"/>

<script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.eu01.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"535875755",accountID:"2547829",trustKey:"2217462",xpid:"VgMDVl5RARAEUlFQBQQOXlY=",licenseKey:"NRJS-ecd5929e8859410bbd9",applicationID:"460225982"};;/*! For license information please see nr-loader-spa-1.253.0.min.js.LICENSE.txt */
(()=>{var e,t,r={234:(e,t,r)=>{"use strict";r.d(t,{P_:()=>m,Mt:()=>b,C5:()=>s,DL:()=>x,OP:()=>N,lF:()=>C,Yu:()=>w,Dg:()=>v,CX:()=>c,GE:()=>E,sU:()=>O});var n=r(8632),o=r(9567);const i={beacon:n.ce.beacon,errorBeacon:n.ce.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,o.D)(t,i);const r=(0,n.ek)(e);r&&(r.info=a[e])}const d=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var u=r(7056),l=r(50);const f="[data-nr-mask]",h=()=>{const e={mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{feature_flags:[],proxy:{assets:void 0,beacon:void 0},privacy:{cookies_enabled:!0},ajax:{deny_list:void 0,block_internal:!0,enabled:!0,harvestTimeSeconds:10,autoStart:!0},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},session:{domain:void 0,expiresMs:u.oD,inactiveMs:u.Hb},ssl:void 0,obfuscate:void 0,jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},metrics:{enabled:!0,autoStart:!0},page_action:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1,autoStart:!0},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},harvest:{tooManyRequestsDelay:60},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,inline_stylesheet:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){d(t)?e.mask_selector="".concat(t,",").concat(f):""===t||null===t?e.mask_selector=f:(0,l.Z)("An invalid session_replay.mask_selector was provided. '*' will be used.",t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){d(t)?e.block_selector+=",".concat(t):""!==t&&(0,l.Z)("An invalid session_replay.block_selector was provided and will not be used",t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,l.Z)("An invalid session_replay.mask_input_option was provided and will not be used",t)}},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},soft_navigations:{enabled:!0,harvestTimeSeconds:10,autoStart:!0}}},p={},g="All configuration objects require an agent identifier!";function m(e){if(!e)throw new Error(g);if(!p[e])throw new Error("Configuration for ".concat(e," was never set"));return p[e]}function v(e,t){if(!e)throw new Error(g);p[e]=(0,o.D)(t,h());const r=(0,n.ek)(e);r&&(r.init=p[e])}function b(e,t){if(!e)throw new Error(g);var r=m(e);if(r){for(var n=t.split("."),o=0;o<n.length-1;o++)if("object"!=typeof(r=r[n[o]]))return;r=r[n[n.length-1]]}return r}const y={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},A={};function x(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!A[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return A[e]}function E(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");A[e]=(0,o.D)(t,y);const r=(0,n.ek)(e);r&&(r.loader_config=A[e])}const w=(0,n.mF)().o;var _=r(385),S=r(6818);const T={buildEnv:S.Re,customTransaction:void 0,disabled:!1,distMethod:S.gF,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,offset:Math.floor(_._A?.performance?.timeOrigin||_._A?.performance?.timing?.navigationStart||Date.now()),onerror:void 0,origin:""+_._A.location,ptid:void 0,releaseIds:{},session:void 0,xhrWrappable:"function"==typeof _._A.XMLHttpRequest?.prototype?.addEventListener,version:S.q4,denyList:void 0},R={};function N(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!R[e])throw new Error("Runtime for ".concat(e," was never set"));return R[e]}function O(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");R[e]=(0,o.D)(t,T);const r=(0,n.ek)(e);r&&(r.runtime=R[e])}function C(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},9567:(e,t,r)=>{"use strict";r.d(t,{D:()=>o});var n=r(50);function o(e,t){try{if(!e||"object"!=typeof e)return(0,n.Z)("Setting a Configurable requires an object as input");if(!t||"object"!=typeof t)return(0,n.Z)("Setting a Configurable requires a model to set its initial properties");const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),i=0===Object.keys(r).length?e:r;for(let a in i)if(void 0!==e[a])try{Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=o(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.Z)("An error occurred while setting a property of a Configurable",e)}return r}catch(e){(0,n.Z)("An error occured while setting a Configurable",e)}}},6818:(e,t,r)=>{"use strict";r.d(t,{Re:()=>o,gF:()=>i,lF:()=>a,q4:()=>n});const n="1.253.0",o="PROD",i="CDN",a="2.0.0-alpha.11"},385:(e,t,r)=>{"use strict";r.d(t,{FN:()=>c,IF:()=>l,LW:()=>a,Nk:()=>h,Tt:()=>d,_A:()=>i,cv:()=>p,iS:()=>s,il:()=>n,ux:()=>u,v6:()=>o,w1:()=>f});const n="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),i=n?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),a="complete"===i?.document?.readyState,s=Boolean("hidden"===i?.document?.visibilityState),c=""+i?.location,d=/iPad|iPhone|iPod/.test(i.navigator?.userAgent),u=d&&"undefined"==typeof SharedWorker,l=(()=>{const e=i.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),f=Boolean(n&&window.document.documentMode),h=!!i.navigator?.sendBeacon,p=Math.floor(i?.performance?.timeOrigin||i?.performance?.timing?.navigationStart||Date.now())},9907:(e,t,r)=>{"use strict";r.d(t,{A:()=>n});class n{constructor(e){this.contextId=e}}},4938:(e,t,r)=>{"use strict";r.d(t,{v:()=>a});var n=r(8632),o=r(3117),i=r(9907);class a{static contextId="nr@context:".concat(o.a);static contextOriginalId="nr@original:".concat(o.a);static contextWrappedId="nr@wrapped:".concat(a.contextId);static getObservationContextByAgentIdentifier(e){const t=(0,n.fP)();return Object.keys(t?.initializedAgents||{}).indexOf(e)>-1?t.initial
[id    ] TRACE 2024/04/01 13:33:13 POST https://identity.vwgroup.io/signin-service/v1/a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com/login/authenticate
[id    ] TRACE 2024/04/01 13:33:13 _csrf=FjssD8o8vFDkPWxUE3qFpQLxKhaNe25wTdilvF8KokkRolCudAoUafIJ3zbJC1RsI1exkDeQB3S9Ql5dKO3A32g_lysjljaW&email=***&hmac=31f633e44ce83a71d4ced7b658c3a21371e66e347e8e32eed0fbbbce6248eb79&password=***&relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6
[id    ] TRACE 2024/04/01 13:33:13 GET https://identity.vwgroup.io/oidc/v1/oauth/sso?clientId=a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com&relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6&userId=62fd084b-355b-409f-be71-6f7b19626b89&HMAC=5932947afc8b90c7f0bf16f225e6a5ad98d6bed39bbcbde61261d6b6787906cd
[id    ] TRACE 2024/04/01 13:33:13 GET https://identity.vwgroup.io/signin-service/v1/consent/users/62fd084b-355b-409f-be71-6f7b19626b89/a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com?scopes=openid%20profile%20badge%20cars%20dealers%20vin&relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6&callback=https://identity.vwgroup.io/oidc/v1/oauth/client/callback&hmac=f0de1b67ee0890bbafb3367a122d074b1b249a5c54b0414eaf263065e2df956f
[id    ] TRACE 2024/04/01 13:33:13 GET https://identity.vwgroup.io/oidc/v1/oauth/client/callback/success?user_id=62fd084b-355b-409f-be71-6f7b19626b89&client_id=a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com&scopes=openid%20profile%20badge%20cars%20dealers%20vin&consentedScopes=openid%20profile%20badge%20cars%20dealers%20vin&relayState=a54748ef7e9defd2a64b9b17a0a7aa9eeb0439d6&hmac=08a1be0544d7667c32f5895eb9a7e2d6db5463c3f025e3d63d2ea1772fa7c3b0
[id    ] TRACE 2024/04/01 13:33:14 POST https://emea.bff.cariad.digital/user-login/login/v1
[id    ] TRACE 2024/04/01 13:33:14 {"access_token":"eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiI2MmZkMDg0Yi0zNTViLTQwOWYtYmU3MS02ZjdiMTk2MjZiODkiLCJhdWQiOiJhMjRmYmE2My0zNGIzLTRkNDMtYjE4MS05NDIxMTFlNmJkYThAYXBwc192dy1kaWxhYl9jb20iLCJzY3AiOiJvcGVuaWQgcHJvZmlsZSBiYWRnZSBjYXJzIGRlYWxlcnMgdmluIiwiYWF0IjoiaWRlbnRpdHlraXQiLCJpc3MiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8iLCJqdHQiOiJhY2Nlc3NfdG9rZW4iLCJleHAiOjE3MTE5NzQ3OTQsImlhdCI6MTcxMTk3MTE5NCwibGVlIjpbIlZPTEtTV0FHRU4iXSwianRpIjoiZDk5ZDk2M2YtZGU0My00YjM2LWIxMWEtMzY5YmYyZmQ4Njk4In0.uHda3LbeEGgw17LG310HjmU8jznF0l_9Ad9OazJaGtbiHKOo1LYgvOxJJScHlLjxX2B2IytxUEqlxx74f-mw0uuPxPQi98bc-5uSWaC3tZ55lJ7khe1qmDB_mbHdbp6A6kNvGVlH2r449m2x3UTYfY74GMv-_Gz_aU4TxpBFhR9Pt8Fen_nm6GqQki8p5h9v42cTZgWSL83mWEAgjD0i4c9ASiosKf4MJ6iSMGd9-8a1gJOn4Ljx7lyCLChUkwCoVodIgHkJn5NwQy7RLIE4mtEjv1RGhN-89Baf0rkFKgV_3rPBmcJosdDD8Nst0PhyzuyL1h9uHrKZFFKYIS70o2W1N3jv6q2VbYhG1cEjg_oIs0GtOOpqHy8K6sw2CMFQLJcD_W_OnLt63Z_5zQXd7f9oo91lRf9TwzQ58DyVaWeNnB97fZNAZ78u36dOL_G3D9GzlWF3ad9X-63zSc9XLn5wNsBIPJEOJiG08hcbSyUpNsRBhLb-ahSJaUpqFicrO8rP5MZ3I9pvRVkcLUvtmxEcfiJKuH3VRU2lHq7C7nINz5HSsTRvgxa5C2vNwvd1xQbkzY8VWtbmunHq8G15eT-kigGHvDbsNFVYhituITrqQNtxhQBXRK-60yvVMlK7h_4dJHB39dRC42uJb2l8Ji4dunmf6LAUuRSTxVr1WMI","authorizationCode":"eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiI2MmZkMDg0Yi0zNTViLTQwOWYtYmU3MS02ZjdiMTk2MjZiODkiLCJhdWQiOiJhMjRmYmE2My0zNGIzLTRkNDMtYjE4MS05NDIxMTFlNmJkYThAYXBwc192dy1kaWxhYl9jb20iLCJhY3IiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8vYXNzdXJhbmNlL2xvYS0yIiwic2NwIjoib3BlbmlkIHByb2ZpbGUgYmFkZ2UgY2FycyBkZWFsZXJzIHZpbiIsImFhdCI6ImlkZW50aXR5a2l0IiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS52d2dyb3VwLmlvIiwianR0IjoiYXV0aG9yaXphdGlvbl9jb2RlIiwiZXhwIjoxNzExOTcxNDk0LCJpYXQiOjE3MTE5NzExOTQsIm5vbmNlIjoiemhKS0VXRUFGZVVnVGNRc1dmaXdTQnNXa3VtVkl5ZmpqWnhrdGFVWWRvVCIsImp0aSI6IjJjM2E4ODhjLTE2NjMtNGJhNy1hY2YzLWI5ZmRlMTA5ZWM5NiJ9.qs5rAe2RBCpNcePU7mzepK1X-qrGhGmf9jm3RURD3-59LNbKTVbudnoHsBzKZpPbLMOr2K834lLBW4rN6xy0CPI-sFShNV6i9jtLeZqOPbFFYJf5w-q8jZilIJWKfmw2rC7GbS88ONdsvy7bZflAOYLh8u1WN_WaPdse-z1p1z8R44Pq_tk53LD-DH7WXviDg3ffwRTLY_uzvpQ1DDZM128thc6aqsCRHBx4-HkmJu6D3XV1QdDYlNWz2vwYwJqaFjKmm7yneEbvbN-AUe-toPs4b4WQfbDloak9w6TWuI1OnSHHSuF_EAy0cq_hpEI25aCElIwRSHPLCPm8N9ymd_p3WZr8p0Sop-hARi4fsS28zURmSOQBXfiHn1kuX39mtHJDCcAfaTxqGrVNYz6BWr7ypwFglsgAcEJCPLeCJjeuhmDrJcl9V6SXTtXKvcPuWvrNDtZylyA1cMLzarFZ2-fVahlcfY0QGjkA0ThGR_N8339aiXvXoyisNAlU0O-h1NG-Eq_Y8j2SYCQHWOpTWrh9QX_FyZk9z2LsPB6-pVwlUtZiUuNSujDH9eG1vyUH1nUBsIy5NPwRm_dpes8Kxoekmo3_3C8pLDrdbF6OTI48STd0Rw2mGotrHE8DE8jP88VPgZtfMVV5dNb4dhklSsQb24z6bLu1A4V-nN4BDSU","id_token":"eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJhdF9oYXNoIjoiZVRQdGt6UnIwQTdkRVo5cjlrSHNrZyIsInN1YiI6IjYyZmQwODRiLTM1NWItNDA5Zi1iZTcxLTZmN2IxOTYyNmI4OSIsImVtYWlsX3ZlcmlmaWVkIjp0cnVlLCJpc3MiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8iLCJqdHQiOiJpZF90b2tlbiIsIm5vbmNlIjoiemhKS0VXRUFGZVVnVGNRc1dmaXdTQnNXa3VtVkl5ZmpqWnhrdGFVWWRvVCIsImxlZSI6WyJWT0xLU1dBR0VOIl0sImF1ZCI6ImEyNGZiYTYzLTM0YjMtNGQ0My1iMTgxLTk0MjExMWU2YmRhOEBhcHBzX3Z3LWRpbGFiX2NvbSIsImFjciI6Imh0dHBzOi8vaWRlbnRpdHkudndncm91cC5pby9hc3N1cmFuY2UvbG9hLTIiLCJjX2hhc2giOiJSY0tEVWV4NGd3QUVwYTRjQzhOd21BIiwidXBkYXRlZF9hdCI6MTY3OTIyNTg5MDk1NiwiYWF0IjoiaWRlbnRpdHlraXQiLCJleHAiOjE3MTE5NzQ3OTQsImlhdCI6MTcxMTk3MTE5NCwianRpIjoiNTM4NTQxNzItMWRmOC00ZTNhLWE0MzItYjZlOTI4OGQyNzhlIiwiZW1haWwiOiJtaWNoYWVsQGZyZXlsZXIuZXUifQ.AB_wSOZ2FxkgKFtH0YI8TlhU3fBuvAo33ZU3myMhKcnrVuK0U_4mD6qNvYXITDXAqyFVwAKZ8SP4V5UUN64wV-rbcG8fFkYB23dysWHYavuU79qGypMizA6lcQ7oayz3hhvhmyir_TndeDy9tNkitF1L3baAoyUSNOwatY_xsCWu-ZbcNCMK2wF75-q7-BclnWNDppQZfKJMQFFK7RkGRtIAKB6Aq-OqxFPQxCNUgb-iOmotgZ_htsC5vwhiz1J9esDgPuekVPBdR7U074LnIFU3GjdRxKOnCVWofq6EcwPGeeP_ZWdOuDx68o1L-xy3Kl60a8j87N9F4OF3-wenYUzs5XUcskqYIrtHLxFNfmE0IZM4D_YJbXfO6VjWFKQ4qRvgRuDX72U2pXBbADfYWb2J-OkIop1e-k9sSUwxAH9zT3mvj3zmn1pC2x_AlGePLQjHvEblCqaERMljAhwhFIjL-rGbpGoQcBHoD2idCTncm7wHea6zA4f0Fl5fn6Dh_2Wi9EQ0SBpxP09qoQMbJIlc6QhSyzW6gwQnYneMBalc9ntP3r2UkapQmCOVqDyRF_CUls40XvOGzInf78PNJQpJr_jC9HOO0k7K6MhtWm_NaSIWIX4AoBzNiJ5zkCyqan_PHQ5HYnzfkdZxXRntARtqQfelAtJMaN-yM2FW29w","redirect_uri":"weconnect://authenticated","region":"emea","state":"97d17c37b3b9bfbce5ca52c39a9f693887cb6e66faeb76b4d4b4e7cc77b3bf25"}
--
{
  "accessToken" : "eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiI2MmZkMDg0Yi0zNTViLTQwOWYtYmU3MS02ZjdiMTk2MjZiODkiLCJhdWQiOiJhMjRmYmE2My0zNGIzLTRkNDMtYjE4MS05NDIxMTFlNmJkYThAYXBwc192dy1kaWxhYl9jb20iLCJzY3AiOiJvcGVuaWQgcHJvZmlsZSBiYWRnZSBjYXJzIGRlYWxlcnMgdmluIiwiYWF0IjoiaWRlbnRpdHlraXQiLCJpc3MiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8iLCJqdHQiOiJhY2Nlc3NfdG9rZW4iLCJleHAiOjE3MTE5NzQ3OTQsImlhdCI6MTcxMTk3MTE5NCwibGVlIjpbIlZPTEtTV0FHRU4iXSwianRpIjoiZWQ0MTAyNDktNDllMi00NmEyLWIwNjgtMDczNmRjOTc5NWI3In0.XPfq1O8Q2kFMjsVS0OnzYemGoldcbw9YRmdy0hik9Gi3T3rAH6liLRf_HIvvgR17iTsNjK0i58ER5lM5XXfNVs8Ez1gzLQEE4e7vYIL8_Vn13RkKiDMOWHUNALwm0NpNsdOwwPLwcShbo1pO0JFHmujlIXVUUBQVY5SBstyLvxaa_7twhIzJZqnryThDDDmZZsGBTT5lK0pWO9R0B9Eo2wFXVTy6_RMGPkYGMcS1TP08S0qVsSz-IWdqmLOG4Lwl83rrmRcpVFUKm4ZHGdRfZwLtC4Sa1G7cVMDHbcl_IAf-JQg3MPIFCPQd8qj_gM_byE9gz4_4Jkn5lqVi8-rkaRvcXN_TY7kmP2usvzgr2r4ns5eyat1MdaTCtJYZkmFm_bVjWqfv2gvQ8vjTa82pLXHgd_NjaCx5Cbu1Wjlc51SdslP5vQvkf7HCmlTafoscthJ4VtLI1TCrgh2PJGnf7prcxd_CIjesxKLwmB1O36xfZsw_rQ28MmVk7T8OPCuJF-hjKTtf2VtRO_DzTOdfl2wKc-ySoNGCSUH9FxtqcRxrVv2AntP_9N6xPnhqwp2IzpIPvu700qo05dSCYyeBGxCC3x1INeTxinssswF98-NhpHH706K-C-VFMZ6jaEK9LibsZ1nws7l3K26hPPMs9vymsF673nPkmgNybCJ2UsA",
  "refreshToken" : "eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiI2MmZkMDg0Yi0zNTViLTQwOWYtYmU3MS02ZjdiMTk2MjZiODkiLCJhdWQiOiJhMjRmYmE2My0zNGIzLTRkNDMtYjE4MS05NDIxMTFlNmJkYThAYXBwc192dy1kaWxhYl9jb20iLCJhY3IiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8vYXNzdXJhbmNlL2xvYS0yIiwic2NwIjoib3BlbmlkIHByb2ZpbGUgYmFkZ2UgY2FycyBkZWFsZXJzIHZpbiIsImFhdCI6ImlkZW50aXR5a2l0IiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS52d2dyb3VwLmlvIiwianR0IjoicmVmcmVzaF90b2tlbiIsImV4cCI6MTcyNzUyMzE5NCwiaWF0IjoxNzExOTcxMTk0LCJqdGkiOiJjYTJlNGFhYi1iYjgyLTRhMWQtOWU0NC1iZGVkMTgwNWM3ZTgifQ.HYFv2cxBgG57yPiz1OoYmcedjP5toYnLHXS-QhqmUNAgSkQpj7W5xq5cAgUnhfWxo1AeT3GMVvKM3Mfu3EC3DqLfIXtqDm3tazn5Z00OealfWswNgcswJmQZh-f2YJKmVN_xnD98fIs3V-O-5hy2OELZbzrqvhqtIFQ1lVwmMKUUKYJXRX-oR9gwd9P7hbtv4bfDEv--OMh30vhsYIaEOTfxONSLnWvub8zFK2QekPPg2trgJGNPnzwjE51qGE2ROWqv1gpxxRFJooFlIL0tO_iIdROBRtAVJDXOhY8BAJKxAGykaISbHLOmERSmJsK1aC_gxEuV0ueCKEhdTBfQnMlHwQaMWs3l5RQm3oMRc9D0sE9pgrZdosehZPab5T0KNwDT5T4Zt1IbEWRGrWvSSopYi1Chql1a19ajBcZjwVgS0T8rCwlSGyk2aJAmZS1QhAIpJXAI3QZJqUhfJESPx1lOrZdVS2rNy_gzTYX_Slmv-U0o1AQ_rY4SOxgV5eCav37A2YVWEHlhJLT7PNrXHlRW1Kun72ebgnEc_OiS_xI85ZQC58Z8Lj10l2EN9BUz3poQj6XAIHFaoFNgjKXSADrfpZmp11IbLcUa9ikjUqEYR7iAmVms53344Du-W5hVm5eIwJCXdNICpz5_xp-wPWg6R3uM9iV_xUM6hyYTUho",
  "idToken" : "eyJraWQiOiI0ODEyODgzZi05Y2FiLTQwMWMtYTI5OC0wZmEyMTA5Y2ViY2EiLCJhbGciOiJSUzI1NiJ9.eyJhdF9oYXNoIjoicVVGUVpEcDJrbGFXTVptejgyajNNdyIsInN1YiI6IjYyZmQwODRiLTM1NWItNDA5Zi1iZTcxLTZmN2IxOTYyNmI4OSIsImVtYWlsX3ZlcmlmaWVkIjp0cnVlLCJpc3MiOiJodHRwczovL2lkZW50aXR5LnZ3Z3JvdXAuaW8iLCJqdHQiOiJpZF90b2tlbiIsIm5vbmNlIjoiemhKS0VXRUFGZVVnVGNRc1dmaXdTQnNXa3VtVkl5ZmpqWnhrdGFVWWRvVCIsImxlZSI6WyJWT0xLU1dBR0VOIl0sImF1ZCI6ImEyNGZiYTYzLTM0YjMtNGQ0My1iMTgxLTk0MjExMWU2YmRhOEBhcHBzX3Z3LWRpbGFiX2NvbSIsImFjciI6Imh0dHBzOi8vaWRlbnRpdHkudndncm91cC5pby9hc3N1cmFuY2UvbG9hLTIiLCJ1cGRhdGVkX2F0IjoxNjc5MjI1ODkwOTU2LCJhYXQiOiJpZGVudGl0eWtpdCIsImV4cCI6MTcxMTk3NDc5NCwiaWF0IjoxNzExOTcxMTk0LCJqdGkiOiJhOWNlZmI5ZS0xMGIyLTRkMzYtODgzMS0wZjBlODJlNWQwMjMiLCJlbWFpbCI6Im1pY2hhZWxAZnJleWxlci5ldSJ9.xs6sC4NgfG4C7UkNwZxMNWFHUMTG7Oi-F7maim4fcYkuQ5ui6EPFwu9bUp9jD2_JKa4pXJOmK28WkYtQ7yBS2oxcCaGoDER2Iz4vvF8XztjZrADkRqK2Pi4zrLubHAdC3pG6lxAkL2ZvoH2zkyGAfLlKaTdhSIwL2-O-X1kawO8ATiSeXmj9udM5WxVWuLq1C3p8-g8ZBueUuiv5Q76_ZOvIFxsYvJlbcd85LqOtReeQyH8MRVnYANAmH5Rw2B9mzRcCzd5pyILI4FgCvFUZx8TajXj01fKVtDzuZi26wY2Kso9AobYDnF1zolqGichRZTYyX1jaxmuVC9n_0TIbhXrr9JNpJNP7QoUaYBpn_1sKypxIIq0SMS3puhydKEoO_nNW0e0GteQ6mmmoZPeunI0BRWiuI12MsOxhuCgs7z1SGGnFalZyY11AbP77ku_j-gUG1MQiSsZulH5UrCtTUmYi5FYho6F-lDaapPqKl8a0Hqag_nGO-fAak3oZwbOiGkO7Ap9jTFa9kx9rBdWLPMLwRSky8hBZR4o5HZUUiAImRb3BjVSzQXO2U4XzpqwWLjZn7ibzl_Sg6YS7Q9QhNHZGMvAH7Twpn22uNB0zUZYObr7_9QdQ9gVu3IkT4F3yc5B1oGt0W2B8wGx-3X62MPCVdfCipArycWOE4xMVT6A"
}
[id    ] TRACE 2024/04/01 13:33:14 GET https://emea.bff.cariad.digital/vehicle/v1/vehicles
[id    ] TRACE 2024/04/01 13:33:15 {"data":[{"vin":"***","role":"PRIMARY_USER","userRoleStatus":"ENABLED","enrollmentStatus":"COMPLETED","brandCode":"V","model":"e-Golf","nickname":"e-Golf","capabilities":[{"id":"access","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"automation","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"charging","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"climatisation","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"dealerAppointment","status":[1004],"expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":true},{"id":"departureProfiles","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"destinations","status":[2003,2002],"expirationDate":"2021-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"destinationsTours","status":[2003,2002],"expirationDate":"2021-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"emergencyCalling","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"fuelStatus","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"gracenote","status":[2003,2002],"expirationDate":"2021-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"honkAndFlash","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"measurements","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"news","status":[2003,2002],"expirationDate":"2021-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"oilLevelStatus","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"parkingInformation","status":[2003,2002],"expirationDate":"2021-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"parkingPosition","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"roadsideAssistant","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"state","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"transactionHistoryHonkFlash","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"transactionHistoryLockUnlock","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"tripStatistics","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"vehicleHealth","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"vehicleHealthArchive","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"vehicleHealthInspection","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"vehicleHealthSettings","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"vehicleHealthTrigger","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"vehicleHealthWakeUp","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"vehicleHealthWarnings","expirationDate":"2030-04-27T13:16:00Z","userDisablingAllowed":false},{"id":"vehicleLights","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"vehicleWakeUp","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false},{"id":"vehicleWakeUpTrigger","expirationDate":"2024-05-01T09:11:00Z","userDisablingAllowed":false}],"images":{},"coUsers":[],"devicePlatform":"MBB","tags":[]}]}
[lp-1  ] WARN 2024/04/01 13:33:15 poll mode '{connected 1h0m0s}' may deplete your battery or lead to API misuse. USE AT YOUR OWN RISK.
[lp-1  ] DEBUG 2024/04/01 13:33:15 charge total import: 2931.032kWh
[site  ] INFO 2024/04/01 13:33:16 site config:
[site  ] INFO 2024/04/01 13:33:16   meters:      grid βœ“ pv βœ“ battery βœ—
[site  ] INFO 2024/04/01 13:33:16     grid:      power βœ“ energy βœ“ currents βœ“
[site  ] INFO 2024/04/01 13:33:16     pv 1:      power βœ“ energy βœ“ currents βœ“
[site  ] INFO 2024/04/01 13:33:16   vehicles:
[site  ] INFO 2024/04/01 13:33:16     vehicle 1: range βœ“ finish βœ“ status βœ“ climate βœ“ wakeup βœ“
[lp-1  ] INFO 2024/04/01 13:33:16 loadpoint 1:
[lp-1  ] INFO 2024/04/01 13:33:16   mode:        pv
[lp-1  ] INFO 2024/04/01 13:33:16   charger:     power βœ“ energy βœ“ currents βœ“ phases βœ“ wakeup βœ—
[lp-1  ] INFO 2024/04/01 13:33:16   meters:      charge βœ“
[lp-1  ] INFO 2024/04/01 13:33:16     charge:    power βœ“ energy βœ“ currents βœ“
[lp-1  ] DEBUG 2024/04/01 13:33:16 phase timer inactive
[lp-1  ] DEBUG 2024/04/01 13:33:16 pv timer inactive
[lp-1  ] INFO 2024/04/01 13:33:16 vehicle updated: unknown -> e-Golf
[lp-1  ] DEBUG 2024/04/01 13:33:16 set charge mode: pv
[lp-1  ] DEBUG 2024/04/01 13:33:16 charge power: 0W
[id    ] TRACE 2024/04/01 13:33:16 GET https://emea.bff.cariad.digital/vehicle/v1/vehicles/***/selectivestatus?jobs=charging,fuelStatus,climatisation,measurements
[id    ] TRACE 2024/04/01 13:33:21 {"charging":{"batteryStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","currentSOC_pct":85,"cruisingRangeElectric_km":170}},"chargingStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","chargingState":"notReadyForCharging","chargeMode":"","chargeType":""}},"chargingSettings":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:27Z","maxChargeCurrentAC":"maximum","maxChargeCurrentAC_A":32}},"plugStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","plugConnectionState":"connected","plugLockState":"locked","externalPower":"unavailable","ledColor":"none"}},"chargeMode":{"error":{"message":"Bad Gateway","errorTimeStamp":"2024-04-01T11:33:19Z","info":"Upstream service responded with an unexpected status. If the problem persists, please contact our support.","code":4111,"group":2,"retry":true}}},"climatisation":{"climatisationSettings":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:24Z","targetTemperature_C":30,"targetTemperature_F":88,"climatisationWithoutExternalPower":true}},"climatisationStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:47Z","climatisationState":"off"}},"windowHeatingStatus":{"value":{"carCapturedTimestamp":"2024-01-18T15:19:20Z","windowHeatingStatus":[{"windowLocation":"front","windowHeatingState":"off"},{"windowLocation":"rear","windowHeatingState":"off"}]}}},"fuelStatus":{"rangeStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","carType":"electric","primaryEngine":{"type":"electric","currentSOC_pct":85,"remainingRange_km":170},"totalRange_km":170}}},"measurements":{"rangeStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","electricRange":170,"totalRange_km":170}},"odometerStatus":{"value":{"carCapturedTimestamp":"2024-04-01T10:48:41Z","odometer":25097}},"fuelLevelStatus":{"value":{"carCapturedTimestamp":"2024-04-01T11:01:50Z","currentSOC_pct":85,"primaryEngineType":"electric","carType":"electric"}}}}
[lp-1  ] DEBUG 2024/04/01 13:33:21 vehicle odometer: 25097km
[lp-1  ] DEBUG 2024/04/01 13:33:21 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/04/01 13:33:21 charge total import: 2931.032kWh
[lp-1  ] DEBUG 2024/04/01 13:33:21 charger status: B
[lp-1  ] INFO 2024/04/01 13:33:21 car connected
[lp-1  ] DEBUG 2024/04/01 13:33:21 pv timer elapse
[lp-1  ] DEBUG 2024/04/01 13:33:21 pv timer inactive
[lp-1  ] DEBUG 2024/04/01 13:33:21 charge total import: 2931.032kWh
[lp-1  ] DEBUG 2024/04/01 13:33:21 vehicle soc: 85%
[lp-1  ] ERROR 2024/04/01 13:33:21 vehicle soc limit: not available
[lp-1  ] DEBUG 2024/04/01 13:33:21 vehicle range: 170km
[lp-1  ] DEBUG 2024/04/01 13:33:21 available power 4040W > 4140W min 2p threshold
[lp-1  ] DEBUG 2024/04/01 13:33:21 phase scale3p in 0s
[lp-1  ] DEBUG 2024/04/01 13:33:22 switched phases: 3p
[lp-1  ] DEBUG 2024/04/01 13:33:22 phase timer inactive
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv charge current: 8.78A = 0A + 8.78A (-4040W @ 2p)
[lp-1  ] DEBUG 2024/04/01 13:33:22 site power -4040W <= 0W enable threshold
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv enable in 0s
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv enable timer elapsed
[lp-1  ] DEBUG 2024/04/01 13:33:22 max charge current: 6A
[lp-1  ] DEBUG 2024/04/01 13:33:22 charger enable
[lp-1  ] DEBUG 2024/04/01 13:33:22 wake-up timer: start
[lp-1  ] DEBUG 2024/04/01 13:33:22 charge power: 0W
[lp-1  ] DEBUG 2024/04/01 13:33:22 vehicle odometer: 25097km
[lp-1  ] DEBUG 2024/04/01 13:33:22 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/04/01 13:33:22 charge total import: 2931.032kWh
[lp-1  ] DEBUG 2024/04/01 13:33:22 charger status: B
[lp-1  ] DEBUG 2024/04/01 13:33:22 next soc poll remaining time: 59m59s
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv charge current: 8.69A = 0A + 8.69A (-3997W @ 2p)
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv timer reset
[lp-1  ] DEBUG 2024/04/01 13:33:22 pv timer inactive
[lp-1  ] DEBUG 2024/04/01 13:33:22 max charge current: 8A
[lp-1  ] DEBUG 2024/04/01 13:33:46 charge power: 3920W
[lp-1  ] DEBUG 2024/04/01 13:33:46 charge currents: [8 8 0]A
[lp-1  ] DEBUG 2024/04/01 13:33:46 charge total import: 2931.041kWh
[lp-1  ] DEBUG 2024/04/01 13:33:46 charger status: C
[lp-1  ] INFO 2024/04/01 13:33:46 start charging ->
[lp-1  ] DEBUG 2024/04/01 13:33:46 wake-up timer: stop
[lp-1  ] DEBUG 2024/04/01 13:33:46 vehicle soc: 85%
[lp-1  ] ERROR 2024/04/01 13:33:46 vehicle soc limit: not available
[lp-1  ] DEBUG 2024/04/01 13:33:46 vehicle range: 170km
[lp-1  ] DEBUG 2024/04/01 13:33:46 pv charge current: 8.01A = 8A + 0.0148A (-7W @ 2p)


### What type of operating system are you running?

Docker container

### Version

0.124.10
andig commented 5 months ago

Das ist im nightly behoben.