X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fassets%2Fconfig-template.json;h=e1620aa7c899a071171eda539565f679ddb701b2;hb=269de5835f83c14f7432c0049a6606a55e1b556e;hp=bfa96ecca108561810f8f00e5d760364c1f65e30;hpb=5fdab605ce885d9a9fb21ac47c6d0766bd3673bb;p=e-mobility-charging-stations-simulator.git diff --git a/src/assets/config-template.json b/src/assets/config-template.json index bfa96ecc..e1620aa7 100644 --- a/src/assets/config-template.json +++ b/src/assets/config-template.json @@ -1,35 +1,50 @@ { - "supervisionURLs": [ - "ws://localhost:8010/OCPP16/5be7fb271014d90008992f06" - ], - "distributeStationsToTenantsEqually": true, - "statisticsDisplayInterval": 60, - "useWorkerPool": false, - "workerPoolSize": 16, - "chargingStationsPerWorker": 1, - "stationTemplateURLs": [ + "supervisionUrls": ["ws://localhost:8010/OCPP16/5be7fb271014d90008992f06"], + "supervisionUrlDistribution": "round-robin", + "worker": { + "processType": "workerSet", + "elementsPerWorker": 1, + "poolMinSize": 4, + "poolMaxSize": 16 + }, + "performanceStorage": { + "enabled": true, + "type": "jsonfile" + }, + "uiServer": { + "enabled": false, + "type": "ws", + "authentication": { + "enabled": true, + "type": "basic-auth", + "username": "admin", + "password": "admin" + } + }, + "stationTemplateUrls": [ { - "file": "./src/assets/station-templates/siemens.station-template.json", + "file": "siemens.station-template.json", "numberOfStations": 1 }, { - "file": "./src/assets/station-templates/keba.station-template.json", + "file": "keba.station-template.json", "numberOfStations": 2 }, { - "file": "./src/assets/station-templates/abb.station-template.json", + "file": "abb.station-template.json", "numberOfStations": 2 }, { - "file": "./src/assets/station-templates/evlink.station-template.json", + "file": "evlink.station-template.json", "numberOfStations": 4 }, { - "file": "./src/assets/station-templates/schneider.station-template.json", + "file": "schneider.station-template.json", "numberOfStations": 1 } ], + "logStatisticsInterval": 0, + "logMaxFiles": 7, "logFile": "combined.log", - "logErrorFile": "error.log", - "logConsole": false + "logErrorFile": "error.log" }