zmq.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "author": {
  3. "name": "Jiyong Huang",
  4. "email": "huangjy@emqx.io",
  5. "company": "EMQ Technologies Co., Ltd",
  6. "website": "https://www.emqx.io"
  7. },
  8. "about": {
  9. "trial": false,
  10. "description": {
  11. "en_US": "The source will subscribe to a Zero Mq topic to import the messages into kuiper.",
  12. "zh_CN": "源将订阅 Zero Mq 主题以将消息导入 kuiper。"
  13. }
  14. },
  15. "libs": [
  16. "github.com/pebbe/zmq4@master"
  17. ],
  18. "helpUrl": {
  19. "en_US": "https://github.com/emqx/kuiper/blob/master/docs/en_US/plugins/sources/zmq.md",
  20. "zh_CN": "https://github.com/emqx/kuiper/blob/master/docs/zh_CN/plugins/sources/zmq.md"
  21. },
  22. "properties": {
  23. "default": [{
  24. "name": "server",
  25. "default": "127.0.0.1:5536",
  26. "optional": false,
  27. "control": "text",
  28. "type": "string",
  29. "hint": {
  30. "en_US": "The url of the Zero Mq server",
  31. "zh_CN": "Zero Mq 服务器的 URL"
  32. },
  33. "label": {
  34. "en_US": "server address",
  35. "zh_CN": "服务器地址"
  36. }
  37. }, {
  38. "name": "topic",
  39. "default": "",
  40. "optional": true,
  41. "control": "text",
  42. "type": "string",
  43. "hint": {
  44. "en_US": "The topic to publish to.",
  45. "zh_CN": "订阅主题"
  46. },
  47. "label": {
  48. "en_US": "topic",
  49. "zh_CN": "主题"
  50. }
  51. }]
  52. }
  53. }