{% extends "_base.html" %} {% block title %}Run {{ row.run_id }} — yt-shorts-trends{% endblock %} {% block content %}

Run {{ row.run_id }}

State{{ row.state }}
Mode{{ row.mode }}
Platform{% set _plat = row.platform %}{% include '_partials/platform_badge.html' %}
Started{{ row.started_at }}
Completed{{ row.completed_at or '—' }}
Last heartbeat{{ row.last_heartbeat }}
Exit code{{ row.exit_code if row.exit_code is not none else '—' }}
PID{{ row.pid or '—' }}
argv{{ row.argv_json }}
stdout{{ row.stdout_path }}
stderr{{ row.stderr_path }}
{% if has_run_archive %}

Open run output

{% endif %}

← Back to run history

{% endblock %}