更新时间:2023-08-16 GMT+08:00
查询指定消费组信息
功能介绍
查询指定消费组信息
URI
GET /v2/{project_id}/instances/{instance_id}/groups/{group}
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID,获取方式请参见获取项目ID。 |
instance_id |
是 |
String |
实例ID。 |
group |
是 |
String |
消费组ID。 |
请求参数
无
响应参数
状态码: 200
参数 |
参数类型 |
描述 |
---|---|---|
group |
group object |
消费组信息。 |
参数 |
参数类型 |
描述 |
---|---|---|
group_id |
String |
消费组名称。 |
state |
String |
消费组状态。包含以下状态:
|
coordinator_id |
Integer |
协调器编号。 |
members |
Array of members objects |
消费者列表。 |
group_message_offsets |
Array of group_message_offsets objects |
消费进度。 |
assignment_strategy |
String |
分区分配策略。 |
请求示例
GET https://{endpoint}/v2/{project_id}/instances/{instance_id}/groups/{group}
响应示例
状态码: 200
查询指定消费组信息成功。
{ "group" : null, "members" : [ { "host" : "/172.31.1.102", "member_id" : "consumer-1-6b8ee551-d499-47d4-9beb-ba1527496785", "client_id" : "consumer-1" } ], "state" : "STABLE", "group_id" : "test-consumer-group", "coordinator_id" : 2, "group_message_offsets" : [ { "partition" : 0, "lag" : 31396, "topic" : "test", "message_current_offset" : 935, "message_log_end_offset" : 32331 }, { "partition" : 0, "lag" : 0, "topic" : "aaaa", "message_current_offset" : 0, "message_log_end_offset" : 0 }, { "partition" : 1, "lag" : 31279, "topic" : "test", "message_current_offset" : 1058, "message_log_end_offset" : 32337 }, { "partition" : 1, "lag" : 0, "topic" : "aaaa", "message_current_offset" : 0, "message_log_end_offset" : 0 }, { "partition" : 2, "lag" : 31603, "topic" : "test", "message_current_offset" : 739, "message_log_end_offset" : 32342 } ], "assignment_strategy" : "range" }
状态码
状态码 |
描述 |
---|---|
200 |
查询指定消费组信息成功。 |
错误码
请参见错误码。
父主题: 实例管理