X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docker%2Fconfig.json;h=003ee3e19d7537f6e2e1c286f54744ace94f33be;hb=5b670ffcbc56d6571018576f1fd8af8bf1fa4517;hp=54a9f31d98decea8000bc2cd98dabe9e6b4e87cf;hpb=a4624c96a6c159b4885f5d0baaf592ceec0bab30;p=e-mobility-charging-stations-simulator.git diff --git a/docker/config.json b/docker/config.json index 54a9f31d..003ee3e1 100644 --- a/docker/config.json +++ b/docker/config.json @@ -1,41 +1,44 @@ { - "supervisionURLs": [ - "ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4" - ], - "distributeStationsToTenantsEqually": true, - "statisticsDisplayInterval": 60, - "workerProcess": "workerSet", - "workerPoolMinSize": 4, - "workerPoolMaxSize": 16, - "chargingStationsPerWorker": 1, - "stationTemplateURLs": [ + "supervisionUrls": ["ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4"], + "supervisionUrlDistribution": "round-robin", + "worker": { + "processType": "workerSet", + "elementsPerWorker": 1, + "poolMinSize": 4, + "poolMaxSize": 16 + }, + "uiServer": { + "enabled": true + }, + "stationTemplateUrls": [ { - "file": "./src/assets/station-templates/siemens.station-template.json", + "file": "siemens.station-template.json", "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/keba.station-template.json", + "file": "keba.station-template.json", "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/abb.station-template.json", + "file": "abb.station-template.json", "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/evlink.station-template.json", + "file": "evlink.station-template.json", "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/schneider.station-template.json", + "file": "schneider.station-template.json", "numberOfStations": 0 }, { - "file": "./src/assets/station-templates/virtual-simple-atg.station-template.json", + "file": "virtual-simple-atg.station-template.json", "numberOfStations": 10 } ], "logRotate": false, "logConsole": false, "logFile": "/dev/stdout", - "logErrorFile": "/dev/stderr" + "logErrorFile": "/dev/stderr", + "logStatisticsInterval": 60 }