Review before sharing

{% if total_redacted > 0 %} {{ total_redacted }} secret{{ 's' if total_redacted != 1 else '' }} found and auto-redacted. Confirm what will be public. {% else %} No secrets detected. Confirm what will be public. {% 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 %}