({{ stream.error }})
{% elif stream.consumers %}| Name | Pending | Ack Pending | Redelivered | Waiting | Delivered | Confirmed | Created | Action |
|---|---|---|---|---|---|---|---|---|
| {{ c.name }} | {{ c.num_pending if c.num_pending is not none else '—' }} | {{ c.num_ack_pending if c.num_ack_pending is not none else '—' }} | {{ c.num_redelivered if c.num_redelivered is not none else '—' }} | {{ c.num_waiting if c.num_waiting is not none else '—' }} | {{ c.delivered if c.delivered is not none else '—' }} | {{ c.acked if c.acked is not none else '—' }} | {{ c.created.isoformat() if c.created else '—' }} | {% if c.protected %} central-owned {% else %} {% endif %} |
(no consumers)
{% endif %}