12345678910111213141516171819202122232425262728293031323334353637 |
- #Global Edgex configurations
- default:
- protocol: tcp
- server: localhost
- port: 5563
- topic: events
- serviceServer: http://localhost:48080
- # Below is optional configurations settings for MQTT
- # optional:
- # ClientId: "client1"
- # Username: "user1"
- # Password: "password"
- # Qos: "1"
- # KeepAlive: "5000"
- # Retained: "true/false"
- # ConnectionPayload: ""
- # CertFile: ""
- # KeyFile: ""
- # CertPEMBlock: ""
- # KeyPEMBlock: ""
- # SkipCertVerify: "true/false"
- #Override the global configurations
- application_conf: #Conf_key
- protocol: tcp
- server: localhost
- port: 5571
- topic: application
- mqtt_conf: #Conf_key
- protocol: tcp
- server: 10.211.55.6
- port: 1883
- topic: events
- type: mqtt
- optional:
- ClientId: "client1"
|