tree: 1ae8199d81298cb2b176ee506e402cffde4c20ab [path history] [tgz]
  1. eventmesh-admin-rocketmq/
  2. build.gradle
  3. gradle.properties
  4. README.md
eventmesh-admin/README.md

EventMesh Administration Module

EventMesh Administration Module for EventMesh. It manages Admin Service, Configurations such as topics/subscriptions management.It works as a control plane and provide some interface to manage the eventmesh-runtime module and other configurations.

Administration Client Manager APIs

POST /topicManage

  • Create a new topic if does not exist

  • Exposed POST endpoint to create a new topic if it does not exist.

       {
           "name":  "mytopic1"
       }
    

    Sample response

    {
         "topic": "mytopic1",
         "created_time": "2021-09-03",
    }
    

DELETE /topicManage/(string: topic)

  • Delete a specific topic.

  • Exposed DELETE endpoint to remove a specific topic

    • URL -
    http://localhost:8081/topicManage/mytopic1
    
    • Response -
    {
         "topic": "mytopic1",        
    }
    

GET /topicManage

  • Retrieve a list of topics

  • Exposed GET endpoint to retrieve all topics

    • URL -
    http://localhost:8081/topicManage
    
    • Response
    ["mytopic1", "mytopic2"]