Closed
Bug 641594
Opened 14 years ago
Closed 14 years ago
The bug number exclusion field in the Top Bugs pane doesn't work correctly
Categories
(Tree Management Graveyard :: OrangeFactor, defect, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: ehsan.akhgari, Unassigned)
References
()
Details
Attachments
(7 files)
27.15 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
6.15 KB,
patch
|
mcote
:
review+
|
Details | Diff | Splinter Review |
14.10 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
5.44 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
4.29 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
6.87 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
45.58 KB,
patch
|
jgriffin
:
review+
|
Details | Diff | Splinter Review |
See the URL please. I thought that entering 633566 into the text field should exclude it from the Top Bugs stats (it would make sense since bug 633566 is now fixed), but apparently that does the exact opposite (only includes bug 633566), which is not very useful. ;-)
Assignee | ||
Comment 1•14 years ago
|
||
Hm yeah, the text fields on all views, except Simulator, just filter what bugs are displayed. You can more-or-less get the info you're looking for by just looking at the top 11 bugs, though, no?
But we could modify Top Bugs (and probably all the other views) to have both inclusionary and exclusionary filters, if you think that would be useful.
Assignee | ||
Comment 2•14 years ago
|
||
Ah, the text about the entry box is definitely wrong; that'll be the first thing to fix. :)
Reporter | ||
Comment 3•14 years ago
|
||
(In reply to comment #1)
> Hm yeah, the text fields on all views, except Simulator, just filter what bugs
> are displayed. You can more-or-less get the info you're looking for by just
> looking at the top 11 bugs, though, no?
>
> But we could modify Top Bugs (and probably all the other views) to have both
> inclusionary and exclusionary filters, if you think that would be useful.
Well, that may be useful, but it doesn't solve my current problem.
I've started to look at and fix the top orange bugs. I want to exclude the fixed bugs from <http://brasstacks.mozilla.com/orangefactor/?display=TopBugs>, and also some others (like bug 610185) which we cannot do anything for.
Assignee | ||
Comment 4•14 years ago
|
||
Er, but you want the ability to exclude a list of bugs from the graph & table, right? So if we added a filter that could be used to exclude bugs, you could do what you want by specifying the list of bugs you don't want to see, no? Or do you mean you'd also like to have an option that would automatically exclude fixed bugs?
Reporter | ||
Comment 5•14 years ago
|
||
(In reply to comment #4)
> Er, but you want the ability to exclude a list of bugs from the graph & table,
> right? So if we added a filter that could be used to exclude bugs, you could
> do what you want by specifying the list of bugs you don't want to see, no? Or
> do you mean you'd also like to have an option that would automatically exclude
> fixed bugs?
Both, I guess. The question that I want to answer is: "Now that I've fixed a bunch of bugs, and I know that I can't do anything for another set of bugs, what are the bugs on which I should focus on to get the most amount of impact out of my time?"
Assignee | ||
Comment 6•14 years ago
|
||
Okay we'll get on that. Anything to help someone attacking those oranges. :)
Assignee | ||
Updated•14 years ago
|
Assignee: nobody → mcote
Status: NEW → ASSIGNED
Assignee | ||
Comment 7•14 years ago
|
||
This addresses half of this bug by adding a new filter to the Orange Factor, Bug Count, and Top Bugs views which excludes bugs. You can specify bug numbers or a quicksearch query (remember that you have to preface quicksearch queries with "ALL" if you want to include resolved bugs), and on the Top Bugs view (only), you can enter number of bugs to exclude.
The excluded filter is applied after the included filter, with one exception: in Top Bugs, if you enter in a number of bugs (not bug number) for both the included and excluded filter, you will get the number of bugs specified in the included filter, but with the number of top bugs specified by the excluded filter removed first. In other words, if you ask to include 15 bugs and exclude 5, you'll get a list of the 6th most active bug to the 20th most active bug.
Attachment #522724 -
Flags: review?(jgriffin)
Assignee | ||
Comment 8•14 years ago
|
||
Ehsan, I hope this helps you out. Unfortunately filtering resolved/closed bugs is much harder because this information is not available in our ES database. The problem is that we can't assemble a list of the top X open bugs without asking bzAPI about the status of all the bugs first, which would take a long time (we'd have to do it iteratively because checking the status of all at the same time would choke bzAPI).
However, this prompted an interesting discussion. We are considering hooking pulse up to our ES database in order to store minimal bug data (status, summary, etc.) about all orange bugs, which would not only make this problem much easier to fix but would also speed up various parts of the site. We'll let you know how this goes.
Comment 9•14 years ago
|
||
Comment on attachment 522724 [details] [diff] [review]
Add exclusionary filters
The patch looks good.
One oddity of the implementation is that excluding something via quicksearch only excludes open bugs. So, for example, if you entered "Test timed out" in the exclude box, the list you'd end up with wouldn't contain any open bugs that contained "Test timed out", but may contain closed bugs that contain that text.
The same constraint is present with the include filter, but it probably makes more sense there.
I wonder, if instead of quicksearch, it might be better to do a straight title search for textual data in the exclude field, which would include bugs of any status?
Attachment #522724 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 10•14 years ago
|
||
Well, as I mentioned, you can preface any quicksearch query with "ALL" to include resolved/closed bugs. Admittedly I had to look at the quicksearch help to find this... maybe I could put it in the placeholder text as a suggestion/reminder?
Assignee | ||
Comment 11•14 years ago
|
||
Okay changed the exclude filter placeholder text to include more examples, including one with "ALL".
Pushed as http://hg.mozilla.org/automation/orangefactor/rev/272bd005d538
Reporter | ||
Comment 12•14 years ago
|
||
This is good enough for now. I can just remove the fixed bugs myself manually until we get the bug status data for you to use in orange factor. Thanks for the fix. When do you think it's going to be pushed live?
Assignee | ||
Comment 13•14 years ago
|
||
Ah sorry, I deployed it just after committing it, so you should see it now. You might have to refresh the page after loading it, if you have it cached locally.
Reporter | ||
Comment 14•14 years ago
|
||
(In reply to comment #13)
> Ah sorry, I deployed it just after committing it, so you should see it now.
> You might have to refresh the page after loading it, if you have it cached
> locally.
It doesn't work for me: <http://brasstacks.mozilla.com/orangefactor/?display=TopBugs&inputText=633566&endday=2011-03-14&startday=2011-02-13&dayCount=All&includeFilter=&excludeFilter=582216,%20%20633566,%20%20594666,%20%20618041,%20%20611457,%20%20626168,%20%20614643,%20%20637975,%20%20589502>
Am I missing something?
Assignee | ||
Comment 15•14 years ago
|
||
Oh that looks like a bug that was introduced along with the original include filter. If you omit the spaces after the commas, it will work, eg
http://brasstacks.mozilla.com/orangefactor/?display=TopBugs&inputText=633566&endday=2011-03-14&startday=2011-02-13&dayCount=All&includeFilter=&excludeFilter=582216,633566,594666,618041,611457,626168,614643,637975,589502
I'll fix that though, since it should work even with spaces.
Reporter | ||
Comment 16•14 years ago
|
||
(In reply to comment #15)
> Oh that looks like a bug that was introduced along with the original include
> filter. If you omit the spaces after the commas, it will work, eg
>
> http://brasstacks.mozilla.com/orangefactor/?display=TopBugs&inputText=633566&endday=2011-03-14&startday=2011-02-13&dayCount=All&includeFilter=&excludeFilter=582216,633566,594666,618041,611457,626168,614643,637975,589502
>
> I'll fix that though, since it should work even with spaces.
Beautiful, thanks!
Speaking of that, can you just break on word boundaries instead of only on commas? That would make this much easier to use.
Comment 17•14 years ago
|
||
This patch modifies woo_server.py to get all bugzilla data from a bz cache which is already running on brasstacks. To test it locally, you'll need to install http://hg.mozilla.org/users/jgriffin_mozilla.com/bzcache
woo_server now returns bug data as part of any call to \bybug, so we should further optimize by removing unneeded calls to \bugdetails from js.
Attachment #524292 -
Flags: review?(mcote)
Assignee | ||
Comment 18•14 years ago
|
||
Comment on attachment 524292 [details] [diff] [review]
let woo_server.py utilize a bz cache
Awesome, looks good and works perfectly on my machine.
Attachment #524292 -
Flags: review?(mcote) → review+
Comment 19•14 years ago
|
||
woo_server bzcache patch pushed as http://hg.mozilla.org/automation/orangefactor/rev/181c0a1173db
Assignee | ||
Comment 20•14 years ago
|
||
This separates the returned JSON from /bybug and /count into "oranges" and "bugs". This also fixes the metrics on various pages.
Attachment #526831 -
Flags: review?(jgriffin)
Comment 21•14 years ago
|
||
Comment on attachment 526831 [details] [diff] [review]
Fix metrics and better separate results of /count and /bybug
Thanks for doing this.
Attachment #526831 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 22•14 years ago
|
||
Pushed as http://hg.mozilla.org/automation/orangefactor/rev/24d332782df5. Next I'll work on using the "bugs" object to fill in the bugs' table rather than doing a separate query.
Assignee | ||
Comment 23•14 years ago
|
||
This patch adds the bug info in /bybug to the bug_details store so that we don't have to do a separate query for the details table.
Attachment #526850 -
Flags: review?(jgriffin)
Comment 24•14 years ago
|
||
Comment on attachment 526850 [details] [diff] [review]
Use bug info in /bybug where possible
I like patches where we can remove code. :)
Attachment #526850 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 25•14 years ago
|
||
Me too. :)
Pushed as http://hg.mozilla.org/automation/orangefactor/rev/f7ff95f08dc7
Assignee | ||
Comment 26•14 years ago
|
||
This patch moves the bug-list parsing into the client JS; previously, anything other than a single number was shipped off to bzAPI (via /bugquery) for parsing. It now allows comma and/or space separation between bug IDs. I also renamed the function to something more obvious and added some comments, since it was a bit confusing in there.
Attachment #526887 -
Flags: review?(jgriffin)
Comment 27•14 years ago
|
||
Comment on attachment 526887 [details] [diff] [review]
Better bug-list parsing
Looks great!
Attachment #526887 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 28•14 years ago
|
||
Pushed as http://hg.mozilla.org/automation/orangefactor/rev/546e8fd67cc8 and deployed.
Assignee | ||
Comment 29•14 years ago
|
||
Ehsan: the link you provided in comment 14 should now work. The filters will also work with space-separated lists of bug IDs, although if you want to get any more complicated you'll have to follow the standard Bugzilla quicksearch format.
Reporter | ||
Comment 30•14 years ago
|
||
(In reply to comment #29)
> Ehsan: the link you provided in comment 14 should now work. The filters will
> also work with space-separated lists of bug IDs,
Yep, thanks a lot!
> although if you want to get
> any more complicated you'll have to follow the standard Bugzilla quicksearch
> format.
Oh, I didn't know that! How does this work exactly? For example, by default when doing quicksearch, Bugzilla searches for open bugs only, which is clearly not the case here.
Assignee | ||
Comment 31•14 years ago
|
||
A quicksearch query is only perofmed if the WOO client JS wasn't able to parse a number or list of numbers out of the input text. If it *does* recognize the text as being one or more bug IDs, it includes/excludes those bugs regardless of status. Otherwise the text is passed to quicksearch and you'd have to specify "ALL" if you want to include/exclude closed bugs (e.g. "ALL test timed out").
So to recap, these are the ways the filter fields can be used. The first two are handled by the WOO code itself; the last is punted off to bzAPI for processing.
- single number, less than 10 000: a number of bugs to include/exclude
- include N: show N bugs
- exclude N: omit the top N bugs
- include N(i) and exclude N(e) (i.e. both filters are numbers less than 10 000): show the N(i) bugs following the top N(e) bugs
- for example, if N(i) is 10 and N(e) is 15, show the 16th to 25th highest-ranking bugs, inclusive
- single number above 10 000 or a comma- or space-separated list of numbers: include/exclude those specific bugs, open or closed, if they exist.
- anything else: treats the text field as a bugzilla quicksearch query and include/exclude the bugs that match.
I'll see about putting this into a help popup or the like.
Reporter | ||
Comment 32•14 years ago
|
||
(In reply to comment #31)
...
I see, that's pretty cool!
> I'll see about putting this into a help popup or the like.
That would be very helpful indeed. :-)
Assignee | ||
Comment 33•14 years ago
|
||
Simple code, but maybe you can make sure the text itself makes sense.
A couple other small things for me to fix w.r.t. filters:
- Orange Factor doesn't allow number-of-bugs, only bug IDs and QuickSearch. I don't think there's a good reason not to, or at least I can't remember it. I'll change it to match the other views' filters.
- Centering is off on the Simulator page.
Attachment #528258 -
Flags: review?(jgriffin)
Comment 34•14 years ago
|
||
Comment on attachment 528258 [details] [diff] [review]
Filter help dialog
Nice, I think the wording is clear.
Attachment #528258 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 35•14 years ago
|
||
Bunch of changes here:
- Display number of oranges without test-run information, with help dialog.
- Made filters consistent across all views.
- Put Orange Factor dropdowns into a table with labels.
- Increased graph and tick-font size.
- Consistent 'filtered stats' display.
Attachment #528861 -
Flags: review?(jgriffin)
Assignee | ||
Updated•14 years ago
|
Priority: -- → P1
Comment 36•14 years ago
|
||
Comment on attachment 528861 [details] [diff] [review]
Cleanup in filtering UI and elsewhere
Review of attachment 528861 [details] [diff] [review]:
Looks good. One thing I noticed is that during the initial page load, if you don't have anything in your browser's cache, you'll see the dialog text appear briefly on screen before the "Loading..." text appears. To avoid this, it might be a good idea to apply display: none to #dlgHelpFilter and #dlgHelpOrangeNoTestRun.
Attachment #528861 -
Flags: review?(jgriffin) → review+
Assignee | ||
Comment 37•14 years ago
|
||
Good call. All the dialog divs are now in a hidden parent div, so no extra rules necessary if we add more dialogs.
Pushed as http://hg.mozilla.org/automation/orangefactor/rev/1061d7724f24 and deployed.
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: Testing → Tree Management
Updated•5 years ago
|
Product: Tree Management → Tree Management Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•