Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MEI: Have a measure of incoming/closed defects vs. existing open #3715

Closed
jensstutte opened this issue Oct 13, 2023 · 3 comments · Fixed by #3721
Closed

MEI: Have a measure of incoming/closed defects vs. existing open #3715

jensstutte opened this issue Oct 13, 2023 · 3 comments · Fixed by #3721
Assignees

Comments

@jensstutte
Copy link

Based on this doc.

Incoming(TimeInterval) := NumOpenedDefects(TimeInterval) / NumOpenDefects(Start(TimeInterval))
Closed(TimeInterval)  := NumClosedDefects(TimeInterval) / NumOpenDefects(Start(TimeInterval))

Given that NumOpenDefects(Start(TimeInterval)) is hard to query live, we estimate it by:

NumOpenDefects(Start(TimeInterval)) := NumOpenDefects(End(TimeInterval)) + NumClosedDefects(TimeInterval) - NumOpenedDefects(TimeInterval)

such that if the calculation is run with an end date of the time interval that is close to today we can use the up-to-date values for components and severity without bothering too much for deviations.

@jensstutte jensstutte changed the title Have a measure of incoming/closed defects vs. existing open MEI: Have a measure of incoming/closed defects vs. existing open Oct 13, 2023
@marco-c
Copy link
Collaborator

marco-c commented Oct 13, 2023

@jensstutte two questions:

  • should this be made a percentage as well?
  • do we want both weighed and non-weighed or only non-weighed? In the doc you mentioned the weighed, while here you mentioned the non-weighed

@jensstutte
Copy link
Author

jensstutte commented Oct 13, 2023

(Edit: misconception on my side)
Percentage is fine. I switched to non-weighed as this is probably more relatable for who knows their backlogs.

@jensstutte
Copy link
Author

(it might be nice to have links in the mail that open a query showing those bugs?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants