路由(Routes)

获取集群路由表

API 定义:

  1. GET api/v3/routes/

请求示例:

  1. GET api/v3/routes/

返回数据:

  1. {
  2. "code": 0,
  3. "data": [
  4. {
  5. "node": "emqx@127.0.0.1",
  6. "topic": "testtopic/#"
  7. },
  8. {
  9. "node": "emqx@127.0.0.1",
  10. "topic": "t"
  11. }
  12. ],
  13. "meta": {
  14. "page": 1,
  15. "limit": 10000,
  16. "count": 2
  17. }
  18. }

获取集群指定主题的路由信息

API 定义:

  1. GET api/v3/routes/${topic}

请求示例:

  1. GET api/v3/routes/t

返回数据:

  1. {
  2. "code": 0,
  3. "data": [
  4. {
  5. "node": "emqx@127.0.0.1",
  6. "topic": "t"
  7. }
  8. ]
  9. }