{% if traces %} {% for trace in traces %} {{ trace.start_time.strftime('%Y-%m-%d %H:%M:%S') }} {{ trace.http_method or 'N/A' }} {{ trace.name }} {% if trace.status == 'ok' %}✓ {{ trace.http_status_code or 'OK' }}{% else %}✗ {{ trace.http_status_code or 'ERROR' }}{% endif %} {{ "%.2f"|format(trace.duration_ms) if trace.duration_ms else 'N/A' }} ms {{ trace.user_email or 'anonymous' }} {% endfor %} {% else %}
📊

No traces found

Make some API requests to see observability data

{% endif %}