Kafka cluster changes#342
Open
spathlavath wants to merge 12 commits into
Open
Conversation
feat: Add more brokertopic and controller metrics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The cluster metrics are collected from the following MBeans:
kafka.controller:name=ActiveBrokerCount,type=KafkaController- The total number of brokers currently active in the cluster.kafka.controller:name=OfflinePartitionsCount,type=KafkaController- The total number of partitions across the cluster that do not have an active leader.kafka.controller:name=PreferredReplicaImbalanceCount,type=KafkaController- A key health metric indicating how many partitions are not being led by their preferred replica, which can impact load distribution.kafka.controller:name=GlobalTopicCount,type=KafkaController- The total number of topics in the cluster.kafka.controller:name=GlobalPartitionCount,type=KafkaController- The total number of partitions across all topics in the cluster.kafka.controller:name=ActiveControllerCount,type=KafkaController- Should be 1 in a healthy cluster, confirming a single active controller.kafka.controller:name=FencedBrokerCount,type=KafkaController- The number of brokers considered inactive or "fenced" by the controller.kafka.controller:name=UncleanLeaderElectionsPerSec,type=ControllerStats- A critical metric indicating potential data loss events across the cluster.kafka.coordinator.group:name=NumGroups,type=GroupMetadataManager- The total number of consumer groups known to the coordinator.kafka.coordinator.group:name=NumOffsets,type=GroupMetadataManager- The total number of offsets stored by the coordinator.NumGroupsStable,NumGroupsPreparingRebalance, andNumGroupsDead.kafka.server:name=ClusterId,type=KafkaServer- This provides the unique ID for the Kafka cluster, which would be an essential attribute for the KafkaClusterSample.