更新时间:2024-04-08 GMT+08:00
查询单个主题
功能介绍
查询单个主题。
URI
GET /v2/{project_id}/instances/{instance_id}/topics/{topic}
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID,获取方式请参见获取项目ID。 |
instance_id |
是 |
String |
实例ID。 |
topic |
是 |
String |
主题名称。 |
请求参数
无
响应参数
状态码: 200
参数 |
参数类型 |
描述 |
---|---|---|
name |
String |
topic名称。 |
total_read_queue_num |
Number |
总读队列个数。 |
total_write_queue_num |
Number |
总写队列个数。 |
permission |
String |
权限。 |
brokers |
Array of brokers objects |
关联的代理。 |
message_type |
String |
消息类型(RocketMQ实例5.x版本才包含此参数)。 |
请求示例
查询指定的单个主题的详细信息。
GET https://{endpoint}/v2/{project_id}/instances/{instance_id}/topics/{topic}
响应示例
状态码: 200
查询单个主题成功。
{ "total_read_queue_num" : 3, "total_write_queue_num" : 3, "permission" : "all", "brokers" : [ { "broker_name" : "broker-0", "read_queue_num" : 3, "write_queue_num" : 3 } ], "message_type" : "NORMAL" }
状态码
状态码 |
描述 |
---|---|
200 |
查询单个主题成功。 |
错误码
请参见错误码。
父主题: Topic管理