{% load orbit_tags %} {% if entries %} {% for entry in entries %} {% endfor %}
Type Summary Duration Time
{% if entry.type == 'request' %} {% elif entry.type == 'query' %} {% elif entry.type == 'log' %} {% elif entry.type == 'exception' %} {% elif entry.type == 'job' %} {% endif %}
{% if entry.type == 'request' %} {% with status=entry.payload.status_code %} {{ status }} {% endwith %} {{ entry.payload.method }} {% elif entry.type == 'log' %} {% with level=entry.payload.level %} {{ level }} {% endwith %} {% elif entry.type == 'query' %} {% if entry.payload.is_slow %} SLOW {% endif %} {% if entry.payload.is_duplicate %} DUP {% endif %} {% endif %} {{ entry.summary }}
{% if entry.type == 'query' and entry.payload.caller.filename %}
{{ entry.payload.caller.filename }}:{{ entry.payload.caller.lineno }}
{% elif entry.type == 'log' %}
{{ entry.payload.logger }}
{% endif %}
{% if entry.duration_ms %} {{ entry.duration_ms|floatformat:1 }}ms {% else %} - {% endif %} {{ entry.created_at|time:"H:i:s" }}
{% if has_more %}
{% endif %} {% else %}

No entries yet

Telemetry data will appear here as your app processes requests

{% endif %}