-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export number of members and assigned partitions for each topic in a consumer group #104
Comments
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Jul 31, 2021
…consumer group Added consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Jul 31, 2021
…consumer group Added consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 1, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 2, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Aug 3, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Sep 20, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Sep 20, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Sep 20, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
amuraru
added a commit
to amuraru/kminion
that referenced
this issue
Sep 20, 2021
…consumer group Added consumer_group_empty_members, consumer_group_topic_members and consumer_group_topic_assigned_partitions metrics. Fixes redpanda-data#104
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, for each consumer group the total number of members (consumers) in the group is exported.
For a consumer group subscribed to multiple topics, it would be also useful to have a metric to capture the number of consumer group members for each topic and also the number of partitions assigned for each topic.
Here is an example:
While the consumer group has 8 members in total, one can see that the group is not very well balanced from individual topic perspective, i.e. two consumers are not assigned any partition
It would be useful to have the following metrics:
1/ consumer_group_members -> 8 (already available)
2/ consumer_group_topic_members
- {topic_name="topic_1"} -> 2
- {topic_name="topic_2"} -> 3
- {topic_name="topic_3"} -> 2
- {topic_name="topic_4"} -> 1
When filtering a topic one can see the level of consume parallelism
3/ consumer_group_topic_assigned_partitions
- {topic_name="topic_1"} -> 4
- {topic_name="topic_2"} -> 5
- {topic_name="topic_3"} -> 2
- {topic_name="topic_4"} -> 1
This can be useful to check if all partitions of a topic are assigned in a consumer group
The text was updated successfully, but these errors were encountered: