1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #Global Edgex configurations
- default:
- protocol: redis
- server: edgex-redis
- port: 6379
- topic: rules-events
- type: redis
- # 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
- redis_conf: #Conf_key
- protocol: redis
- server: 127.0.0.1
- port: 6379
- topic: events
- type: redis
- messageType: event
- optional:
- password: 123456
- application_conf: #Conf_key
- protocol: tcp
- server: localhost
- port: 5571
- topic: application
- type: zero
- messageType: request
- mqtt_conf: #Conf_key
- protocol: tcp
- server: 192.168.150.253
- port: 8383
- topic: events
- type: mqtt
- optional:
- KeepAlive: "50"
- share_conf: #Conf_key
- protocol: tcp
- server: 192.168.150.253
- port: 8383
- topic: events
- type: mqtt
- connectionSelector: edgex.redisMsgBus
|