plugins.http 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ###
  2. POST http://127.0.0.1:9081/plugins/sources
  3. Content-Type: application/json
  4. {"name":"random3","file":"http://127.0.0.1/testzips/sources/random3.zip"}
  5. ###
  6. GET http://127.0.0.1:9081/plugins/sources
  7. ###
  8. GET http://127.0.0.1:9081/plugins/sources/random3
  9. ###
  10. DELETE http://127.0.0.1:9081/plugins/sources/random3
  11. ###
  12. POST http://127.0.0.1:9081/plugins/sinks
  13. Content-Type: application/json
  14. {"name":"file2","file":"file:///C:/repos/go/src/github.com/emqx/kuiper/plugins/testzips/sinks/file2.zip"}
  15. ###
  16. GET http://127.0.0.1:9081/plugins/sinks
  17. ###
  18. GET http://127.0.0.1:9081/plugins/sinks/file2
  19. ###
  20. DELETE http://127.0.0.1:9081/plugins/sinks/file2?stop=1
  21. ###
  22. POST http://127.0.0.1:9081/plugins/functions
  23. Content-Type: application/json
  24. {"name":"echo2","file":"http://127.0.0.1/testzips/functions/echo2.zip"}
  25. ###
  26. GET http://127.0.0.1:9081/plugins/functions
  27. ###
  28. GET http://127.0.0.1:9081/plugins/functions/echo2
  29. ###
  30. DELETE http://127.0.0.1:9081/plugins/functions/echo2
  31. ###