{% extends "base.html" %} {% load filters %} {% block title %} Statistics {% endblock %} {% block content %}

Statistics

{% for s in servers %} {% endfor %}
Server Submissions received Transfers executed
{{ s.hostname }} {{ s.submissions }} {{ s.transfers }}

{% for p in pairs %} {% endfor %}
Source Destination Transfers active Avg. Throughput Avg. Duration
{{ p.source }} {{ p.destination }} {% for s in p.active %} {{ s.1 }} {{ s.0 }} {% endfor %} {{ p.avgThroughput|floatformat:2 }} Mb/s {{ p.avgDuration|floatformat:1 }} s
{% for v in vos %} {% endfor %}
VO Transfer states
{{ v.vo }} {% for s in v.states %} {{ s.1 }} {{ s.0 }} {% endfor %}
{% for r in uniqueReasons %} {% endfor %}
Count Reason
{{ r.count }} {{ r.reason }}
{% endblock %}