summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/task.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/task.html b/bitbake/lib/toaster/bldviewer/templates/task.html
index 6a9979e533..de965ab797 100644
--- a/bitbake/lib/toaster/bldviewer/templates/task.html
+++ b/bitbake/lib/toaster/bldviewer/templates/task.html
@@ -14,12 +14,11 @@
14 <th>Checksum</th> 14 <th>Checksum</th>
15 <th>Outcome</th> 15 <th>Outcome</th>
16 <th>Message</th> 16 <th>Message</th>
17 <th>Logfile</th>
18 <th>Time</th> 17 <th>Time</th>
19 <th>CPU usage</th> 18 <th>CPU usage</th>
20 <th>Disk I/O</th> 19 <th>Disk I/O</th>
21 <th>Script type</th> 20 <th>Script type</th>
22 <th>File path</th> 21 <th>Filesystem</th>
23 <th>Depends</th> 22 <th>Depends</th>
24 </tr> 23 </tr>
25 24
@@ -40,12 +39,17 @@
40 <td>{{task.sstate_checksum}}</td> 39 <td>{{task.sstate_checksum}}</td>
41 <td>{{task.get_outcome_display}}{% if task.provider %}</br>(by <a href="#{{task.provider.recipe.name}}.{{task.provider.task_name}}">{{task.provider.recipe.name}}.{{task.provider.task_name}}</a>){% endif %}</td> 40 <td>{{task.get_outcome_display}}{% if task.provider %}</br>(by <a href="#{{task.provider.recipe.name}}.{{task.provider.task_name}}">{{task.provider.recipe.name}}.{{task.provider.task_name}}</a>){% endif %}</td>
42 <td><p>{{task.message}}</td> 41 <td><p>{{task.message}}</td>
43 <td><a target="_fileview" href="file:///{{task.logfile}}">{{task.logfile}}</a></td>
44 <td>{{task.elapsed_time}}</td> 42 <td>{{task.elapsed_time}}</td>
45 <td>{{task.cpu_usage}}</td> 43 <td>{{task.cpu_usage}}</td>
46 <td>{{task.disk_io}}</td> 44 <td>{{task.disk_io}}</td>
47 <td>{{task.get_script_type_display}}</td> 45 <td>{{task.get_script_type_display}}</td>
48 <td><a target="_fileview" href="file:///{{task.recipe.file_path}}">{{task.recipe.file_path}}</a></td> 46 <td> <table>
47<tr><td> Recipe</td><td><a target="_fileview" href="file:///{{task.recipe.file_path}}">{{task.recipe.file_path}}</a></td></tr>
48<tr><td> Source</td><td><a target="_fileview" href="file:///{{task.file_name}}">{{task.file_name}}:{{task.line_number}}</a></td></tr>
49<tr><td> Workdir</td><td><a target="_fileview" href="file:///{{task.work_directory}}">{{task.work_directory}}</a></td></tr>
50<tr><td> Log</td><td><a target="_fileview" href="file:///{{task.logfile}}">{{task.logfile}}</a><br/></td></tr>
51</table>
52 </td>
49 <td> 53 <td>
50 <div style="height: 3em; overflow:auto"> 54 <div style="height: 3em; overflow:auto">
51 {% for tt in task.task_dependencies_task.all %} 55 {% for tt in task.task_dependencies_task.all %}