vote up 6 vote down star
1

Possible Duplicate:
What are the most useful software development metrics?

Our development team is looking to start tracking some concrete metrics for the purposes of our own self-improvement as a team. Our (very) high-level objectives are improving team productivity and quality.

What have you found to be the most useful metric for a development team to track during their project?

Edit:

We run most of our projects using Scrum these days, and most of the metrics that the process provides are difficult to normalize across multiple projects over time. Something that could be easily normalized would be helpful.

flag

closed as exact duplicate by gbjbaanb, yesraaj, Alex, dmckee, sth Sep 12 at 12:11

9 Answers

vote up 2 vote down check

Measurement is often very tricky and I always keep the following quote in mind:

"Tell me how [and when] you’ll measure me, and I’ll tell you how I’ll behave." -- Eliyahu M. Goldratt

But, it's of course possible to measure in a smart way and I especially like the system that Mary Poppendieck recommends. This system is based on three holistic measurements that must be taken as a package (some of them are not "directly" related to the team but as we'll see, without them, there is no point to have a team):

  1. Cycle time
    • From product concept to first release or
    • From feature request to feature deployment or
    • From bug detection to resolution
  2. Business Case Realization (without this, everything else is irrelevant)
    • P&L or
    • ROI or
    • Goal of investment
  3. Customer Satisfaction

You can try other metrics to track productivity (e.g. team velocity) and/or quality (e.g. P1/P2 bugs per iteration) but always keep in mind the real goal: providing value to your users, and fast.

link|flag
vote up 0 vote down

My company, for good or evil, uses defect density - LOC committed / defects found. We only measure builds given to QA, not our integration builds. There are sometimes arguments about which build to "assign" a defect to but that's pretty minor.

link|flag
I'm curious - what are the arguments about which build to assign a defect to? I see it's between the QA build and the Integration build, but what are the arguments of proponents of each side? I would personally assign them to whatever build your QA team is testing, since any other build is "unofficial". – Thomas Owens Sep 11 at 17:52
If the defect is found is release 4.5.3 but can be traced back to, say, release 4.0.2, the argument is about whether it properly should be assigned in the release where it was actually found (development viewpoint) or the release where it was introduced, found or not (qa/sales viewpoint). It all feeds back into defect counts, which affects our profit-sharing thing and ultimately to who gets more nickels. – DaveE Sep 11 at 18:26
vote up 8 vote down

This might not be what you want to hear, but I don't think there's a single most useful metric. Every measurement and metric tells a small part of the entire story. You said that you are most interested in productivity and quality, but even so, those are big areas!

I think that Software Engineering Metrics: What Do They Measure and How Do We Know? might be of interest. It's a freely available PDF.

link|flag
All kidding aside, this is the best answer. No single metric tells the whole story. – Matthew Jones Sep 11 at 17:45
Good answer, and thank you for the link. – The Matt Sep 11 at 20:21
vote up 0 vote down

Bugs?

Ok, code changes. I have some code where the same routines get modified over and over. If we, as a team that is, remembered this section of code, we could see that it is the place where we need to spend some time reviewing the design. As it is, we track bugs which simply refer to the project instead which is a less useful metric of code flaws.

link|flag
vote up 0 vote down

Velocity, but in order to track that you have to gather other metrics so it's not as easy as it sounds.

Velocity is basically the amount of work being done by your team. It's actually a calculation based off of other metrics, though.

What do you need to calculate velocity? First, you have to estimate the amount of work each task takes to do (this is done by your entire team and is usually in number of ideal days of work or something). Second, you have to decide how long each cycle is going to be (ours is 3 weeks). Then you perform your cycle, tally up the work amount for the tasks you were able to actually complete (you don't count the ones that were not completed). Continue to do this and average the cycles' marginal velocity and you'll have your actual velocity.

link|flag
vote up 0 vote down

Client sign-off on expected features and functionality.

link|flag
how about client sign off with cold, hard cash? Nobody cares about code quality, features or functionality :) (or is that just the one used in developing the Enterprise software I have to use) – gbjbaanb Sep 11 at 17:44
@gbjbaanb: There's nothing in my answer about the client looking at source. If the program doesn't perform what it was created to do, they'll haggle for a refund while telling others about the poor job you did. – OMG Ponies Sep 11 at 18:02
vote up 1 vote down

The most important metric is percentage of projects/work completed. The second most important is work quality, and the third is speed.

Beyond that, you'd have to specify a methodology. Agile tracks alot more stuff, for example.

link|flag
vote up 11 vote down

WTFs per minute. :)

alt text

Seriously though, don't try to narrow it down to one metric, you will only get part of the story.

link|flag
1  
have i seen this before? stackoverflow.com/questions/189388/… – ax Sep 11 at 17:52
Yes you have because you posted a link to an older posting with the same content. – Alex Sep 11 at 18:13
That is really deoends on how polite the team members are. – NawaMan Sep 11 at 18:16
vote up 1 vote down

NOT lines of code :)

EDIT: seriously though, something like "Number of bugs generated" could be a good starting point for quality, as long as the people reporting the bugs aren't the same ones doing the developing.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.