edgex.yaml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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"
  42. share_conf: #Conf_key
  43. protocol: tcp
  44. server: 127.0.0.1
  45. port: 1883
  46. topic: events
  47. type: mqtt
  48. connectionSelector: edgex.redisMsgBus