Failure Groups Query
data class FailureGroupsQuery(@Json(name = "query" ) val query: String, @Json(name = "failureTypes" ) val failureTypes: List<FailureType>? = arrayListOf(FailureType.build,FailureType.test), @Json(name = "maxFailureGroups" ) val maxFailureGroups: Int? = 100, @Json(name = "maxBuildIdsPerGroup" ) val maxBuildIdsPerGroup: Int? = 20)
Parameters
query
A query for filtering the builds considered for failure groups, written in the Develocity advanced search query language. The query must contain a restriction on buildStartTime to ensure the search is bounded in time. See: https://gradle.com/help/advanced-search
failure Types
Allows restricting the search to failure types. By default all failure types are considered.
max Failure Groups
The maximum number of failure groups to return.
max Build Ids Per Group
The maximum number of buildIds to return in a given FailureGroup.