{% extends "stats/base.html" %} {% load humanize %} {% load table %} {% block title %}Broker | {{property.name}}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% 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' %} {% for topic in topics.results %} {% empty %} {% endfor %}
{{topic.namespace}} {{topic.short_name}} {{topic.msgRateIn | intcomma}} {{topic.msgRateOut | intcomma}} {{topic.msgThroughputIn | intcomma}} {{topic.msgThroughputOut | intcomma}} {{topic.backlog | intcomma}}
No topics
{% table_footer topics %} {% endblock %}