{% extends "base.html" %} {% block content %}

System Traces

Real-time events captured by auto-instrumentation.

{% macro render_trace_row(trace, depth=0) %} {% if trace.children %} {% for child in trace.children %} {{ render_trace_row(child, depth + 1) }} {% endfor %} {% endif %} {% endmacro %} {% for trace in traces %} {{ render_trace_row(trace) }} {% else %} {% endfor %}
Operation / Hierarchy Type Latency Status Timestamp Details
{% if trace.children %} {% else %} {% endif %} {{ trace.operation or trace.name or 'Unknown' }}
{{ trace.type }} {% if trace.latency_seconds %} {{ (trace.latency_seconds * 1000) | round(2) }} ms {% else %} - {% endif %} {% if trace.status == 'error' or trace.error %} Error {% elif trace.status == 'success' %} Success {% else %} Info {% endif %} {{ trace.timestamp.split('T')[1][:8] }}
No traces found. Run some operations to see events here.
{% endblock %}