{% extends "base.html" %} {% block title %}TraceGarden — Requests{% endblock %} {% block content %}
Recent HTTP requests captured by TraceGarden
Make an HTTP request to your application and it will appear here.
| Method | Path | Status | Duration | DB | HTTP | Tasks | Started |
|---|---|---|---|---|---|---|---|
| {{ req.method }} | {{ req.path }} {% if req.has_n_plus_one %} N+1 {% endif %} | {{ req.status_code }} | {{ "%.1f" | format(req.duration_ms) }}ms | {% if req.db_query_count > 0 %} {{ req.db_query_count }} {% else %} — {% endif %} | {% if req.http_call_count > 0 %} {{ req.http_call_count }} {% else %} — {% endif %} | {% if req.task_count > 0 %} {{ req.task_count }} {% else %} — {% endif %} | {{ req.started_at.strftime("%H:%M:%S") }} |