ALM-Rangers / Visualize-Team-Project-Health-Widgets

Enable users to visualise the overall health of builds, releases, bugs, and pull requests on their dashboard, delivering a visual cue similar to the Codify Build Light. Marketplace: https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth
Other
20 stars 17 forks source link

Filter by date? #9

Open kallred1 opened 6 years ago

kallred1 commented 6 years ago

I can't find information to verify the overview is for all builds in the project ever.

If so (as I suspect), is there a way to filter? (ie last 30 days) or to see the count over time?

WouterDeKort commented 6 years ago

Hi @kallred1,

the widget shows the most recent result for each build definition depending on the status of that build (succeeded, in progress, failed). So you don't see individual builds but only the last build for each definition. Does that make it clear?

There is currently no filter on date. Sounds like a good idea.

Thanks, Wouter

kallred1 commented 6 years ago

Thanks for the reply! I was referring to the Build Health Overview widget just to be clear. To restate what you're saying to make sure I understand: Build Health Overview shows a sum of only the last build for each definition, rather than all builds in the project?

WouterDeKort commented 6 years ago

Yes, you're correct.

Imagine the following:

Build Definition A: 20 builds, last build is successful. Build Definition B: 5 builds, last build in progress Build Definition C: 5 builds, last build failed. Build Definition D: 10 builds, last build is successful.

The build overview widget will then show 2-1-1 since there are 4 definitions with 2 successful, 1 in progress, 1 failed.

Wouter