diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index c43ea555a0b141c1c239ce8c6aa07d8ed528e292..83c4a6e03c1bf6b2bc1eb73a592922887f59b657 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -17201,7 +17201,7 @@ Statistics for a group of CI jobs. | Name | Type | Description | | ---- | ---- | ----------- | -| <a id="cijobsstatisticsqueuedduration"></a>`queuedDuration` **{warning-solid}** | [`CiJobsDurationStatistics`](#cijobsdurationstatistics) | **Introduced** in GitLab 15.8. **Status**: Experiment. Statistics for amount of time that jobs were waiting to be picked up. The calculation is performed based on the most recent 100 jobs executed by the 5000 most recently created runners in context. If no filter is applied to runners, the calculation is performed based on the most recent 100 jobs globally. | +| <a id="cijobsstatisticsqueuedduration"></a>`queuedDuration` | [`CiJobsDurationStatistics`](#cijobsdurationstatistics) | Statistics for amount of time that jobs were waiting to be picked up. The calculation is performed based on the most recent 100 jobs executed by the 5000 most recently created runners in context. If no filter is applied to runners, the calculation is performed based on the most recent 100 jobs globally. | ### `CiManualVariable` diff --git a/ee/app/graphql/types/ci/jobs_statistics_type.rb b/ee/app/graphql/types/ci/jobs_statistics_type.rb index 67513822441d1a0c19c7af9b90ea9abde420f29b..d6fd805b33e08f9f2ebc971bc4bca4e63dc4c1ae 100644 --- a/ee/app/graphql/types/ci/jobs_statistics_type.rb +++ b/ee/app/graphql/types/ci/jobs_statistics_type.rb @@ -15,8 +15,7 @@ class JobsStatisticsType < BaseObject "based on the most recent #{Resolvers::Ci::RunnersJobsStatisticsResolver::JOBS_LIMIT} jobs executed by " \ "the #{Resolvers::Ci::RunnersJobsStatisticsResolver::RUNNERS_LIMIT} most recently created runners in " \ "context. If no filter is applied to runners, the calculation is performed based on the most " \ - "recent #{Resolvers::Ci::RunnersJobsStatisticsResolver::JOBS_LIMIT} jobs globally.", - alpha: { milestone: '15.8' } + "recent #{Resolvers::Ci::RunnersJobsStatisticsResolver::JOBS_LIMIT} jobs globally." def queued_duration object.object[:queued_duration]