12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #Global Edgex configurations
- default:
- protocol: tcp
- server: localhost
- port: 5563
- topic: events
- type: zero
- # Could be 'event' or 'request'.
- # If the message is from app service, the message type is an event;
- # Otherwise, if it is from the message bus directly, it should be a request
- messageType: event
- # Below is optional configurations settings for mqtt
- # type: 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
- messageType: request
- mqtt_conf: #Conf_key
- protocol: tcp
- server: 127.0.0.1
- port: 1883
- topic: events
- type: mqtt
- optional:
- ClientId: "client1"
|