<%== view_title('Consumers groups overview') %> <% if @stats.empty? %> <%== partial 'health/no_data' %> <% else %> <%== partial 'health/tabs' %> <% end %> <% @stats.each_with_index do |(cg_name, details), index| %>

<%= cg_name %>

Last rebalance: <%== relative_time(details[:rebalanced_at]) %>
<% topics = details[:topics].sort_by(&:first) %> <% topics.each_with_index do |(topic_name, partitions), index| %> <% partitions.sort_by(&:first).each do |partition_id, details| %> <%== partial( 'health/partition', locals: { topic_name: topic_name, partition_id: partition_id, details: details } ) %> <% end %>
<%= topic_name %>
Partition Lag stored Lag stored trend Committed offset Stored offset Fetch state Poll state LSO state Process name
<% end %>
<% end %>