zmq.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": true,
  10. "description": {
  11. "en_US": "This a demo 0MQ sink plugin, it cannot be used in production env.",
  12. "zh_CN": "本插件为演示 ZMQ 数据发送插件,不能使用在生产环境中"
  13. }
  14. },
  15. "libs": [
  16. ],
  17. "helpUrl": {
  18. "en_US": "https://github.com/emqx/kuiper/blob/dev/0.9.1/docs/en_US/plugins/sinks/zmq.md",
  19. "zh_CN": "https://github.com/emqx/kuiper/blob/dev/0.9.1/docs/zh_CN/plugins/sinks/zmq.md"
  20. },
  21. "properties": [{
  22. "name": "server",
  23. "default": "127.0.0.1:5536",
  24. "optional": false,
  25. "control": "text",
  26. "type": "string",
  27. "hint": {
  28. "en_US": "The url of the Zero Mq server",
  29. "zh_CN": "Zero Mq 服务器的 URL"
  30. },
  31. "label": {
  32. "en_US": "Server address",
  33. "zh_CN": "服务器地址"
  34. }
  35. }, {
  36. "name": "topic",
  37. "default": "",
  38. "optional": true,
  39. "control": "text",
  40. "type": "string",
  41. "hint": {
  42. "en_US": "The topic to publish to.",
  43. "zh_CN": "订阅主题"
  44. },
  45. "label": {
  46. "en_US": "Topic",
  47. "zh_CN": "主题"
  48. }
  49. }]
  50. }