CANCELED? Re: Reminder: Bug Triage Meeting Tomorrow (Tuesday) @ 15:00 UTC

Brennan Ashton bashton at brennanashton.com
Tue Jan 6 15:11:29 UTC 2009


On Tue, Jan 6, 2009 at 9:06 AM, John Poelstra <poelstra at redhat.com> wrote:
> John Poelstra wrote:
>>
>> Bug Triage Meeting
>> irc.freenode.net #fedora-meeting
>> Tuesday @ 15:00 UTC/10 AM EST
>>
>> Agenda
>>
>> 1) Reviewing the follow-up actions from last meeting:
>> https://fedoraproject.org/wiki/BugZappers/Meetings/Minutes-2008-Dec-16
>>
>> 2) Discuss goals we would like to set and meet for the Fedora 11 Release
>> Cycle.  I'd like to suggest we pick "SMART" goals:
>> S - specific
>> M - measurable
>> A - agreed on
>> R - relevant
>> T - timely (can be completed during Fedora 11)
>>
>> http://www.projectsmart.co.uk/smart-goals.html
>>
>> 3) Status from comphappy on metrics collection (if he is able to attend)
>>
>> See you there!
>>
>> John
>>
>
> Sorry for the short notice, but I cannot attend.  Feel free to meet without
> me or we can cover this stuff next week.
>
> John

Here is the template for the db that I have the metrics data going into:

triageByUsers = Table('triageByUsers', metadata,
    Column('id', Integer, primary_key=True),
    Column('date', Date),
    Column('triagerName', String(40)),
    Column('NEW', Integer),
    Column('NEEDINFO', Integer),
    Column('VERIFIED', Integer),
    Column('MODIFIED', Integer),
    Column('ASSIGNED', Integer),
    Column('CLOSED', Integer),
    Column('POST', Integer),
    Column('ON_QA', Integer),
    Column('needinfo?', Integer),
    Column('total', Integer)
)

triageByDate = Table('triageByDate', metadata,
    Column('id', Integer, primary_key=True),
    Column('date', Date),
    Column('NEW', Integer),
    Column('NEEDINFO', Integer),
    Column('VERIFIED', Integer),
    Column('MODIFIED', Integer),
    Column('ASSIGNED', Integer),
    Column('CLOSED', Integer),
    Column('POST', Integer),
    Column('ON_QA', Integer),
    Column('needinfo?', Integer)
)


triageByUsers
*Each days results separated by user.
triageByDate
*Each days results totals

What representations would be useful?

Changes to the format, or more data that people want is also welcome.




More information about the fedora-test-list mailing list