FailureGroupsQuery

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

failureTypes

Allows restricting the search to failure types. By default all failure types are considered.

maxFailureGroups

The maximum number of failure groups to return.

maxBuildIdsPerGroup

The maximum number of buildIds to return in a given FailureGroup.

Constructors

Link copied to clipboard
constructor(@Json(name = "query") query: String, @Json(name = "failureTypes") failureTypes: List<FailureType>? = arrayListOf(FailureType.build,FailureType.test), @Json(name = "maxFailureGroups") maxFailureGroups: Int? = 100, @Json(name = "maxBuildIdsPerGroup") maxBuildIdsPerGroup: Int? = 20)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard