edgex.yaml 760 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #Global Edgex configurations
  2. default:
  3. protocol: tcp
  4. server: localhost
  5. port: 5563
  6. topic: events
  7. serviceServer: http://localhost:48080
  8. # Below is optional configurations settings for MQTT
  9. # optional:
  10. # ClientId: "client1"
  11. # Username: "user1"
  12. # Password: "password"
  13. # Qos: "1"
  14. # KeepAlive: "5000"
  15. # Retained: "true/false"
  16. # ConnectionPayload: ""
  17. # CertFile: ""
  18. # KeyFile: ""
  19. # CertPEMBlock: ""
  20. # KeyPEMBlock: ""
  21. # SkipCertVerify: "true/false"
  22. #Override the global configurations
  23. application_conf: #Conf_key
  24. protocol: tcp
  25. server: localhost
  26. port: 5571
  27. topic: application
  28. mqtt_conf: #Conf_key
  29. protocol: tcp
  30. server: 10.211.55.6
  31. port: 1883
  32. topic: events
  33. type: mqtt
  34. optional:
  35. ClientId: "client1"