Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot 2025-06-05 15:12:05 +00:00
parent c260b2d47a
commit 41c3a20056
311 changed files with 1829 additions and 3439 deletions

View File

@ -1,10 +1,10 @@
<script>
import RunnerDetailsTabs from '../components/runner_details_tabs.vue';
import RunnerShow from '../components/runner_show.vue';
export default {
name: 'AdminRunnerShowApp',
components: {
RunnerDetailsTabs,
RunnerShow,
},
props: {
runnerId: {
@ -23,5 +23,5 @@ export default {
};
</script>
<template>
<runner-details-tabs :runner-id="runnerId" :runners-path="runnersPath" :edit-path="editPath" />
<runner-show :runner-id="runnerId" :runners-path="runnersPath" :edit-path="editPath" />
</template>

View File

@ -37,7 +37,7 @@ const routes = [
];
export default {
name: 'RunnerDetailsTabs',
name: 'RunnerShow',
components: {
GlBadge,
GlTabs,

View File

@ -1,10 +1,10 @@
<script>
import RunnerDetailsTabs from '../components/runner_details_tabs.vue';
import RunnerShow from '../components/runner_show.vue';
export default {
name: 'GroupRunnerShowApp',
components: {
RunnerDetailsTabs,
RunnerShow,
},
props: {
runnerId: {
@ -23,7 +23,7 @@ export default {
};
</script>
<template>
<runner-details-tabs
<runner-show
:runner-id="runnerId"
:runners-path="runnersPath"
:edit-path="editPath"

View File

@ -1,10 +1,10 @@
<script>
import RunnerDetailsTabs from '../components/runner_details_tabs.vue';
import RunnerShow from '../components/runner_show.vue';
export default {
name: 'ProjectRunnerShowApp',
components: {
RunnerDetailsTabs,
RunnerShow,
},
props: {
runnerId: {
@ -23,7 +23,7 @@ export default {
};
</script>
<template>
<runner-details-tabs
<runner-show
:runner-id="runnerId"
:runners-path="runnersPath"
:edit-path="editPath"

View File

@ -1,8 +1,14 @@
import { __ } from '~/locale';
import {
WORK_ITEM_TYPE_NAME_EPIC,
WORK_ITEM_TYPE_NAME_INCIDENT,
WORK_ITEM_TYPE_NAME_ISSUE,
WORK_ITEM_TYPE_NAME_KEY_RESULT,
WORK_ITEM_TYPE_NAME_OBJECTIVE,
WORK_ITEM_TYPE_NAME_REQUIREMENTS,
WORK_ITEM_TYPE_NAME_TASK,
WORK_ITEM_TYPE_NAME_TEST_CASE,
WORK_ITEM_TYPE_NAME_TICKET,
} from '~/work_items/constants';
export const STATUS_ALL = 'all';
@ -47,9 +53,16 @@ export const issuableTypeText = {
[TYPE_ALERT]: __('alert'),
[TYPE_INCIDENT]: __('incident'),
[TYPE_TEST_CASE]: __('test case'),
[WORK_ITEM_TYPE_NAME_EPIC]: __('epic'),
[WORK_ITEM_TYPE_NAME_INCIDENT]: __('incident'),
[WORK_ITEM_TYPE_NAME_ISSUE]: __('issue'),
[WORK_ITEM_TYPE_NAME_KEY_RESULT]: __('key result'),
[WORK_ITEM_TYPE_NAME_OBJECTIVE]: __('objective'),
[WORK_ITEM_TYPE_NAME_REQUIREMENTS]: __('requirement'),
[WORK_ITEM_TYPE_NAME_TASK]: __('task'),
[WORK_ITEM_TYPE_NAME_TEST_CASE]: __('test case'),
[WORK_ITEM_TYPE_NAME_TICKET]: __('ticket'),
};
const SHIFT_KEY = 16;

View File

@ -5,7 +5,7 @@ import { dashboardConfigValidator } from './utils';
/**
* The `DashboardLayout` component provides an easy way to render dashboards using a configuration, aligning with our [Pajamas guidelines](https://design.gitlab.com/patterns/dashboards).
*
* Please refer to the [documentation](https://docs.gitlab.com/development/fe_guide/dashboard_layout_framework.md) for more information.
* Please refer to the [documentation](https://docs.gitlab.com/development/fe_guide/dashboard_layout_framework) for more information.
*
*/
export default {

View File

@ -720,9 +720,6 @@ module ApplicationSettingsHelper
end
def vscode_extension_marketplace_settings_view
# NOTE: This is intentionally not scoped to a specific actor since it affects instance-level settings.
return unless Feature.enabled?(:vscode_extension_marketplace_settings, nil)
presets = ::WebIde::ExtensionMarketplacePreset.all.map do |preset|
preset.to_h.deep_transform_keys { |key| key.to_s.camelize(:lower) }
end

View File

@ -163,7 +163,7 @@ module PreferencesHelper
private
def extensions_marketplace_view
return unless WebIde::ExtensionMarketplace.feature_enabled?(user: current_user)
return unless WebIde::ExtensionMarketplace.feature_enabled_from_application_settings?
build_extensions_marketplace_view(
title: s_("Preferences|Web IDE"),

View File

@ -312,11 +312,6 @@ class ContainerRepository < ApplicationRecord
def protected_from_delete_by_tag_rules?(user)
return true unless user
# Check for immutable tag protection rules
if Feature.enabled?(:container_registry_immutable_tags, project) && project.has_container_registry_immutable_tag_rules? && has_tags?
return true
end
# Admins are not restricted by mutable tag protection rules
return false if user.can_admin_all_resources?

View File

@ -42,24 +42,7 @@ module Auth
attr_reader :authentication_abilities
def valid_user_actor?
feature_user = deploy_token&.user || current_user
# TODO: Cleanup code related to packages_dependency_proxy_containers_scope_check
# https://gitlab.com/gitlab-org/gitlab/-/issues/520321
if Feature.enabled?(:packages_dependency_proxy_containers_scope_check, feature_user)
dependency_proxy_containers_scope_check
else
has_required_abilities? && (!deploy_token || deploy_token.valid_for_dependency_proxy?)
end
end
def dependency_proxy_containers_scope_check
if deploy_token
deploy_token.valid_for_dependency_proxy?
elsif current_user&.project_bot?
group_access_token&.active? && has_required_abilities?
else
current_user
end
has_required_abilities? && (!deploy_token || deploy_token.valid_for_dependency_proxy?)
end
def has_required_abilities?

View File

@ -213,7 +213,8 @@ module Members
{
created_by: member.created_by || current_user,
access_level: access_level,
expires_at: args[:expires_at]
expires_at: args[:expires_at],
importing: skip_authorization? && source&.importing?
}
end

View File

@ -5,6 +5,8 @@ module Packages
INTERNAL_EVENTS_NAMES = {
'delete_package' => 'delete_package_from_registry',
'delete_recipe_revision' => 'delete_recipe_revision_from_registry',
'delete_package_reference' => 'delete_package_reference_from_registry',
'delete_package_revision' => 'delete_package_revision_from_registry',
'pull_package' => 'pull_package_from_registry',
'push_package' => 'push_package_to_registry',
'push_symbol_package' => 'push_symbol_package_to_registry',

View File

@ -19,18 +19,40 @@
= gitlab_ui_form_for @user, url: profile_preferences_path, remote: true, method: :put, html: { id: "profile-preferences-form" } do |f|
= render_if_exists 'profiles/preferences/code_suggestions_settings_self_assignment'
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Appearance'),
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Mode'),
id: 'appearance',
options: { class: 'js-preferences-form' }) do |c|
- c.with_description do
= s_('Preferences|Choose the appearance of the application.')
= s_('Preferences|Choose a color mode.')
- c.with_body do
- Gitlab::ColorModes.each do |mode|
= f.gitlab_ui_radio_component :color_mode_id, mode.id,
mode.name,
radio_options: { checked: user_color_mode_id == mode.id }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Navigation theme'),
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Syntax highlights'),
id: 'syntax-highlighting-theme',
options: { class: 'js-preferences-form' }) do |c|
- c.with_description do
= s_('Preferences|Choose a highlight color scheme for viewing and editing code.')
- c.with_body do
.syntax-theme.row
- Gitlab::ColorSchemes.each do |scheme|
%label.col-6.col-sm-3.col-md-2.col-lg-auto.gl-mb-5
.preview= image_tag "#{scheme.css_class}-scheme-preview.png", alt: "#{scheme.css_class} scheme preview"
= f.gitlab_ui_radio_component :color_scheme_id, scheme.id,
scheme.name,
radio_options: { checked: user_color_schema_id == scheme.id }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Diffs'),
id: 'diffs-colors',
options: { class: 'js-preferences-form' }) do |c|
- c.with_description do
= s_('Preferences|Choose a color scheme for removed and added lines in diffs.')
- c.with_body do
#js-profile-preferences-diffs-colors-app{ data: user_diffs_colors }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Navigation'),
id: 'navigation-theme',
options: { class: 'js-preferences-form application-theme' }) do |c|
- c.with_description do
@ -44,32 +66,6 @@
theme.name,
radio_options: { checked: user_theme_id == theme.id }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Syntax highlighting theme'),
id: 'syntax-highlighting-theme',
options: { class: 'js-preferences-form' }) do |c|
- c.with_description do
= s_('Preferences|Choose the syntax highlighting theme used when viewing or editing code in GitLab.')
= succeed '.' do
= link_to _('Learn more'), help_page_path('user/profile/preferences.md', anchor: 'change-the-syntax-highlighting-theme'), target: '_blank', rel: 'noopener noreferrer'
- c.with_body do
.syntax-theme.row
- Gitlab::ColorSchemes.each do |scheme|
%label.col-6.col-sm-4.col-md-3.col-lg-auto.gl-mb-5
.preview= image_tag "#{scheme.css_class}-scheme-preview.png", alt: "#{scheme.css_class} scheme preview"
= f.gitlab_ui_radio_component :color_scheme_id, scheme.id,
scheme.name,
radio_options: { checked: user_color_schema_id == scheme.id }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Diff colors'),
id: 'diffs-colors',
options: { class: 'js-preferences-form' }) do |c|
- c.with_description do
= s_('Preferences|Customize the colors of removed and added lines in diffs.')
= succeed '.' do
= link_to _('Learn more'), help_page_path('user/profile/preferences.md', anchor: 'change-the-syntax-highlighting-theme'), target: '_blank', rel: 'noopener noreferrer'
- c.with_body do
#js-profile-preferences-diffs-colors-app{ data: user_diffs_colors }
= render ::Layouts::SettingsSectionComponent.new(s_('Preferences|Behavior'),
id: 'behavior',
options: { class: 'js-preferences-form' }) do |c|

View File

@ -0,0 +1,19 @@
---
description: Package_reference deleted from a package in the registry
action: delete_package_reference
identifiers:
- project
- namespace
- user
additional_properties:
label:
description: The name of the package type
property:
description: The auth type. Either 'guest', 'user' or 'deploy_token'
product_group: package_registry
milestone: '18.1'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/191910
tiers:
- free
- premium
- ultimate

View File

@ -0,0 +1,20 @@
---
description: Tracks when a package_reference is deleted from a package in the registry
action: delete_package_reference_from_registry
internal_events: true
identifiers:
- project
- namespace
- user
additional_properties:
label:
description: The name of the package type
property:
description: The auth type. Either 'guest', 'user' or 'deploy_token'
product_group: package_registry
milestone: '18.1'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/191910
tiers:
- free
- premium
- ultimate

View File

@ -0,0 +1,19 @@
---
description: Package_revision deleted from a package in the registry
action: delete_package_revision
identifiers:
- project
- namespace
- user
additional_properties:
label:
description: The name of the package type
property:
description: The auth type. Either 'guest', 'user' or 'deploy_token'
product_group: package_registry
milestone: '18.1'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/191910
tiers:
- free
- premium
- ultimate

View File

@ -0,0 +1,20 @@
---
description: Tracks when a package_revision is deleted from a package in the registry
action: delete_package_revision_from_registry
internal_events: true
identifiers:
- project
- namespace
- user
additional_properties:
label:
description: The name of the package type
property:
description: The auth type. Either 'guest', 'user' or 'deploy_token'
product_group: package_registry
milestone: '18.1'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/191910
tiers:
- free
- premium
- ultimate

View File

@ -1,9 +0,0 @@
---
name: vscode_extension_marketplace_settings
feature_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/508977
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/181624
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/508996
milestone: '17.10'
group: group::remote development
type: beta
default_enabled: true

View File

@ -1,9 +0,0 @@
---
name: web_ide_extensions_marketplace
feature_issue_url: https://gitlab.com/groups/gitlab-org/-/epics/7685
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/151352
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/459028
milestone: '17.0'
group: group::ide
type: beta
default_enabled: true

View File

@ -1,8 +0,0 @@
---
name: packages_dependency_proxy_containers_scope_check
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/136655
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/431386
milestone: '16.7'
type: development
group: group::container registry
default_enabled: false

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_octopress_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_octopress

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_brunch_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_brunch

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_doxygen_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_doxygen

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_hyde_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_hyde

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_lektor_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_lektor

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_jbake_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_jbake

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_hexo_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_hexo

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_middleman_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_middleman

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_hugo_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_hugo

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_pelican_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_pelican

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_nanoc_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_nanoc

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_swaggerui_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_swaggerui

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_jigsaw_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_jigsaw

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_metalsmith_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_metalsmith

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_gatsby_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_gatsby

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_pages_html_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_pages_html

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_dart_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_dart

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_docker_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_docker

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_julia_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_julia

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_npm_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_npm

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_dotnet_core_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_dotnet_core

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_5_minute_production_app_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_5_minute_production_app

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_ruby_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_ruby

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_dast_default_branch_deploy_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_dast_default_branch_deploy

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_load_performance_testing_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_load_performance_testing
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_helm_2to3_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_helm_2to3

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_sast_monthly
description: ''
product_group: static_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_sast

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_secret_detection_monthly
description: ''
product_group: secret_detection
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_secret_detection

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_code_intelligence_monthly
description: ''
product_group: code_review
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_code_intelligence

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_code_quality_monthly
description: ''
product_group: static_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_code_quality

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_deploy_ecs_monthly
description: ''
product_group: environments
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_deploy_ecs

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_deploy_ec2_monthly
description: ''
product_group: environments
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_deploy_ec2

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_browser_performance_testing_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_browser_performance_testing

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_test_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_test

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_browser_performance_testing_latest_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_browser_performance_testing_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_cf_provision_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_cf_provision
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_build_latest_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_build_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dast_runner_validation_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dast_runner_validation
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dast_on_demand_scan_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dast_on_demand_scan
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_license_scanning_monthly
description: ''
product_group: composition_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_license_scanning

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_coverage_fuzzing_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_coverage_fuzzing
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_api_fuzzing_latest_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_api_fuzzing_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_secure_binaries_monthly
description: ''
product_group: static_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_secure_binaries
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dast_api_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dast_api
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_container_scanning_monthly
description: ''
product_group: composition_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_container_scanning

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dast_latest_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dast_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dependency_scanning_monthly
description: ''
product_group: composition_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dependency_scanning

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_api_fuzzing_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: removed
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_api_fuzzing
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_dast_monthly
description: ''
product_group: dynamic_analysis
value_type: number
status: active
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_dast

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_cluster_image_scanning_monthly
description: ''
product_group: composition_analysis
value_type: number
status: removed
milestone_removed: '15.0'
removed_by_url: 'https://gitlab.com/gitlab-org/gitlab/-/merge_requests/87000'
milestone: '14.3'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_cluster_image_scanning

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_android_latest_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: "14.3"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_android_latest

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_build_monthly
description: ''
product_group: pipeline_authoring
value_type: number
status: active
milestone: "14.4"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/71157
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_build

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_deploy_latest_monthly
description: ''
product_group: environments
value_type: number
status: removed
milestone: '14.4'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/71157
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_deploy_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_deploy_monthly
description: ''
product_group: environments
value_type: number
status: active
milestone: "14.4"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/71157
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_deploy

View File

@ -1,20 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_security_sast_iac_latest_monthly
description: Count of pipelines using the latest SAST IaC template
product_group: "static_analysis"
value_type: number
status: active
milestone: "14.5"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73076
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
performance_indicator_type: []
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_security_sast_iac_latest

View File

@ -1,22 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_security_sast_iac_latest_monthly
description: Count of pipelines with implicit runs using the latest SAST IaC template
product_group: static_analysis
value_type: number
status: removed
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73076
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
performance_indicator_type: []
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_security_sast_iac_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,20 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_jobs_sast_iac_latest_monthly
description: Count of pipelines using the latest SAST IaC template
product_group: "static_analysis"
value_type: number
status: active
milestone: "14.5"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73074
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
performance_indicator_type: []
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_jobs_sast_iac_latest

View File

@ -1,22 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_sast_iac_latest_monthly
description: Count of pipelines with implicit runs using the latest SAST IaC template
product_group: static_analysis
value_type: number
status: removed
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73074
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
performance_indicator_type: []
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_sast_iac_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_widget_nothing_merge_click_new_file_monthly
description: Count of users who click the create file button in the nothing to merge widget state
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73762
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_widget_nothing_merge_click_new_file
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_post_merge_delete_branch_monthly
description: Count of users who click the delete source branch button after merge
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_post_merge_delete_branch
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_post_merge_click_revert_monthly
description: Count of users who click the revert button in the merge requet widget
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_post_merge_click_revert
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_post_merge_click_cherry_pick_monthly
description: Count of users who click the cherry pick button in the merge requet widget
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_post_merge_click_cherry_pick
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_post_merge_submit_revert_modal_monthly
description: Count of users who submit the post merge revert modal
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_post_merge_submit_revert_modal
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_post_merge_submit_cherry_pick_modal_monthly
description: Count of users who submit the post merge revert modal
product_group: code_review
product_categories:
- code_review_workflow
value_type: number
status: active
milestone: '14.5'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_post_merge_submit_cherry_pick_modal
data_category: optional
tiers:
- free
- premium
- ultimate

View File

@ -1,20 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_security_dast_on_demand_api_scan_monthly
description: Count of pipelines using the latest DAST API template
product_group: "dynamic_analysis"
value_type: number
status: active
milestone: "14.7"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/73564
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
options:
events:
- p_ci_templates_security_dast_on_demand_api_scan
performance_indicator_type: []
tiers:
- free
- premium
- ultimate

View File

@ -1,19 +0,0 @@
---
data_category: optional
key_path: redis_hll_counters.testing.users_expanding_testing_license_compliance_report_monthly
description: Count of expanding the license compliance widget
product_group: composition_analysis
value_type: number
status: active
milestone: '14.6'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75643
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- users_expanding_testing_license_compliance_report
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
data_category: optional
key_path: redis_hll_counters.testing.users_visiting_testing_license_compliance_full_report_monthly
description: Count of visiting the license compliance full report
product_group: composition_analysis
value_type: number
status: removed
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/152166
milestone_removed: '17.1'
milestone: '14.6'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75643
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- users_visiting_testing_license_compliance_full_report
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
data_category: optional
key_path: redis_hll_counters.testing.users_visiting_testing_manage_license_compliance_monthly
description: Count of visiting the manage license compliance page
product_group: composition_analysis
value_type: number
status: removed
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/152166
milestone_removed: '17.1'
milestone: '14.6'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/75643
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- users_visiting_testing_manage_license_compliance
tiers:
- free
- premium
- ultimate

View File

@ -1,21 +0,0 @@
---
data_category: optional
key_path: redis_hll_counters.testing.users_clicking_license_testing_visiting_external_website_monthly
description: Count of users clicking licence to visit external information website
product_group: composition_analysis
value_type: number
status: removed
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/152166
milestone_removed: '17.1'
milestone: '14.7'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/76917
time_frame: 28d
data_source: redis_hll
instrumentation_class: RedisHLLMetric
options:
events:
- users_clicking_license_testing_visiting_external_website
tiers:
- free
- premium
- ultimate

View File

@ -1,20 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_qualys_iac_security_monthly
description: ""
product_group: static_analysis
value_type: number
status: active
milestone: "14.7"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/77362
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
performance_indicator_type: []
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_qualys_iac_security

View File

@ -1,22 +0,0 @@
---
key_path: redis_hll_counters.code_review.i_code_review_user_jetbrains_api_request_monthly
description: Count of unique users per month who use GitLab plugin for JetBrains
product_group: code_review
product_categories:
- editor_extensions
value_type: number
status: active
milestone: "14.8"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/78713
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
options:
events:
- i_code_review_user_jetbrains_api_request
performance_indicator_type: []
tiers:
- free
- premium
- ultimate

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.work_items.users_updating_work_item_title_monthly
description: Unique users updating a work item's title
product_group: project_management
value_type: number
status: active
milestone: '14.9'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/80532
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
options:
events:
- users_updating_work_item_title
tiers:
- free
- premium
- ultimate

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_liquibase_monthly
description: ""
product_group: pipeline_authoring
value_type: number
status: active
milestone: "14.9"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/81817
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_liquibase

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_jobs_sast_latest_monthly
description: Weekly counts for SAST CI Latest template (Jobs folder)
product_group: static_analysis
value_type: number
status: active
milestone: "15.0"
introduced_by_url: 'https://gitlab.com/gitlab-org/gitlab/-/merge_requests/81847'
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_jobs_sast_latest

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.error_tracking.error_tracking_view_details_monthly
description: Unique users viewing the error details page
product_group: platform_insights
value_type: number
status: active
milestone: "14.9"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/82543
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
options:
events:
- error_tracking_view_details
tiers:
- free
- premium
- ultimate

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.error_tracking.error_tracking_view_list_monthly
description: Unique users viewing the list of errors in the project
product_group: platform_insights
value_type: number
status: active
milestone: "14.9"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/82543
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
options:
events:
- error_tracking_view_list
tiers:
- free
- premium
- ultimate

View File

@ -1,19 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_matlab_monthly
description: ""
product_group: pipeline_authoring
value_type: number
status: active
milestone: "14.10"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/82914
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_matlab

View File

@ -1,22 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_secret_detection_latest_monthly
description: Weekly counts for implicit use of Secret Detection CI Latest template
(Jobs folder)
product_group: secret_detection
value_type: number
status: removed
milestone: '15.0'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/81847
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_secret_detection_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.ci_templates.p_ci_templates_implicit_jobs_sast_latest_monthly
description: Weekly counts for implicit use of SAST CI Latest template (Jobs folder)
product_group: static_analysis
value_type: number
status: removed
milestone: '15.0'
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/81847
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
tiers:
- free
- premium
- ultimate
options:
events:
- p_ci_templates_implicit_jobs_sast_latest
removed_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/90163
milestone_removed: '15.5'

View File

@ -1,21 +0,0 @@
---
key_path: redis_hll_counters.error_tracking.error_tracking_total_unique_counts_monthly
description: Total unique users accessing error tracking routes
product_group: platform_insights
value_type: number
status: active
milestone: "14.9"
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/82543
time_frame: 28d
data_source: redis_hll
data_category: optional
instrumentation_class: RedisHLLMetric
events:
- name: error_tracking_view_list
unique: user.id
- name: error_tracking_view_details
unique: user.id
tiers:
- free
- premium
- ultimate

Some files were not shown because too many files have changed in this diff Show More