Query Doctor Dashboard

{{ total_reports }}
Requests Analyzed
{{ total_issues }}
Total Issues
{{ critical_count }}
Critical
{% if reports %} {% for r in reports %} {% endfor %}
Timestamp Method Path Queries Time (ms) Issues
{{ r.timestamp }} {{ r.method }} {{ r.path }} {{ r.total_queries }} {{ r.total_time_ms }} {% if r.critical %} {{ r.issues }} {% elif r.issues > 0 %} {{ r.issues }} {% else %} {{ r.issues }} {% endif %}
{% for rx in r.prescriptions %}
{{ rx.severity|upper }} {{ rx.description }} {% if rx.callsite %}
{{ rx.callsite }}
{% endif %} {% if rx.fix %}
{{ rx.fix }}
{% endif %}
{% empty %}
No issues for this request.
{% endfor %}
{% else %}
No reports recorded yet. Enable the admin dashboard in settings and make some requests.
{% endif %}