{% extends "base.html" %} {% block title %}Partitions — Drakkar Debug{% endblock %} {% block content %}

Partitions

{% for s in summary %} {% endfor %} {% if not summary %} {% endif %}
Partition Status Last Consumed Last Committed Committed High WM Lag Queue Pending Consumed Completed Failed
{{ s.partition }} {% if s.is_live %} live {% else %} history {% endif %} {{ format_ts(s.last_consumed) }} {{ format_ts(s.last_committed) }} {{ s.committed_offset or '-' }} {{ s.high_watermark or '-' }} {{ s.lag }} {{ s.queue_size }} {{ s.pending_offsets }} {{ s.consumed_count }} {{ s.completed_count }} {{ s.failed_count }}
No partition data recorded yet
{% endblock %}