{% extends "base.html" %} {% block title %}Runs - Piply{% endblock %} {% block content %}
Runs are persisted with task counts, downstream triggers, and operator output so you can debug the flow instead of guessing what happened.
Manual launches, scheduled runs, and downstream pipeline triggers all land in the same history stream.
| Run ID | Pipeline | Status | Trigger | Tasks | Started | Finished | Actions |
|---|---|---|---|---|---|---|---|
| {{ run.run_id }} | {{ run.pipeline_title }} | {{ run.status }} | {{ run.trigger }} | {{ run.successful_tasks }}/{{ run.task_count }} | {{ run.started_at or run.created_at }} | {{ run.finished_at or "-" }} |
Open
{% if run.status in ['queued', 'running'] %}
{% else %}
{% endif %}
|