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

Partitions

{% if webapp_tile %}

WebApp

{{ webapp_tile.host }}:{{ webapp_tile.port }}{{ webapp_tile.path }}
In-flight
{{ webapp_tile.inflight_count }}
Success (60s)
{{ webapp_tile.success_60s }}
Errors (60s)
{{ webapp_tile.error_60s }}
Rejected (60s)
{{ webapp_tile.rejected_60s }}
Clients
    {% for c in webapp_tile.clients %}
  • {{ c.name }} ({{ c.rpm_limit }} rpm)
  • {% endfor %}
{% endif %} {% 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 %}