{% extends "stats/base.html" %} {% load humanize %} {% load table %} {% block title %}Namespace | {{property.name}}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Clusters

{% column_header topics 'cluster__name' 'Cluster' %} {% column_header topics 'namespace__name' 'Namespace' %} {% column_header topics 'name' 'Topic' %} {% column_header topics 'msgRateIn' 'Msg/s in' %} {% column_header topics 'msgRateOut' 'Msg/s out' %} {% column_header topics 'msgThroughputIn' 'Bytes/s in' %} {% column_header topics 'msgThroughputOut' 'Bytes/s out' %} {% column_header topics 'backlog' 'Backlog' %} {% column_header topics 'broker' 'Broker' %} {% for topic in topics.results %} {% empty %} {% endfor %}
{{topic.cluster}} {{topic.namespace}} {{topic.short_name}} {{topic.msgRateIn | intcomma}} {{topic.msgRateOut | intcomma}} {{topic.msgThroughputIn | intcomma}} {{topic.msgThroughputOut | intcomma}} {{topic.backlog | intcomma}} {{topic.broker | escape | truncatechars:20 }}
No topics
{% table_footer topics %} {% endblock %}