zmq.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "about": {
  3. "trial": true,
  4. "author": {
  5. "name": "EMQ",
  6. "email": "contact@emqx.io",
  7. "company": "EMQ Technologies Co., Ltd",
  8. "website": "https://www.emqx.io"
  9. },
  10. "helpUrl": {
  11. "en_US": "https://ekuiper.org/docs/en/latest/guide/sinks/plugin/zmq.html",
  12. "zh_CN": "https://ekuiper.org/docs/zh/latest/guide/sinks/plugin/zmq.html"
  13. },
  14. "description": {
  15. "en_US": "This a demo 0MQ sink plugin, it cannot be used in production env.",
  16. "zh_CN": "本插件为演示 ZMQ 数据发送插件,不能使用在生产环境中"
  17. }
  18. },
  19. "libs": [
  20. "github.com/pebbe/zmq4@v1.0.0"
  21. ],
  22. "properties": [{
  23. "name": "server",
  24. "default": "127.0.0.1:5536",
  25. "optional": false,
  26. "control": "text",
  27. "type": "string",
  28. "hint": {
  29. "en_US": "The url of the Zero Mq server",
  30. "zh_CN": "Zero Mq 服务器的 URL"
  31. },
  32. "label": {
  33. "en_US": "Server address",
  34. "zh_CN": "服务器地址"
  35. }
  36. }, {
  37. "name": "topic",
  38. "default": "",
  39. "optional": true,
  40. "control": "text",
  41. "type": "string",
  42. "hint": {
  43. "en_US": "The topic to publish to.",
  44. "zh_CN": "订阅主题"
  45. },
  46. "label": {
  47. "en_US": "Topic",
  48. "zh_CN": "主题"
  49. }
  50. }],
  51. "node": {
  52. "category": "sink",
  53. "icon": "iconPath",
  54. "label": {
  55. "en": "ZeroMQ",
  56. "zh": "ZeroMQ"
  57. }
  58. }
  59. }