diff options
author | David Reyna <David.Reyna@windriver.com> | 2014-02-14 14:58:20 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-09 12:23:58 -0700 |
commit | 438578e2997f718f4ab2f50f309364edb6e3b4f8 (patch) | |
tree | 11c0c21949ec5ea80cc0fa42289c502c657d6ebb /bitbake/lib/toaster/orm | |
parent | 93aa4aba74843aff06434d03c4003a86439678c2 (diff) | |
download | poky-438578e2997f718f4ab2f50f309364edb6e3b4f8.tar.gz |
bitbake: toaster: extend Tasks to include Time, Disk IO, and CPU Usage
Update the All Tasks page to also cover the Time, Disk I/O, and
CPU Usage pages. Add filter count header support, and fix minor column
enablements.
[YOCTO #4387]
(Bitbake rev: 7e78836ebbddf0240094fd79a18cb057d6c4f322)
Signed-off-by: David Reyna <David.Reyna@windriver.com>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/orm')
-rw-r--r-- | bitbake/lib/toaster/orm/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index af44d86ff3..24d8d9c573 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py | |||
@@ -80,7 +80,7 @@ class Task(models.Model): | |||
80 | (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. | 80 | (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. |
81 | (SSTATE_MISS, 'Missing'), # it is a miss | 81 | (SSTATE_MISS, 'Missing'), # it is a miss |
82 | (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed | 82 | (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed |
83 | (SSTATE_RESTORED, 'Restored'), # succesfully restored | 83 | (SSTATE_RESTORED, 'Succeeded'), # successfully restored |
84 | ) | 84 | ) |
85 | 85 | ||
86 | CODING_NA = 0 | 86 | CODING_NA = 0 |
@@ -111,7 +111,7 @@ class Task(models.Model): | |||
111 | (OUTCOME_EMPTY, 'Empty'), | 111 | (OUTCOME_EMPTY, 'Empty'), |
112 | ) | 112 | ) |
113 | 113 | ||
114 | search_allowed_fields = [ "recipe__name", "task_name" ] | 114 | search_allowed_fields = [ "recipe__name", "recipe__version", "task_name", "logfile" ] |
115 | 115 | ||
116 | objects = TaskManager() | 116 | objects = TaskManager() |
117 | 117 | ||