返回任务详情

运行信息

{{ run.instance_id }}

{{ {'success': '成功', 'failed': '失败', 'running': '运行中'}[run.status] }}

{{ run.start_time|dt if run.start_time else '运行中...' }}

{{ run.end_time|dt if run.end_time else '运行中...' }}

{{ run.duration|round(2) if run.duration else '-' }}秒

{{ task.id }}

{% if run.error_message %}
错误信息: {{ run.error_message }}
{% endif %}

运行日志

日志文件
{% if log_content %}
{{ log_content }}
{% else %}

暂无日志内容

{% endif %}