Cached flow run data from the local SQLite database.
{% if row %}| ID | {{ row.get("id", "") }} |
|---|---|
| Name | {{ row.get("name", "") }} |
| Flow | {{ row.get("flow_name", "") }} |
| Flow ID | {{ row.get("flow_id", "") }} |
| State | {% set st = row.get("state_type", "") %} {{ row.get("state_name", st) }} |
| State Message | {{ row.get("state_message") }} |
| Deployment | {{ row.get("deployment_name") or "" }} |
| Deployment ID | {{ row.get("deployment_id") }} |
| Entrypoint | {{ row.get("entrypoint") or "" }} |
| Work Pool | {{ row.get("work_pool_name") or "" }} |
| Pool Type | {{ row.get("work_pool_type") or "" }} |
| Work Queue | {{ row.get("work_queue_name") }} |
| Infrastructure PID | {{ row.get("infrastructure_pid") }} |
| Created By | {{ row.get("created_by_display") }} ({{ row.get("created_by_type", "") }}) |
| Start Time | {{ (row.get("start_time") or "")[:19] }} |
| End Time | {{ (row.get("end_time") or "")[:19] }} |
| Duration | {% set dur = row.get("total_run_time_s") %} {% if dur is not none %}{{ "%.1f"|format(dur) }}s{% endif %} |
| Run Count | {{ row.get("run_count", "") }} |
| Auto Scheduled | {{ "Yes" if row.get("auto_scheduled") else "No" }} |
| Tags | {{ row.get("tags", "[]") }} |
| Parameters |
{{ row.get("parameters", "{}") }}
|
| Created | {{ (row.get("created") or "")[:19] }} |
| Updated | {{ (row.get("updated") or "")[:19] }} |
{{ run_id }}