Page tree
Skip to end of metadata
Go to start of metadata

JQL Functions provided by the add-on:

SyntaxExplanationSample
spentInEstimationRange()search for issues where ‘Time Spent’ value is between Optimistic and Pessimistic Estimate. This function does not return issues which do not have both Optimistic and Pessimistic estimates specifiedissue in spentInEstimationRange()

spentAbovePessimistic

Search for issues where ‘Time Spent’ value is over Pessimistic Estimate.

This function takes a percentage argument. For example if the argument is ‘100’ you’ll get issues where ‘Time Spent’ value is over 100 percents greater than Pessimistic Estimate. In other words, you get issues where time spent is at least twice the pessimistic estimate.

If you specify 0 as an argument you just get issues where the ‘Time Spent’ is simply greater than the Pessimistic Estimate

issue in spentAbovePessimistic("25")

spentUnderOptimistic


Search for issues where ‘Time Spent’ value is under the Optimistic Estimate. The function takes a percentage argument. For example if the argument is ‘50’ you’ll get issues where ‘Time Spent’ value is over 50 percent less than Optimistic Estimate.

If you specify 0 as an argument you just get issues where the ‘Time Spent’ is simply less than the Optimistic Estimate

issue in spentUnderOptimistic("50")
estimationRangeDiff

Search for issues based on difference between Optimistic and Pessimistic Estimate. The function takes a percentage argument. For example if the argument is ‘90’ you’ll get issues where Pessimistic Estimate is at least 90% bigger than the Optimistic Estimate.

This function is convenient, for example, to search for issues where the difference between Pessimistic and Optimistic Estimate is too big in your opinion. For example, JQL query

issue in estimationRangeDiff("100")

gives you a list of issues where the Pessimistic Estimate is at least twice as big as the Optimistic Estimate (i.e 100% greater)

issue in estimationRangeDiff("90")



  • No labels