-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved robustness for stale information into Designer
Added a template config.json with all the available parameters
- Loading branch information
Flavio Cirillo
committed
Jul 3, 2024
1 parent
ef9581d
commit 829968a
Showing
2 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"my_hostip": "172.17.0.1", | ||
"physical_location":{ | ||
"longitude": 139, | ||
"latitude": 35 | ||
}, | ||
"site_id": "001", | ||
"logging":{ | ||
"info":"stdout", | ||
"error":"stdout", | ||
"protocol": "stdout", | ||
"debug": "stdout" | ||
}, | ||
"discovery": { | ||
"http_port": 8090, | ||
"storeOnDisk": true, | ||
"delayStoreOnFile" : 3 | ||
}, | ||
"broker": { | ||
"http_port": 8070, | ||
"heartbeat_interval": 30 | ||
}, | ||
"master": { | ||
"ngsi_agent_port": 1060, | ||
"rest_api_port": 8010, | ||
"infinite_reconnection_tries": true | ||
}, | ||
"worker": { | ||
"container_autoremove": false, | ||
"start_actual_task": true, | ||
"capacity": 8, | ||
"heartbeat_interval": 30, | ||
"detection_duration": 10, | ||
"infinite_reconnection_tries": true | ||
}, | ||
"designer": { | ||
"webSrvPort": 8080, | ||
"agentPort": 1030, | ||
"ldAgentPort":1090, | ||
"doNotInitApplications":true | ||
}, | ||
"rabbitmq": { | ||
"port": 5672, | ||
"username": "admin", | ||
"password":"mypass" | ||
}, | ||
"https": { | ||
"enabled" : false | ||
}, | ||
"persistent_storage": { | ||
"port": 9082 | ||
} | ||
} |