{% load orbit_tags %} {% if entries %}
| Type | Summary | Duration | Time |
|---|---|---|---|
|
{% if entry.type == 'request' %}
{% elif entry.type == 'query' %}
{% elif entry.type == 'log' %}
{% elif entry.type == 'exception' %}
{% elif entry.type == 'job' %}
{% elif entry.type == 'command' %}
{% elif entry.type == 'cache' %}
{% elif entry.type == 'model' %}
{% elif entry.type == 'http_client' %}
{% elif entry.type == 'dump' %}
{% elif entry.type == 'mail' %}
{% elif entry.type == 'signal' %}
{% elif entry.type == 'redis' %}
{% elif entry.type == 'gate' %}
{% 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" }} |
No entries yet
Telemetry data will appear here as your app processes requests