feat: storing tasks runs in Sqlite DB
This commit is contained in:
parent
41443e5a7d
commit
0d322ee70c
12 changed files with 270 additions and 108 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<h1>Task run {{ run.id }}</h1>
|
||||
|
||||
<ul>
|
||||
<li>Id: {{ run.id }}</li>
|
||||
<li>State: {{ run.status }}</li>
|
||||
<li>Submitted at: {{ run.submitted_at }}</li>
|
||||
<li>Started at: {{ run.started_at }}</li>
|
||||
<li>Ended at: {{ run.ended_at }}</li>
|
||||
<li>Trigger Mode: {{ run.trigger_mode }}</li>
|
||||
</ul>
|
||||
|
||||
<h3>Logs</h3>
|
||||
<p>Exit code is {{ run.exit_code }}</p>
|
||||
<pre>
|
||||
{{ run.logs }}
|
||||
</pre>
|
||||
Loading…
Add table
Add a link
Reference in a new issue