{% for value in timings_summary %} {% endfor %}
Stat Count Sum Lower Mean Upper
{{ value.stat }} {{ value.count }} {{ value.sum }} {{ value.lower }} {{ value.mean|floatformat:"2" }} {{ value.upper }}
{% for value in timings %} {% endfor %}
Stat Time (ms) Timing
{{ value.0 }} {{ value.3 }}
 
 
{% for record in statsd %} {% endfor %}
Stat Total Count Values
{{ record.name }} {{ record.total }}{% if record.type == 'timing' %}ms{% endif %} {{ record.count }} {% if record.count > 1 %} {% for value in record.values %} {{ value.0 }}{% if record.type == 'timing' %}ms{% endif %}|{{ value.1 }}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %}