httppush.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "libs": [],
  3. "about": {
  4. "trial": false,
  5. "author": {
  6. "name": "EMQ",
  7. "email": "contact@emqx.io",
  8. "company": "EMQ Technologies Co., Ltd",
  9. "website": "https://www.emqx.io"
  10. },
  11. "helpUrl": {
  12. "en_US": "https://github.com/lf-edge/ekuiper/blob/master/docs/en_US/rules/sources/builtin/http_push.md",
  13. "zh_CN": "https://github.com/lf-edge/ekuiper/blob/master/docs/zh_CN/rules/sources/builtin/http_push.md"
  14. },
  15. "description": {
  16. "en_US": "eKuiper provides built-in support for HTTP server to receive the stream data pushed by HTTP protocol.",
  17. "zh_CN": "eKuiper 提供了内置的 HTTP 服务支持,用于接收 HTTP 协议推送的流数据。"
  18. }
  19. },
  20. "properties": {
  21. "default": [{
  22. "name": "method",
  23. "default": "POST",
  24. "optional": true,
  25. "control": "text",
  26. "type": "string",
  27. "values": ["POST","PUT"],
  28. "hint": {
  29. "en_US": "The method to bind the http service",
  30. "zh_CN": "http 请求方法"
  31. },
  32. "label": {
  33. "en_US": "Method",
  34. "zh_CN": "请求方法"
  35. }
  36. }]
  37. },
  38. "outputs": [{
  39. "label": {
  40. "en_US": "Output",
  41. "zh_CN": "输出"
  42. },
  43. "value": "signal"
  44. }],
  45. "node": {
  46. "category": "source",
  47. "icon": "iconPath",
  48. "label": {
  49. "en_US": "HTTP PUSH",
  50. "zh_CN": "HTTP PUSH"
  51. }
  52. }
  53. }