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

{{ error }}

{% else %}

Session Information

Token: {{ token }}

Traces: {{ traces|length }}

{% if traces %}

Traces in this Session

{% for trace in traces %}

Spans: {{ trace|length }}

{% if trace %}

Root Service: {{ trace[0].get('service', 'N/A') }}

{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}