Skip to content

Commit

Permalink
KAFKA-9327: Document GroupMetadata metrics
Browse files Browse the repository at this point in the history
This commit adds documentation on following `GroupMetadata` gauges:

- `NumOffsets`
- `NumGroups`
- `NumGroupsPreparingRebalance`
- `NumGroupsCompletingRebalance`
- `NumGroupsEmpty`
- `NumGroupsStable`
- `NumGroupsDead`

cc/ gwenshap

Author: Lee Dongjin <[email protected]>

Reviewers: Manikumar Reddy <[email protected]>

Closes apache#7890 from dongjinleekr/feature/KAFKA-9327
  • Loading branch information
dongjinleekr authored and omkreddy committed Mar 2, 2020
1 parent 285ad85 commit 75268cb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/ops.html
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,21 @@ <h4><a id="remote_jmx" href="#remote_jmx">Security Considerations for Remote Mon
<td>kafka.server:type=transaction-coordinator-metrics,name=partition-load-time-avg</td>
<td>average time, in milliseconds, it took to load transaction metadata from the consumer offset partitions loaded in the last 30 seconds</td>
</tr>
<tr>
<td>Consumer Group Offset Count</td>
<td>kafka.server:type=GroupMetadataManager,name=NumOffsets</td>
<td>Total number of committed offsets for Consumer Groups</td>
</tr>
<tr>
<td>Consumer Group Count</td>
<td>kafka.server:type=GroupMetadataManager,name=NumGroups</td>
<td>Total number of Consumer Groups</td>
</tr>
<tr>
<td>Consumer Group Count, per State</td>
<td>kafka.server:type=GroupMetadataManager,name=NumGroups[PreparingRebalance,CompletingRebalance,Empty,Stable,Dead]</td>
<td>The number of Consumer Groups in each state: PreparingRebalance, CompletingRebalance, Empty, Stable, Dead</td>
</tr>
</tbody></table>

<h4><a id="selector_monitoring" href="#selector_monitoring">Common monitoring metrics for producer/consumer/connect/streams</a></h4>
Expand Down

0 comments on commit 75268cb

Please sign in to comment.