Review before sharing

{% if total_redacted > 0 %} Auto-redacted {{ total_redacted }} known pattern{{ 's' if total_redacted != 1 else '' }}. Review carefully — detection is not exhaustive. {% else %} No known patterns detected — but review carefully. Detection is not exhaustive. {% endif %}

{{ run.name }} · {{ run_duration_ms }}ms · {{ span_count }} span{{ 's' if span_count != 1 else '' }} · {% if run.status == 'ok' %} ok {% elif run.status == 'error' %} error {% else %} running {% endif %}
{% for sp in spans %}
{{ sp.name }} {{ sp.kind }} {{ sp.duration_ms }}ms {% if sp.status == 'error' %} error {% endif %}
{% if sp.input is not none %}
input
{{ sp.input | redacted_json }}
{% endif %} {% if sp.output is not none %}
output
{{ sp.output | redacted_json }}
{% endif %} {% if sp.input is none and sp.output is none %}

no input/output recorded

{% endif %}
{% else %}

No spans recorded for this run.

{% endfor %}