12345678910111213141516171819202122232425262728293031323334 |
- mqtt:
- mqtt_conf1: #connection key
- servers: [tcp://127.0.0.1:1883]
- username: ekuiper
- password: password
- #certificationPath: /var/kuiper/xyz-certificate.pem
- #privateKeyPath: /var/kuiper/xyz-private.pem.ke
- #insecureSkipVerify: false
- #protocolVersion: 3
- clientid: ekuiper
- mqtt_conf2: #connection key
- servers: ["tcp://127.0.0.1:1883"]
- edgex:
- edgex_conf1: #connection key
- protocol: redis
- server: 127.0.0.1
- port: 6379
- type: redis
- # 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
|