From 75268cb8e91130d192b1f1614f66d3897d1f93fa Mon Sep 17 00:00:00 2001 From: Lee Dongjin Date: Mon, 2 Mar 2020 12:14:51 +0530 Subject: [PATCH] KAFKA-9327: Document GroupMetadata metrics This commit adds documentation on following `GroupMetadata` gauges: - `NumOffsets` - `NumGroups` - `NumGroupsPreparingRebalance` - `NumGroupsCompletingRebalance` - `NumGroupsEmpty` - `NumGroupsStable` - `NumGroupsDead` cc/ gwenshap Author: Lee Dongjin Reviewers: Manikumar Reddy Closes #7890 from dongjinleekr/feature/KAFKA-9327 --- docs/ops.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/ops.html b/docs/ops.html index 85699299c7c83..2a0b4ca2d4ce5 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -1089,6 +1089,21 @@

Security Considerations for Remote Mon kafka.server:type=transaction-coordinator-metrics,name=partition-load-time-avg average time, in milliseconds, it took to load transaction metadata from the consumer offset partitions loaded in the last 30 seconds + + Consumer Group Offset Count + kafka.server:type=GroupMetadataManager,name=NumOffsets + Total number of committed offsets for Consumer Groups + + + Consumer Group Count + kafka.server:type=GroupMetadataManager,name=NumGroups + Total number of Consumer Groups + + + Consumer Group Count, per State + kafka.server:type=GroupMetadataManager,name=NumGroups[PreparingRebalance,CompletingRebalance,Empty,Stable,Dead] + The number of Consumer Groups in each state: PreparingRebalance, CompletingRebalance, Empty, Stable, Dead +

Common monitoring metrics for producer/consumer/connect/streams