Interface StatisticsService
- All Known Implementing Classes:
StatisticsServiceImpl
public interface StatisticsService
Used to generate statistical results for given searches and groupings.
- Since:
- v6.4
-
Method Summary
Modifier and TypeMethodDescriptionio.atlassian.fugue.Either
<TwoDimensionalStatisticsResponseBean, ErrorCollection> aggregateTwoDimensionalStats
(String jql, Long filterId, StatType statType, boolean addEmptyStatTypeToChart) Generates statistics for a given search grouped by a statistic type
-
Method Details
-
aggregateTwoDimensionalStats
io.atlassian.fugue.Either<TwoDimensionalStatisticsResponseBean,ErrorCollection> aggregateTwoDimensionalStats(String jql, Long filterId, StatType statType, boolean addEmptyStatTypeToChart) Generates statistics for a given search grouped by a statistic type- Parameters:
jql
- to searchfilterId
- saved filter to search forstatType
- to group by @return Either error if search was invalid or a set of resultsaddEmptyStatTypeToChart
- add issues with empty stat type to results or in separate object
-