-
Notifications
You must be signed in to change notification settings - Fork 1
Get PercentOnTargetSprints
external help file: AgileCli.dll-Help.xml
Module Name: AgileCli
online version:
schema: 2.0.0
Returns the proportion of sprints where the number of completed points out of the number committed was within the permissible margin of error.
Get-PercentOnTargetSprints [-NoCache] [-BoardName <String>] [-SprintCount <Int32>] [<CommonParameters>]
How often does your team meet their sprint commitments? This cmdlet evaluates the specified collection of sprints and determines what proportion of them were completed within a margin of error, in terms of the number points committed versus the actual number of points completed.
Let's say over the last 10 sprints, your team committed to 100 points each. In 6 of those sprints, they completed between 85 and 107 points. But in 4 of those sprints only 60 points were completed. That means 6 out of the 10 sprints were "on target" because they were completed within the default margin of error. The other 4 sprints did not meeting this objective. If you ran Get-PercentOnTargetSprints -SprintCount 10
for this team, the result would be 60%
because only 6 out of the 10 sprints were completed within the margin of error.
Note that the default margin of error is 15%. This can be changed to any value between 1 and 100. See Edit-AgileCliConfiguration
for more information.
PS C:\> Get-PercentOnTargetSprints -BoardName "My Awesome Team"
Evaluates the last 10 sprints for the "My Awesome Team" board and returns the percent that were completed within the specified margin of error.
PS C:\> Get-PercentOnTargetSprints -BoardName "My Awesome Team" -NoCache
Invalidates the cache - if any - and evaluates the last 10 sprints for the "My Awesome Team" board and returns the percent that were completed within the specified margin of error.
PS C:\> Get-PercentOnTargetSprints -SprintCount 7
Evaluates the last 7 sprints for the default Jira board and returns the percent that were completed within the specified margin of error.
The name of the Jira board. Required if a default board name is not saved, or if you wish to override the default.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Invalidates the cache and forces the data to refresh.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The number of sprints to evaluate. The default is 5.
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: 5
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.