Bug Tracker - Feature set - Comparison - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:52:20Z http://stackoverflow.com/feeds/question/341663 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison 2 Bug Tracker - Feature set - Comparison Blankman 2008-12-04T18:49:57Z 2009-10-04T19:44:38Z <p>Hi,</p> <p>I have installed and played around with a few bug tracking apps, and just wanted to get some feedback and features that a typical (or not so typical) bug tracking software has.</p> <p>I want to make sure I am not overlooking a feature that might come in handy.</p> <p>So the biggest idea is around a <b>bug</b>, which is associated with:</p> <pre><code>Bugs - product - product version - component (specific component of the product) - status - priority - assigned to - expected time to finish - time spent on it so far - created by - historical log of bug Forums Wiki </code></pre> <p><b>I guess the above functionality</b> is common to all, <b>so what exactly differentiates</b> them?</p> <p>Is it simply the UI and filtering/searching that you base a decision on?</p> <p>(I am comparing something like Jira with FogBugz)</p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341735#341735 1 Answer by shek for Bug Tracker - Feature set - Comparison shek 2008-12-04T19:21:01Z 2008-12-04T19:21:01Z <p>I realize this isn't a comprehensive answer to your question, but this will address some of what you're looking for. Check out this Wikipedia <a href="http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems" rel="nofollow">article</a>.</p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341753#341753 3 Answer by David Vidmar for Bug Tracker - Feature set - Comparison David Vidmar 2008-12-04T19:28:49Z 2008-12-04T19:28:49Z <p>You should also look for these features when choosing issue tracking software:</p> <ol> <li>integration with source control</li> <li>import and export of issues</li> <li>reporting</li> <li>you might also consider worklogging (time spent on an issue)</li> <li>price!</li> <li>support</li> <li>continuous development or a product</li> <li>ease of management and customization</li> </ol> <p>At work we use <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a> and after two years this are the marks I would give for above features:</p> <ol> <li>9/10 (lots of different source controls, svn with add-in)</li> <li>8/10 (import: cvs, bugzilla, api; export: pdf, excel, word, text, html)</li> <li>1/10 (poor, especially when it comes to worklog)</li> <li>5/10 (with some add-ins Jira gets better)</li> <li>7/10 (not too expensive for big teams, but not cheap enough for small)</li> <li>9/10</li> <li>6/10 (not seeing much compeling new features in new versions)</li> <li>7/10 (lots can be done, but it's not always easy)</li> </ol> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341756#341756 1 Answer by Bob Nadler for Bug Tracker - Feature set - Comparison Bob Nadler 2008-12-04T19:30:03Z 2008-12-04T19:30:03Z <p>It's a little old, but here's a good comparison resource: <a href="http://www.pensieve.org/ow.asp?BugTrackingSoftwareDiscussions" rel="nofollow">Bug Tracking Software Discussions</a> that was compiled from Code Project discussions. </p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341757#341757 2 Answer by BrianLy for Bug Tracker - Feature set - Comparison BrianLy 2008-12-04T19:30:36Z 2008-12-04T19:37:02Z <p>My recommendation would be to get trials of any products you wish to evaluate and put them in front of your users. I'm a FogBugz user, but from what I have seen they have somewhat different philosophies driving their development. For instance, reporting is something that FogBugz doesn't provide out of the box (see <a href="http://www.fogcreek.com/FogBugz/kb/howto/RunReports.html" rel="nofollow">http://www.fogcreek.com/FogBugz/kb/howto/RunReports.html</a>). mainly because they felt it doesn't encourage the appropriate behaviors in management.</p> <p>Other questions you should ask yourself:</p> <ul> <li>Do I need integrated wiki capabilities? FB has this built in but Atlassian provide Confluence.</li> <li>Can I create new work items via email? FB can do this.</li> <li>Is there an easy way to create screenshots and get them into the bug tracker?</li> <li>How much information do I really need to collect? Developers are good at over specifying what information needs to be captured, rather than fixing bugs. Again this feeds into management behavior, and 'management by numbers' which is potentially a problem.</li> <li>Can I have my software log bug reports into the tracking system automatically?</li> <li>Is the system for only for tracking bugs, or does it need to support helpdesk type tracking as well?</li> </ul> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341760#341760 0 Answer by Orion Edwards for Bug Tracker - Feature set - Comparison Orion Edwards 2008-12-04T19:30:57Z 2008-12-04T19:37:42Z <p>You may not need to be so specific. Things like product product/version/component are really all trying to express <em>where the affected code is likely to be.</em></p> <p>In my experience the product/component which exhibits the problem may not actually be the cause of the problem, and you may be wasting time trying to be overly specific. If you can express <em>where the affected code is likely to be</em> in a more concise or simpler way, I'd encourage you to do that.</p> <p>Here's my list of general things a bugtracker needs to capture. How exactly it captures these things is something you can use to compare products and decide what suits you best:</p> <p>For each request: (<a href="http://www.codinghorror.com/blog/archives/001189.html" rel="nofollow">deliberately not calling them features or bugs</a>)</p> <ul> <li>Description. Freeform text field but STRONGLY hint that you need these: <ul> <li>What they were doing at the time</li> <li>What they expected to happen</li> <li>What actually happened</li> </ul></li> <li>Attachments (images/logfiles are often critical)</li> <li>Assigned To / Created By</li> <li>Status</li> <li>Comments</li> <li>Revision History of all practical fields</li> </ul> <p>Things that are often captured but I'm personally sceptical about:</p> <ul> <li>Estimated Time/Time Taken <ul> <li>Seems like a nice idea but in my experience these are always either omitted, or incorrect, and end up serving no purpose. If you can stand over your developers with a whip and enforce that they fill in these fields you might see some more use out of them, but I can't see that being good for morale.</li> </ul></li> <li>Forums / Wiki <ul> <li>These are great, but they're separate products! What are they doing in your bugtracker!</li> </ul></li> <li>Product Version. <ul> <li>This <em>is</em> important, but you may not need it. On a webapp, the users only ever use one version, the latest. On desktop apps, good luck getting users to be aware of your versioning. Even Microsoft can't get people to be aware they're using office 2007 instead of office 97. It's all just "Word" to them.</li> </ul></li> <li>Breakdown into product sub-sections. <ul> <li>It's great to be able to produce reports that say "The Business Layer dll has 37% more defects than the integration web-service", but this is really just manager porn and doesn't help anyone get anything done. If a particular sub-section of your product is having issues your developers will tell you about it far sooner and far more accurately than any bug-tracking report.</li> </ul></li> <li>Seperate title field. <ul> <li>Having a seperate description/title field seems useful, but it's just more work for users. Just use the first line/x characters of the description if you need a summary. If the request doesn't make sense without a proper summary just edit it and put the summary as the first line</li> </ul></li> </ul> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341764#341764 0 Answer by Thomas Hansen for Bug Tracker - Feature set - Comparison Thomas Hansen 2008-12-04T19:31:54Z 2008-12-04T19:31:54Z <p>Why not use something like StackOverflow itself - in the forms of <a href="http://code.google.com/p/stacked/" rel="nofollow">Stacked</a></p> <p>Then you have an easy way of prioritzing features I assume...? ;)</p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341780#341780 0 Answer by tim for Bug Tracker - Feature set - Comparison tim 2008-12-04T19:38:15Z 2008-12-04T19:38:15Z <p>In addition to others' good suggestions, look for things like </p> <ul> <li>"nagging"/"whining"</li> <li>ability for customers to have some sort of visibility into status</li> <li>customers allowed to report issues</li> </ul> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/1231390#1231390 0 Answer by mark.ribau for Bug Tracker - Feature set - Comparison mark.ribau 2009-08-05T05:45:02Z 2009-08-05T05:45:02Z <p>An often ignored feature of the software would be the UI and user experience. There are some some tracking packages that have really get backend designs and are really customizable, but suffer from a poorly designed or frustrating to use UI. If it's maddening to use, no matter if it tracks everything you want, it's still not good software.</p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/1517209#1517209 0 Answer by Jason for Bug Tracker - Feature set - Comparison Jason 2009-10-04T19:44:38Z 2009-10-04T19:44:38Z <p>Recommend to subscribe to new <a href="http://www.bontq.com" rel="nofollow">online bug tracker</a></p>