X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docker%2Fconfig.json;h=7808b07c0bc995a93720e9ec1ef2b53a91ba7968;hb=0282b7c0ea2651c7367cd21bc96e8ef3637076c7;hp=277f68f12f7a63361c77d428c3b45f15e365c0e9;hpb=7ec46a9aab2376a8a5201ce57aba95116a00d291;p=e-mobility-charging-stations-simulator.git diff --git a/docker/config.json b/docker/config.json index 277f68f1..7808b07c 100644 --- a/docker/config.json +++ b/docker/config.json @@ -1,40 +1,45 @@ { - "supervisionURLs": [ - "ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4" - ], - "statisticsDisplayInterval": 60, - "autoReconnectTimeout": 10, - "autoReconnectMaxRetries": 10, - "distributeStationToTenantEqually": true, - "useWorkerPool": false, - "workerPoolSize": 16, - "stationTemplateURLs": [ + "supervisionUrls": ["ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4"], + "supervisionUrlDistribution": "round-robin", + "log": { + "file": "/dev/stdout", + "errorFile": "/dev/stderr", + "console": false, + "rotate": false + }, + "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 } - ], - "logConsole": false, - "logFile": "/dev/stdout", - "logErrorFile": "/dev/stderr" + ] }