{% extends "stats/base.html" %} {% load humanize %} {% load stats_extras %} {% block title %}Topic | {{topic.name}}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if topic.is_global %}

Cluster

{% endif %}

Stats

Average msg size{{topic.averageMsgSize | file_size_value}} {{topic.averageMsgSize | file_size_unit}}
Rate in{{topic.msgRateIn | intcomma }}msg/s
Rate out{{topic.msgRateOut | intcomma }}msg/s
Throughput in{{topic.msgThroughputIn | file_size_value }} {{topic.msgThroughputIn | file_size_unit }} / sec
Throughput out{{topic.msgThroughputOut | file_size_value }} {{topic.msgThroughputOut | file_size_unit }} / sec
Pending add entries{{topic.pendingAddEntriesCount | intcomma }}
Producer count{{topic.producerCount | intcomma }}
Storage size{{topic.storageSize | file_size_value}} {{topic.storageSize | file_size_unit}}
Broker {{topic.broker | escape }}

Subscriptions

{% if consumers %} {% else %} {% endif %} {% empty %} {% endfor %}
Subscription Type Backlog Rate out Throughput out Rate expired Unacked
{{sub.name}}{{sub.name}}{{sub.get_subscriptionType_display}} {{sub.msgBacklog | intcomma }} {{sub.msgRateOut | intcomma}} {{sub.msgThroughputOut | intcomma}} {{sub.msgRateExpired | intcomma}} {{sub.unackedMessages | intcomma}}
No subscriptions
{%if topic.is_global%}

Replication from {{topic.cluster}}

{% for peer in peers %} {% empty %} {% endfor %}
Remote Cluster Rate in Rate out Mbps in Mbps out Replication backlog
{{peer.remote_cluster__name}} {{peer.msgRateIn__sum | intcomma}} {{peer.msgRateOut__sum | intcomma}} {{peer.msgThroughputIn__sum | mbps | floatformat | intcomma}} {{peer.msgThroughputOut__sum | mbps | floatformat | intcomma}} {{peer.replicationBacklog__sum | intcomma}}
No replication
{% endif %} {% endblock %}