edgex.yaml 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #Global Edgex configurations
  2. default:
  3. protocol: tcp
  4. server: localhost
  5. port: 5563
  6. topic: events
  7. type: zero
  8. # Could be 'event' or 'request'.
  9. # If the message is from app service, the message type is an event;
  10. # Otherwise, if it is from the message bus directly, it should be a request
  11. messageType: event
  12. # Below is optional configurations settings for mqtt
  13. # type: mqtt
  14. # optional:
  15. # ClientId: client1
  16. # Username: user1
  17. # Password: password
  18. # Qos: 1
  19. # KeepAlive: 5000
  20. # Retained: true/false
  21. # ConnectionPayload:
  22. # CertFile:
  23. # KeyFile:
  24. # CertPEMBlock:
  25. # KeyPEMBlock:
  26. # SkipCertVerify: true/false
  27. #Override the global configurations
  28. application_conf: #Conf_key
  29. protocol: tcp
  30. server: localhost
  31. port: 5571
  32. topic: application
  33. messageType: request
  34. mqtt_conf: #Conf_key
  35. protocol: tcp
  36. server: 127.0.0.1
  37. port: 1883
  38. topic: events
  39. type: mqtt
  40. optional:
  41. ClientId: "client1"