diff --git a/.gitlab/ci/build-images.gitlab-ci.yml b/.gitlab/ci/build-images.gitlab-ci.yml index 91cf7c9f2d5..0169f017063 100644 --- a/.gitlab/ci/build-images.gitlab-ci.yml +++ b/.gitlab/ci/build-images.gitlab-ci.yml @@ -24,47 +24,12 @@ build-qa-image: - .base-image-build - .build-images:rules:build-qa-image stage: build-images - tags: - - high-cpu needs: [] script: - !reference [.base-image-build, script] - echo $QA_IMAGE - /kaniko/executor --context=${CI_PROJECT_DIR} --dockerfile=${CI_PROJECT_DIR}/qa/Dockerfile --destination=${QA_IMAGE} --cache=true -# This image is used by: -# - The `review-qa-*` jobs -# - The downstream `omnibus-gitlab-mirror` pipeline triggered by `package-and-qa` so that it doesn't have to rebuild it again. -# The downstream `omnibus-gitlab-mirror` pipeline itself passes the image name to the `gitlab-qa-mirror` pipeline so that -# it can use it instead of inferring an end-to-end image from the GitLab image built by the downstream `omnibus-gitlab-mirror` pipeline. -# See https://docs.gitlab.com/ee/development/testing_guide/end_to_end/index.html#testing-code-in-merge-requests for more details. -build-qa-image-buildkit: - extends: - - .base-image-build - - .use-buildkit - - .build-images:rules:build-qa-image - stage: build-images - tags: - - docker - - high-cpu - needs: [] - variables: - QA_IMAGE_BASE: ${CI_REGISTRY}/${CI_PROJECT_PATH}/gitlab-ee-qa - allow_failure: true - script: - - !reference [.base-image-build, script] - # Build image and push current sha tag and latest branch tag - # Fetch cache from latest branch image or latest main branch image - - | - buildctl-daemonless.sh build \ - --frontend=dockerfile.v0 \ - --local context="." \ - --local dockerfile="qa" \ - --export-cache type=inline \ - --import-cache type=registry,ref="${QA_IMAGE_BASE}:${CI_COMMIT_REF_SLUG}-buildkit" \ - --import-cache type=registry,ref="${QA_IMAGE_BASE}:${CI_DEFAULT_BRANCH}" \ - --output type=image,\"name="${QA_IMAGE}-buildkit","${QA_IMAGE_BASE}:${CI_COMMIT_REF_SLUG}-buildkit"\",push=true - # This image is used by: # - The `CNG` pipelines (via the `review-build-cng` job): https://gitlab.com/gitlab-org/build/CNG/-/blob/cfc67136d711e1c8c409bf8e57427a644393da2f/.gitlab-ci.yml#L335 # - The `omnibus-gitlab` pipelines (via the `package-and-qa` job): https://gitlab.com/gitlab-org/omnibus-gitlab/-/blob/dfd1ad475868fc84e91ab7b5706aa03e46dc3a86/.gitlab-ci.yml#L130 diff --git a/.gitlab/ci/global.gitlab-ci.yml b/.gitlab/ci/global.gitlab-ci.yml index b065d578b9d..d9978a44ffb 100644 --- a/.gitlab/ci/global.gitlab-ci.yml +++ b/.gitlab/ci/global.gitlab-ci.yml @@ -268,24 +268,6 @@ - mkdir -p /kaniko/.docker - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json -.use-buildkit: - image: - name: ${GITLAB_DEPENDENCY_PROXY}moby/buildkit:v0.9.0 - entrypoint: [""] - before_script: - - source scripts/utils.sh - - mkdir -p $HOME/.docker - - | - cat <<- EOF > $HOME/.docker/config.json - { - "auths": { - "$CI_REGISTRY": { - "auth": "$(echo -n $CI_REGISTRY_USER:$CI_REGISTRY_PASSWORD | base64)" - } - } - } - EOF - .as-if-foss: variables: FOSS_ONLY: '1' diff --git a/app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/interval_pattern_input.vue b/app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/interval_pattern_input.vue index d0ec5668d21..0e646e8c505 100644 --- a/app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/interval_pattern_input.vue +++ b/app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/interval_pattern_input.vue @@ -141,9 +141,7 @@ export default { return Math.floor(Math.random() * 28); }, showDailyLimitMessage({ value }) { - return ( - value === KEY_CUSTOM && this.glFeatures.ciDailyLimitForPipelineSchedules && this.dailyLimit - ); + return value === KEY_CUSTOM && this.dailyLimit; }, }, }; diff --git a/app/controllers/projects/issues_controller.rb b/app/controllers/projects/issues_controller.rb index 4c207a46993..1150ee47cda 100644 --- a/app/controllers/projects/issues_controller.rb +++ b/app/controllers/projects/issues_controller.rb @@ -227,7 +227,7 @@ class Projects::IssuesController < Projects::ApplicationController IssuableExportCsvWorker.perform_async(:issue, current_user.id, project.id, finder_options.to_h) # rubocop:disable CodeReuse/Worker index_path = project_issues_path(project) - message = _('Your CSV export has started. It will be emailed to %{email} when complete.') % { email: current_user.notification_email } + message = _('Your CSV export has started. It will be emailed to %{email} when complete.') % { email: current_user.notification_email_or_default } redirect_to(index_path, notice: message) end diff --git a/app/controllers/projects/merge_requests_controller.rb b/app/controllers/projects/merge_requests_controller.rb index 1129f3ee7e1..cb68aaf4583 100644 --- a/app/controllers/projects/merge_requests_controller.rb +++ b/app/controllers/projects/merge_requests_controller.rb @@ -378,7 +378,7 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo IssuableExportCsvWorker.perform_async(:merge_request, current_user.id, project.id, finder_options.to_h) # rubocop:disable CodeReuse/Worker index_path = project_merge_requests_path(project) - message = _('Your CSV export has started. It will be emailed to %{email} when complete.') % { email: current_user.notification_email } + message = _('Your CSV export has started. It will be emailed to %{email} when complete.') % { email: current_user.notification_email_or_default } redirect_to(index_path, notice: message) end diff --git a/app/controllers/projects/pipeline_schedules_controller.rb b/app/controllers/projects/pipeline_schedules_controller.rb index 006cb8a2201..4af7508b935 100644 --- a/app/controllers/projects/pipeline_schedules_controller.rb +++ b/app/controllers/projects/pipeline_schedules_controller.rb @@ -10,10 +10,6 @@ class Projects::PipelineSchedulesController < Projects::ApplicationController before_action :authorize_update_pipeline_schedule!, except: [:index, :new, :create, :play] before_action :authorize_admin_pipeline_schedule!, only: [:destroy] - before_action do - push_frontend_feature_flag(:ci_daily_limit_for_pipeline_schedules, @project, default_enabled: :yaml) - end - feature_category :continuous_integration # rubocop: disable CodeReuse/ActiveRecord diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 8897d73613c..40e86b4623c 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -221,7 +221,7 @@ module IssuesHelper can_bulk_update: can?(current_user, :admin_issue, project).to_s, can_edit: can?(current_user, :admin_project, project).to_s, can_import_issues: can?(current_user, :import_issues, @project).to_s, - email: current_user&.notification_email, + email: current_user&.notification_email_or_default, emails_help_page_path: help_page_path('development/emails', anchor: 'email-namespace'), export_csv_path: export_csv_project_issues_path(project), has_any_issues: project_issues(project).exists?.to_s, diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb index f30223f6f1e..d7f1cd505e9 100644 --- a/app/helpers/projects_helper.rb +++ b/app/helpers/projects_helper.rb @@ -435,7 +435,7 @@ module ProjectsHelper def git_user_email if current_user - current_user.commit_email + current_user.commit_email_or_default else "your@email.com" end diff --git a/app/mailers/emails/admin_notification.rb b/app/mailers/emails/admin_notification.rb index f4540ef81a5..e11f06d8fc9 100644 --- a/app/mailers/emails/admin_notification.rb +++ b/app/mailers/emails/admin_notification.rb @@ -4,7 +4,7 @@ module Emails module AdminNotification def send_admin_notification(user_id, subject, body) user = User.find(user_id) - email = user.notification_email + email = user.notification_email_or_default @unsubscribe_url = unsubscribe_url(email: Base64.urlsafe_encode64(email)) @body = body mail to: email, subject: subject @@ -12,7 +12,7 @@ module Emails def send_unsubscribed_notification(user_id) user = User.find(user_id) - email = user.notification_email + email = user.notification_email_or_default mail to: email, subject: "Unsubscribed from GitLab administrator notifications" end end diff --git a/app/mailers/emails/profile.rb b/app/mailers/emails/profile.rb index a8affb34f62..592c394bb48 100644 --- a/app/mailers/emails/profile.rb +++ b/app/mailers/emails/profile.rb @@ -6,7 +6,7 @@ module Emails @current_user = @user = User.find(user_id) @target_url = user_url(@user) @token = token - mail(to: @user.notification_email, subject: subject("Account was created for you")) + mail(to: @user.notification_email_or_default, subject: subject("Account was created for you")) end def instance_access_request_email(user, recipient) @@ -14,7 +14,7 @@ module Emails @recipient = recipient profile_email_with_layout( - to: recipient.notification_email, + to: recipient.notification_email_or_default, subject: subject(_("GitLab Account Request"))) end @@ -42,7 +42,7 @@ module Emails @current_user = @user = @key.user @target_url = user_url(@user) - mail(to: @user.notification_email, subject: subject("SSH key was added to your account")) + mail(to: @user.notification_email_or_default, subject: subject("SSH key was added to your account")) end # rubocop: enable CodeReuse/ActiveRecord @@ -54,7 +54,7 @@ module Emails @current_user = @user = @gpg_key.user @target_url = user_url(@user) - mail(to: @user.notification_email, subject: subject("GPG key was added to your account")) + mail(to: @user.notification_email_or_default, subject: subject("GPG key was added to your account")) end # rubocop: enable CodeReuse/ActiveRecord @@ -67,7 +67,7 @@ module Emails @days_to_expire = PersonalAccessToken::DAYS_TO_EXPIRE Gitlab::I18n.with_locale(@user.preferred_language) do - mail(to: @user.notification_email, subject: subject(_("Your personal access tokens will expire in %{days_to_expire} days or less") % { days_to_expire: @days_to_expire })) + mail(to: @user.notification_email_or_default, subject: subject(_("Your personal access tokens will expire in %{days_to_expire} days or less") % { days_to_expire: @days_to_expire })) end end @@ -78,7 +78,7 @@ module Emails @target_url = profile_personal_access_tokens_url Gitlab::I18n.with_locale(@user.preferred_language) do - mail(to: @user.notification_email, subject: subject(_("Your personal access token has expired"))) + mail(to: @user.notification_email_or_default, subject: subject(_("Your personal access token has expired"))) end end @@ -90,7 +90,7 @@ module Emails @target_url = profile_keys_url Gitlab::I18n.with_locale(@user.preferred_language) do - mail(to: @user.notification_email, subject: subject(_("Your SSH key has expired"))) + mail(to: @user.notification_email_or_default, subject: subject(_("Your SSH key has expired"))) end end @@ -102,7 +102,7 @@ module Emails @target_url = profile_keys_url Gitlab::I18n.with_locale(@user.preferred_language) do - mail(to: @user.notification_email, subject: subject(_("Your SSH key is expiring soon."))) + mail(to: @user.notification_email_or_default, subject: subject(_("Your SSH key is expiring soon."))) end end @@ -114,7 +114,7 @@ module Emails Gitlab::I18n.with_locale(@user.preferred_language) do profile_email_with_layout( - to: @user.notification_email, + to: @user.notification_email_or_default, subject: subject(_("%{host} sign-in from new location") % { host: Gitlab.config.gitlab.host })) end end @@ -125,7 +125,7 @@ module Emails @user = user Gitlab::I18n.with_locale(@user.preferred_language) do - mail(to: @user.notification_email, subject: subject(_("Two-factor authentication disabled"))) + mail(to: @user.notification_email_or_default, subject: subject(_("Two-factor authentication disabled"))) end end diff --git a/app/models/ci/pending_build.rb b/app/models/ci/pending_build.rb index 94173bb098e..db50022d2c8 100644 --- a/app/models/ci/pending_build.rb +++ b/app/models/ci/pending_build.rb @@ -26,11 +26,13 @@ module Ci private def args_from_build(build) + project = build.project + args = { build: build, - project: build.project, + project: project, protected: build.protected?, - namespace: build.project.namespace + namespace: project.namespace } if Feature.enabled?(:ci_pending_builds_maintain_tags_data, type: :development, default_enabled: :yaml) @@ -38,29 +40,26 @@ module Ci end if Feature.enabled?(:ci_pending_builds_maintain_shared_runners_data, type: :development, default_enabled: :yaml) - args.store(:instance_runners_enabled, shareable?(build)) + args.store(:instance_runners_enabled, shared_runners_enabled?(project)) + end + + if Feature.enabled?(:ci_pending_builds_maintain_namespace_traversal_ids, type: :development, default_enabled: :yaml) + args.store(:namespace_traversal_ids, project.namespace.traversal_ids) if group_runners_enabled?(project) end args end - def shareable?(build) - shared_runner_enabled?(build) && - builds_access_level?(build) && - project_not_removed?(build) + def shared_runners_enabled?(project) + builds_enabled?(project) && project.shared_runners_enabled? end - def shared_runner_enabled?(build) - build.project.shared_runners.exists? + def group_runners_enabled?(project) + builds_enabled?(project) && project.group_runners_enabled? end - def project_not_removed?(build) - !build.project.pending_delete? - end - - def builds_access_level?(build) - build.project.project_feature.builds_access_level.nil? || - build.project.project_feature.builds_access_level > 0 + def builds_enabled?(project) + project.builds_enabled? && !project.pending_delete? end end end diff --git a/app/models/ci/runner.rb b/app/models/ci/runner.rb index 9f47fd09a9f..4aa232ad26b 100644 --- a/app/models/ci/runner.rb +++ b/app/models/ci/runner.rb @@ -387,6 +387,12 @@ module Ci read_attribute(:contacted_at) end + def namespace_ids + strong_memoize(:namespace_ids) do + runner_namespaces.pluck(:namespace_id).compact + end + end + private def cleanup_runner_queue diff --git a/app/models/namespace.rb b/app/models/namespace.rb index 08b554fb749..ded317c205c 100644 --- a/app/models/namespace.rb +++ b/app/models/namespace.rb @@ -57,7 +57,7 @@ class Namespace < ApplicationRecord has_one :admin_note, inverse_of: :namespace accepts_nested_attributes_for :admin_note, update_only: true - validates :owner, presence: true, unless: ->(n) { n.type == "Group" } + validates :owner, presence: true, if: ->(n) { n.type.nil? } validates :name, presence: true, length: { maximum: 255 } diff --git a/app/models/project.rb b/app/models/project.rb index 1d0fa699a12..99c64ec1f68 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -161,6 +161,8 @@ class Project < ApplicationRecord belongs_to :creator, class_name: 'User' belongs_to :group, -> { where(type: 'Group') }, foreign_key: 'namespace_id' belongs_to :namespace + # Sync deletion via DB Trigger to ensure we do not have + # a project without a project_namespace (or vice-versa) belongs_to :project_namespace, class_name: 'Namespaces::ProjectNamespace', foreign_key: 'project_namespace_id', inverse_of: :project alias_method :parent, :namespace alias_attribute :parent_id, :namespace_id diff --git a/app/models/user.rb b/app/models/user.rb index c1ef8229898..18b33ab031f 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -229,10 +229,9 @@ class User < ApplicationRecord validates :first_name, length: { maximum: 127 } validates :last_name, length: { maximum: 127 } validates :email, confirmation: true - validates :notification_email, presence: true - validates :notification_email, devise_email: true, if: ->(user) { user.notification_email != user.email } + validates :notification_email, devise_email: true, allow_blank: true, if: ->(user) { user.notification_email != user.email } validates :public_email, uniqueness: true, devise_email: true, allow_blank: true - validates :commit_email, devise_email: true, allow_nil: true, if: ->(user) { user.commit_email != user.email } + validates :commit_email, devise_email: true, allow_blank: true, if: ->(user) { user.commit_email != user.email } validates :projects_limit, presence: true, numericality: { greater_than_or_equal_to: 0, less_than_or_equal_to: Gitlab::Database::MAX_INT_VALUE } @@ -384,7 +383,7 @@ class User < ApplicationRecord after_transition any => :deactivated do |user| next unless Gitlab::CurrentSettings.user_deactivation_emails_enabled - NotificationService.new.user_deactivated(user.name, user.notification_email) + NotificationService.new.user_deactivated(user.name, user.notification_email_or_default) end # rubocop: enable CodeReuse/ServiceClass @@ -932,33 +931,18 @@ class User < ApplicationRecord end end - # Define commit_email-related attribute methods explicitly instead of relying - # on ActiveRecord to provide them. Some of the specs use the current state of - # the model code but an older database schema, so we need to guard against the - # possibility of the commit_email column not existing. - - def commit_email - return self.email unless has_attribute?(:commit_email) - - if super == Gitlab::PrivateCommitEmail::TOKEN + def commit_email_or_default + if self.commit_email == Gitlab::PrivateCommitEmail::TOKEN return private_commit_email end # The commit email is the same as the primary email if undefined - super.presence || self.email + self.commit_email.presence || self.email end - def commit_email=(email) - super if has_attribute?(:commit_email) - end - - def commit_email_changed? - has_attribute?(:commit_email) && super - end - - def notification_email + def notification_email_or_default # The notification email is the same as the primary email if undefined - super.presence || self.email + self.notification_email.presence || self.email end def private_commit_email @@ -1640,7 +1624,7 @@ class User < ApplicationRecord def notification_email_for(notification_group) # Return group-specific email address if present, otherwise return global notification email address - notification_group&.notification_email_for(self) || notification_email + notification_group&.notification_email_for(self) || notification_email_or_default end def notification_settings_for(source, inherit: false) @@ -2019,7 +2003,7 @@ class User < ApplicationRecord private def notification_email_verified - return if read_attribute(:notification_email).blank? || temp_oauth_email? + return if notification_email.blank? || temp_oauth_email? errors.add(:notification_email, _("must be an email you have verified")) unless verified_emails.include?(notification_email) end @@ -2031,7 +2015,7 @@ class User < ApplicationRecord end def commit_email_verified - return if read_attribute(:commit_email).blank? + return if commit_email.blank? errors.add(:commit_email, _("must be an email you have verified")) unless verified_emails.include?(commit_email) end @@ -2112,7 +2096,7 @@ class User < ApplicationRecord def check_username_format return if username.blank? || Mime::EXTENSION_LOOKUP.keys.none? { |type| username.end_with?(".#{type}") } - errors.add(:username, _('ending with MIME type format is not allowed.')) + errors.add(:username, _('ending with a file extension is not allowed.')) end def groups_with_developer_maintainer_project_access diff --git a/app/services/ci/pipeline_schedules/calculate_next_run_service.rb b/app/services/ci/pipeline_schedules/calculate_next_run_service.rb index 9c8f6b47288..6c8ccb017e9 100644 --- a/app/services/ci/pipeline_schedules/calculate_next_run_service.rb +++ b/app/services/ci/pipeline_schedules/calculate_next_run_service.rb @@ -8,7 +8,6 @@ module Ci def execute(schedule, fallback_method:) @schedule = schedule - return fallback_method.call unless ::Feature.enabled?(:ci_daily_limit_for_pipeline_schedules, project, default_enabled: :yaml) return fallback_method.call unless plan_cron&.cron_valid? now = Time.zone.now diff --git a/app/services/ci/queue/build_queue_service.rb b/app/services/ci/queue/build_queue_service.rb index 99408d529b2..9c11c4e1be1 100644 --- a/app/services/ci/queue/build_queue_service.rb +++ b/app/services/ci/queue/build_queue_service.rb @@ -24,21 +24,25 @@ module Ci # rubocop:disable CodeReuse/ActiveRecord def builds_for_group_runner - # Workaround for weird Rails bug, that makes `runner.groups.to_sql` to return `runner_id = NULL` - groups = ::Group.joins(:runner_namespaces).merge(runner.runner_namespaces) + if strategy.use_denormalized_namespace_traversal_ids? + strategy.builds_for_group_runner + else + # Workaround for weird Rails bug, that makes `runner.groups.to_sql` to return `runner_id = NULL` + groups = ::Group.joins(:runner_namespaces).merge(runner.runner_namespaces) - hierarchy_groups = Gitlab::ObjectHierarchy - .new(groups) - .base_and_descendants + hierarchy_groups = Gitlab::ObjectHierarchy + .new(groups) + .base_and_descendants - projects = Project.where(namespace_id: hierarchy_groups) - .with_group_runners_enabled - .with_builds_enabled - .without_deleted + projects = Project.where(namespace_id: hierarchy_groups) + .with_group_runners_enabled + .with_builds_enabled + .without_deleted - relation = new_builds.where(project: projects) + relation = new_builds.where(project: projects) - order(relation) + order(relation) + end end def builds_for_project_runner diff --git a/app/services/ci/queue/builds_table_strategy.rb b/app/services/ci/queue/builds_table_strategy.rb index d0a343cb9d4..ac449a5289e 100644 --- a/app/services/ci/queue/builds_table_strategy.rb +++ b/app/services/ci/queue/builds_table_strategy.rb @@ -31,6 +31,10 @@ module Ci end end + def builds_for_group_runner + raise NotImplementedError + end + def builds_matching_tag_ids(relation, ids) # pick builds that does not have other tags than runner's one relation.matches_tag_ids(ids) @@ -61,6 +65,10 @@ module Ci false end + def use_denormalized_namespace_traversal_ids? + false + end + private def running_builds_for_shared_runners diff --git a/app/services/ci/queue/pending_builds_strategy.rb b/app/services/ci/queue/pending_builds_strategy.rb index e56699f172d..9bfcac23fc8 100644 --- a/app/services/ci/queue/pending_builds_strategy.rb +++ b/app/services/ci/queue/pending_builds_strategy.rb @@ -16,6 +16,12 @@ module Ci builds_ordered_for_shared_runners(shared_builds) end + def builds_for_group_runner + return new_builds.none if runner.namespace_ids.empty? + + new_builds.where('ci_pending_builds.namespace_traversal_ids && ARRAY[?]::int[]', runner.namespace_ids) + end + def builds_matching_tag_ids(relation, ids) if ::Feature.enabled?(:ci_queueing_denormalize_tags_information, runner, default_enabled: :yaml) relation.where('tag_ids <@ ARRAY[?]::int[]', runner.tags_ids) @@ -52,6 +58,10 @@ module Ci ::Feature.enabled?(:ci_queueing_denormalize_ci_minutes_information, runner, type: :development, default_enabled: :yaml) end + def use_denormalized_namespace_traversal_ids? + ::Feature.enabled?(:ci_queueing_denormalize_namespace_traversal_ids, runner, type: :development, default_enabled: :yaml) + end + private def builds_available_for_shared_runners diff --git a/app/views/admin/application_settings/_package_registry_limits.html.haml b/app/views/admin/application_settings/_package_registry_limits.html.haml index 47d51da5511..8769171c9e0 100644 --- a/app/views/admin/application_settings/_package_registry_limits.html.haml +++ b/app/views/admin/application_settings/_package_registry_limits.html.haml @@ -2,36 +2,31 @@ = form_errors(@application_setting) %fieldset - %h5 - = _('Unauthenticated API request rate limit') + = _("The package registry rate limits can help reduce request volume (like from crawlers or abusive bots).") + + %fieldset .form-group .form-check = f.check_box :throttle_unauthenticated_packages_api_enabled, class: 'form-check-input', data: { qa_selector: 'throttle_unauthenticated_packages_api_checkbox' } = f.label :throttle_unauthenticated_packages_api_enabled, class: 'form-check-label label-bold' do = _('Enable unauthenticated API request rate limit') - %span.form-text.text-muted - = _('Helps reduce request volume (e.g. from crawlers or abusive bots)') .form-group - = f.label :throttle_unauthenticated_packages_api_requests_per_period, 'Max unauthenticated API requests per period per IP', class: 'label-bold' + = f.label :throttle_unauthenticated_packages_api_requests_per_period, _('Maximum unauthenticated API requests per rate limit period per IP'), class: 'label-bold' = f.number_field :throttle_unauthenticated_packages_api_requests_per_period, class: 'form-control gl-form-input' .form-group - = f.label :throttle_unauthenticated_packages_api_period_in_seconds, 'Unauthenticated API rate limit period in seconds', class: 'label-bold' + = f.label :throttle_unauthenticated_packages_api_period_in_seconds, _('Unauthenticated API rate limit period in seconds'), class: 'label-bold' = f.number_field :throttle_unauthenticated_packages_api_period_in_seconds, class: 'form-control gl-form-input' %hr - %h5 - = _('Authenticated API request rate limit') .form-group .form-check = f.check_box :throttle_authenticated_packages_api_enabled, class: 'form-check-input', data: { qa_selector: 'throttle_authenticated_packages_api_checkbox' } = f.label :throttle_authenticated_packages_api_enabled, class: 'form-check-label label-bold' do = _('Enable authenticated API request rate limit') - %span.form-text.text-muted - = _('Helps reduce request volume (e.g. from crawlers or abusive bots)') .form-group - = f.label :throttle_authenticated_packages_api_requests_per_period, 'Max authenticated API requests per period per user', class: 'label-bold' + = f.label :throttle_authenticated_packages_api_requests_per_period, _('Maximum authenticated API requests per rate limit period per user'), class: 'label-bold' = f.number_field :throttle_authenticated_packages_api_requests_per_period, class: 'form-control gl-form-input' .form-group - = f.label :throttle_authenticated_packages_api_period_in_seconds, 'Authenticated API rate limit period in seconds', class: 'label-bold' + = f.label :throttle_authenticated_packages_api_period_in_seconds, _('Authenticated API rate limit period in seconds'), class: 'label-bold' = f.number_field :throttle_authenticated_packages_api_period_in_seconds, class: 'form-control gl-form-input' = f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' } diff --git a/app/views/admin/application_settings/network.html.haml b/app/views/admin/application_settings/network.html.haml index 00f9e3edfad..f17d872ee72 100644 --- a/app/views/admin/application_settings/network.html.haml +++ b/app/views/admin/application_settings/network.html.haml @@ -27,11 +27,12 @@ %section.settings.as-packages-limits.no-animate#js-packages-limits-settings{ class: ('expanded' if expanded_by_default?), data: { qa_selector: 'packages_limits_content' } } .settings-header %h4 - = _('Package Registry Rate Limits') + = _('Package registry rate limits') %button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' } = expanded_by_default? ? _('Collapse') : _('Expand') %p - = _('Configure specific limits for Packages API requests that supersede the general user and IP rate limits.') + = _('Set rate limits for package registry API requests that supersede the general user and IP rate limits.') + = link_to _('Learn more.'), help_page_path('user/admin_area/settings/package_registry_rate_limits.md'), target: '_blank', rel: 'noopener noreferrer' .settings-content = render 'package_registry_limits' - if Feature.enabled?(:files_api_throttling, default_enabled: :yaml) diff --git a/app/views/profiles/_email_settings.html.haml b/app/views/profiles/_email_settings.html.haml index 95306633556..bc678c2c429 100644 --- a/app/views/profiles/_email_settings.html.haml +++ b/app/views/profiles/_email_settings.html.haml @@ -11,6 +11,6 @@ - commit_email_link_url = help_page_path('user/profile/index', anchor: 'change-the-email-displayed-on-your-commits', target: '_blank') - commit_email_link_start = ''.html_safe % { url: commit_email_link_url } - commit_email_docs_link = s_('Profiles|This email will be used for web based operations, such as edits and merges. %{commit_email_link_start}Learn more%{commit_email_link_end}').html_safe % { commit_email_link_start: commit_email_link_start, commit_email_link_end: ''.html_safe } -= form.select :commit_email, options_for_select(commit_email_select_options(@user), selected: @user.read_attribute(:commit_email)), += form.select :commit_email, options_for_select(commit_email_select_options(@user), selected: @user.commit_email), { help: commit_email_docs_link }, control_class: 'select2 input-lg', disabled: email_change_disabled diff --git a/app/views/profiles/emails/index.html.haml b/app/views/profiles/emails/index.html.haml index c14efa99555..35bdfbb1c29 100644 --- a/app/views/profiles/emails/index.html.haml +++ b/app/views/profiles/emails/index.html.haml @@ -38,21 +38,21 @@ = render partial: 'shared/email_with_badge', locals: { email: @primary_email, verified: current_user.confirmed? } %span.float-right %span.badge.badge-muted.badge-pill.gl-badge.badge-success= s_('Profiles|Primary email') - - if @primary_email === current_user.commit_email + - if @primary_email === current_user.commit_email_or_default %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Commit email') - if @primary_email === current_user.public_email %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Public email') - - if @primary_email === current_user.notification_email + - if @primary_email === current_user.notification_email_or_default %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Default notification email') - @emails.each do |email| %li{ data: { qa_selector: 'email_row_content' } } = render partial: 'shared/email_with_badge', locals: { email: email.email, verified: email.confirmed? } %span.float-right - - if email.email === current_user.commit_email + - if email.email === current_user.commit_email_or_default %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Commit email') - if email.email === current_user.public_email %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Public email') - - if email.email === current_user.notification_email + - if email.email === current_user.notification_email_or_default %span.badge.badge-muted.badge-pill.gl-badge.badge-info= s_('Profiles|Notification email') - unless email.confirmed? - confirm_title = "#{email.confirmation_sent_at ? _('Resend confirmation email') : _('Send confirmation email')}" diff --git a/app/views/profiles/notifications/_email_settings.html.haml b/app/views/profiles/notifications/_email_settings.html.haml index e1e4b2bf2d6..f2121199412 100644 --- a/app/views/profiles/notifications/_email_settings.html.haml +++ b/app/views/profiles/notifications/_email_settings.html.haml @@ -1,7 +1,7 @@ - form = local_assigns.fetch(:form) .form-group = form.label :notification_email, class: "label-bold" - = form.select :notification_email, @user.public_verified_emails, { include_blank: _('Use primary email (%{email})') % { email: @user.email }, selected: @user.read_attribute(:notification_email) }, class: "select2", disabled: local_assigns.fetch(:email_change_disabled, nil) + = form.select :notification_email, @user.public_verified_emails, { include_blank: _('Use primary email (%{email})') % { email: @user.email }, selected: @user.notification_email }, class: "select2", disabled: local_assigns.fetch(:email_change_disabled, nil) .help-block = local_assigns.fetch(:help_text, nil) .form-group diff --git a/app/views/projects/issues/_nav_btns.html.haml b/app/views/projects/issues/_nav_btns.html.haml index 1289f7aa0c4..0d69f6f69aa 100644 --- a/app/views/projects/issues/_nav_btns.html.haml +++ b/app/views/projects/issues/_nav_btns.html.haml @@ -3,7 +3,7 @@ - show_export_button = local_assigns.fetch(:show_export_button, true) - issuable_type = 'issues' - can_edit = can?(current_user, :admin_project, @project) -- notification_email = @current_user.present? ? @current_user.notification_email : nil +- notification_email = @current_user.present? ? @current_user.notification_email_or_default : nil .nav-controls.issues-nav-controls - if show_feed_buttons diff --git a/app/views/projects/merge_requests/_nav_btns.html.haml b/app/views/projects/merge_requests/_nav_btns.html.haml index 84edf62b300..b34cf23634c 100644 --- a/app/views/projects/merge_requests/_nav_btns.html.haml +++ b/app/views/projects/merge_requests/_nav_btns.html.haml @@ -1,5 +1,5 @@ - issuable_type = 'merge-requests' -- notification_email = @current_user.present? ? @current_user.notification_email : nil +- notification_email = @current_user.present? ? @current_user.notification_email_or_default : nil = render 'shared/issuable/feed_buttons', show_calendar_button: false .js-csv-import-export-buttons{ data: { show_export_button: "true", issuable_type: issuable_type, issuable_count: issuables_count_for_state(issuable_type.to_sym, params[:state]), email: notification_email, export_csv_path: export_csv_project_merge_requests_path(@project, request.query_parameters), container_class: 'gl-mr-3' } } diff --git a/config/feature_flags/development/ci_daily_limit_for_pipeline_schedules.yml b/config/feature_flags/development/ci_daily_limit_for_pipeline_schedules.yml deleted file mode 100644 index 6b398663a6a..00000000000 --- a/config/feature_flags/development/ci_daily_limit_for_pipeline_schedules.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: ci_daily_limit_for_pipeline_schedules -introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/62826 -rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/332333 -milestone: '14.0' -type: development -group: group::pipeline authoring -default_enabled: true diff --git a/config/feature_flags/development/ci_pending_builds_maintain_namespace_traversal_ids.yml b/config/feature_flags/development/ci_pending_builds_maintain_namespace_traversal_ids.yml new file mode 100644 index 00000000000..0eafb604fed --- /dev/null +++ b/config/feature_flags/development/ci_pending_builds_maintain_namespace_traversal_ids.yml @@ -0,0 +1,8 @@ +--- +name: ci_pending_builds_maintain_namespace_traversal_ids +introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/70162 +rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/340930 +milestone: '14.3' +type: development +group: group::pipeline execution +default_enabled: false diff --git a/config/feature_flags/development/ci_queueing_denormalize_namespace_traversal_ids.yml b/config/feature_flags/development/ci_queueing_denormalize_namespace_traversal_ids.yml new file mode 100644 index 00000000000..e8326ac5cab --- /dev/null +++ b/config/feature_flags/development/ci_queueing_denormalize_namespace_traversal_ids.yml @@ -0,0 +1,8 @@ +--- +name: ci_queueing_denormalize_namespace_traversal_ids +introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/70162 +rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/340930 +milestone: '14.3' +type: development +group: group::pipeline execution +default_enabled: false diff --git a/config/metrics/counts_28d/20210201124930_deployments.yml b/config/metrics/counts_28d/20210201124930_deployments.yml index b19276cdd4e..fc8c37f5a21 100644 --- a/config/metrics/counts_28d/20210201124930_deployments.yml +++ b/config/metrics/counts_28d/20210201124930_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::ops release product_category: value_type: number -status: data_available +status: active milestone: "13.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/35493 time_frame: 28d diff --git a/config/metrics/counts_28d/20210216174910_analytics_unique_visits_for_any_target_monthly.yml b/config/metrics/counts_28d/20210216174910_analytics_unique_visits_for_any_target_monthly.yml index 91cef299b47..f1bff756c5f 100644 --- a/config/metrics/counts_28d/20210216174910_analytics_unique_visits_for_any_target_monthly.yml +++ b/config/metrics/counts_28d/20210216174910_analytics_unique_visits_for_any_target_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216174933_p_analytics_pipelines_monthly.yml b/config/metrics/counts_28d/20210216174933_p_analytics_pipelines_monthly.yml index 986c862c3fc..e0f19ac36f0 100644 --- a/config/metrics/counts_28d/20210216174933_p_analytics_pipelines_monthly.yml +++ b/config/metrics/counts_28d/20210216174933_p_analytics_pipelines_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216174941_p_analytics_valuestream_monthly.yml b/config/metrics/counts_28d/20210216174941_p_analytics_valuestream_monthly.yml index 92cd8cfaf85..95861042b1c 100644 --- a/config/metrics/counts_28d/20210216174941_p_analytics_valuestream_monthly.yml +++ b/config/metrics/counts_28d/20210216174941_p_analytics_valuestream_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216174956_i_analytics_cohorts_monthly.yml b/config/metrics/counts_28d/20210216174956_i_analytics_cohorts_monthly.yml index a6595a5dd30..75871428fab 100644 --- a/config/metrics/counts_28d/20210216174956_i_analytics_cohorts_monthly.yml +++ b/config/metrics/counts_28d/20210216174956_i_analytics_cohorts_monthly.yml @@ -7,7 +7,7 @@ product_stage: fulfillment product_group: group::utilization product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175000_i_analytics_dev_ops_score_monthly.yml b/config/metrics/counts_28d/20210216175000_i_analytics_dev_ops_score_monthly.yml index c355496745a..350363d79ce 100644 --- a/config/metrics/counts_28d/20210216175000_i_analytics_dev_ops_score_monthly.yml +++ b/config/metrics/counts_28d/20210216175000_i_analytics_dev_ops_score_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175012_i_analytics_instance_statistics_monthly.yml b/config/metrics/counts_28d/20210216175012_i_analytics_instance_statistics_monthly.yml index 2dc54b31851..b2e6ce34d2e 100644 --- a/config/metrics/counts_28d/20210216175012_i_analytics_instance_statistics_monthly.yml +++ b/config/metrics/counts_28d/20210216175012_i_analytics_instance_statistics_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175016_analytics_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216175016_analytics_total_unique_counts_monthly.yml index 29a9ef70003..1e3fd72fb55 100644 --- a/config/metrics/counts_28d/20210216175016_analytics_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216175016_analytics_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175055_merge_requests.yml b/config/metrics/counts_28d/20210216175055_merge_requests.yml index 999370ab812..dca4f81eeea 100644 --- a/config/metrics/counts_28d/20210216175055_merge_requests.yml +++ b/config/metrics/counts_28d/20210216175055_merge_requests.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175057_projects_with_disable_overriding_approvers_per_merge_request.yml b/config/metrics/counts_28d/20210216175057_projects_with_disable_overriding_approvers_per_merge_request.yml index 4f0568162b6..e3ba4019000 100644 --- a/config/metrics/counts_28d/20210216175057_projects_with_disable_overriding_approvers_per_merge_request.yml +++ b/config/metrics/counts_28d/20210216175057_projects_with_disable_overriding_approvers_per_merge_request.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175059_projects_without_disable_overriding_approvers_per_merge_request.yml b/config/metrics/counts_28d/20210216175059_projects_without_disable_overriding_approvers_per_merge_request.yml index 462121c8f68..eaf3bc545c0 100644 --- a/config/metrics/counts_28d/20210216175059_projects_without_disable_overriding_approvers_per_merge_request.yml +++ b/config/metrics/counts_28d/20210216175059_projects_without_disable_overriding_approvers_per_merge_request.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175101_merge_requests_users.yml b/config/metrics/counts_28d/20210216175101_merge_requests_users.yml index 4eb2daf0291..04f0f124e8f 100644 --- a/config/metrics/counts_28d/20210216175101_merge_requests_users.yml +++ b/config/metrics/counts_28d/20210216175101_merge_requests_users.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216175109_suggestions.yml b/config/metrics/counts_28d/20210216175109_suggestions.yml index 301f0774ea1..fcccc350252 100644 --- a/config/metrics/counts_28d/20210216175109_suggestions.yml +++ b/config/metrics/counts_28d/20210216175109_suggestions.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175113_merge_request_action_monthly.yml b/config/metrics/counts_28d/20210216175113_merge_request_action_monthly.yml index adb4c24b1e5..abd5157271a 100644 --- a/config/metrics/counts_28d/20210216175113_merge_request_action_monthly.yml +++ b/config/metrics/counts_28d/20210216175113_merge_request_action_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175117_i_source_code_code_intelligence_monthly.yml b/config/metrics/counts_28d/20210216175117_i_source_code_code_intelligence_monthly.yml index 0eb0c0cd202..aa0c6e6136c 100644 --- a/config/metrics/counts_28d/20210216175117_i_source_code_code_intelligence_monthly.yml +++ b/config/metrics/counts_28d/20210216175117_i_source_code_code_intelligence_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175120_i_code_review_mr_diffs_monthly.yml b/config/metrics/counts_28d/20210216175120_i_code_review_mr_diffs_monthly.yml index 0d074a735e4..9ca7370c953 100644 --- a/config/metrics/counts_28d/20210216175120_i_code_review_mr_diffs_monthly.yml +++ b/config/metrics/counts_28d/20210216175120_i_code_review_mr_diffs_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175124_i_code_review_user_single_file_diffs_monthly.yml b/config/metrics/counts_28d/20210216175124_i_code_review_user_single_file_diffs_monthly.yml index 7d384cd15f3..62cbdb0feb5 100644 --- a/config/metrics/counts_28d/20210216175124_i_code_review_user_single_file_diffs_monthly.yml +++ b/config/metrics/counts_28d/20210216175124_i_code_review_user_single_file_diffs_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175128_i_code_review_mr_single_file_diffs_monthly.yml b/config/metrics/counts_28d/20210216175128_i_code_review_mr_single_file_diffs_monthly.yml index 7ea07ce02ec..67955a7d32b 100644 --- a/config/metrics/counts_28d/20210216175128_i_code_review_mr_single_file_diffs_monthly.yml +++ b/config/metrics/counts_28d/20210216175128_i_code_review_mr_single_file_diffs_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175132_i_code_review_user_create_mr_monthly.yml b/config/metrics/counts_28d/20210216175132_i_code_review_user_create_mr_monthly.yml index dbfdd9cd8df..c88cff6b2f9 100644 --- a/config/metrics/counts_28d/20210216175132_i_code_review_user_create_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216175132_i_code_review_user_create_mr_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175136_i_code_review_user_close_mr_monthly.yml b/config/metrics/counts_28d/20210216175136_i_code_review_user_close_mr_monthly.yml index 726ceaa2f1b..df3a461d7c8 100644 --- a/config/metrics/counts_28d/20210216175136_i_code_review_user_close_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216175136_i_code_review_user_close_mr_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175140_i_code_review_user_reopen_mr_monthly.yml b/config/metrics/counts_28d/20210216175140_i_code_review_user_reopen_mr_monthly.yml index 56d20c546e9..a1b8c4037be 100644 --- a/config/metrics/counts_28d/20210216175140_i_code_review_user_reopen_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216175140_i_code_review_user_reopen_mr_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175144_i_code_review_user_merge_mr_monthly.yml b/config/metrics/counts_28d/20210216175144_i_code_review_user_merge_mr_monthly.yml index 7a38d14c85a..98e413605f0 100644 --- a/config/metrics/counts_28d/20210216175144_i_code_review_user_merge_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216175144_i_code_review_user_merge_mr_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175148_i_code_review_user_create_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216175148_i_code_review_user_create_mr_comment_monthly.yml index a2803df3bdc..c968aee2190 100644 --- a/config/metrics/counts_28d/20210216175148_i_code_review_user_create_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216175148_i_code_review_user_create_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175152_i_code_review_user_edit_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216175152_i_code_review_user_edit_mr_comment_monthly.yml index 450e631927e..f82608a637c 100644 --- a/config/metrics/counts_28d/20210216175152_i_code_review_user_edit_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216175152_i_code_review_user_edit_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175156_i_code_review_user_remove_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216175156_i_code_review_user_remove_mr_comment_monthly.yml index 48d9a9374f6..056b7d70e47 100644 --- a/config/metrics/counts_28d/20210216175156_i_code_review_user_remove_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216175156_i_code_review_user_remove_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175159_i_code_review_user_add_suggestion_monthly.yml b/config/metrics/counts_28d/20210216175159_i_code_review_user_add_suggestion_monthly.yml index 0399cc259a9..03a0a97423b 100644 --- a/config/metrics/counts_28d/20210216175159_i_code_review_user_add_suggestion_monthly.yml +++ b/config/metrics/counts_28d/20210216175159_i_code_review_user_add_suggestion_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175203_i_code_review_user_apply_suggestion_monthly.yml b/config/metrics/counts_28d/20210216175203_i_code_review_user_apply_suggestion_monthly.yml index 53ecc3e2414..483d06265fc 100644 --- a/config/metrics/counts_28d/20210216175203_i_code_review_user_apply_suggestion_monthly.yml +++ b/config/metrics/counts_28d/20210216175203_i_code_review_user_apply_suggestion_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216175405_clusters_applications_cert_managers.yml b/config/metrics/counts_28d/20210216175405_clusters_applications_cert_managers.yml index 4cf278dd51f..a34c679e919 100644 --- a/config/metrics/counts_28d/20210216175405_clusters_applications_cert_managers.yml +++ b/config/metrics/counts_28d/20210216175405_clusters_applications_cert_managers.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175407_clusters_applications_helm.yml b/config/metrics/counts_28d/20210216175407_clusters_applications_helm.yml index bdebfe1aee6..2cc0e937d92 100644 --- a/config/metrics/counts_28d/20210216175407_clusters_applications_helm.yml +++ b/config/metrics/counts_28d/20210216175407_clusters_applications_helm.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175409_clusters_applications_ingress.yml b/config/metrics/counts_28d/20210216175409_clusters_applications_ingress.yml index 0c1e7faf574..2cdd680eaee 100644 --- a/config/metrics/counts_28d/20210216175409_clusters_applications_ingress.yml +++ b/config/metrics/counts_28d/20210216175409_clusters_applications_ingress.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175411_clusters_applications_knative.yml b/config/metrics/counts_28d/20210216175411_clusters_applications_knative.yml index 865e16829f6..23114b91d1f 100644 --- a/config/metrics/counts_28d/20210216175411_clusters_applications_knative.yml +++ b/config/metrics/counts_28d/20210216175411_clusters_applications_knative.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175413_clusters_management_project.yml b/config/metrics/counts_28d/20210216175413_clusters_management_project.yml index bf25c13788b..0d908d3c45d 100644 --- a/config/metrics/counts_28d/20210216175413_clusters_management_project.yml +++ b/config/metrics/counts_28d/20210216175413_clusters_management_project.yml @@ -9,7 +9,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175415_clusters_disabled.yml b/config/metrics/counts_28d/20210216175415_clusters_disabled.yml index c0a11247d04..f6296b5429b 100644 --- a/config/metrics/counts_28d/20210216175415_clusters_disabled.yml +++ b/config/metrics/counts_28d/20210216175415_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175417_clusters_enabled.yml b/config/metrics/counts_28d/20210216175417_clusters_enabled.yml index 3d3c1345446..9df51868bef 100644 --- a/config/metrics/counts_28d/20210216175417_clusters_enabled.yml +++ b/config/metrics/counts_28d/20210216175417_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175419_clusters_platforms_gke.yml b/config/metrics/counts_28d/20210216175419_clusters_platforms_gke.yml index 1b88a5dc8b6..9a9db498d6a 100644 --- a/config/metrics/counts_28d/20210216175419_clusters_platforms_gke.yml +++ b/config/metrics/counts_28d/20210216175419_clusters_platforms_gke.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175420_clusters_platforms_eks.yml b/config/metrics/counts_28d/20210216175420_clusters_platforms_eks.yml index f6316b5a667..ff7ab633e81 100644 --- a/config/metrics/counts_28d/20210216175420_clusters_platforms_eks.yml +++ b/config/metrics/counts_28d/20210216175420_clusters_platforms_eks.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175422_clusters_platforms_user.yml b/config/metrics/counts_28d/20210216175422_clusters_platforms_user.yml index 929d5f45c2c..c548b9e9eff 100644 --- a/config/metrics/counts_28d/20210216175422_clusters_platforms_user.yml +++ b/config/metrics/counts_28d/20210216175422_clusters_platforms_user.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175424_instance_clusters_disabled.yml b/config/metrics/counts_28d/20210216175424_instance_clusters_disabled.yml index 962351ec76c..7bdb34f236c 100644 --- a/config/metrics/counts_28d/20210216175424_instance_clusters_disabled.yml +++ b/config/metrics/counts_28d/20210216175424_instance_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175426_instance_clusters_enabled.yml b/config/metrics/counts_28d/20210216175426_instance_clusters_enabled.yml index a8c3284a847..81022cc7411 100644 --- a/config/metrics/counts_28d/20210216175426_instance_clusters_enabled.yml +++ b/config/metrics/counts_28d/20210216175426_instance_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175428_group_clusters_disabled.yml b/config/metrics/counts_28d/20210216175428_group_clusters_disabled.yml index cd9a838efa1..d38d34867ff 100644 --- a/config/metrics/counts_28d/20210216175428_group_clusters_disabled.yml +++ b/config/metrics/counts_28d/20210216175428_group_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175430_group_clusters_enabled.yml b/config/metrics/counts_28d/20210216175430_group_clusters_enabled.yml index f2a3efa716d..9d53421eb69 100644 --- a/config/metrics/counts_28d/20210216175430_group_clusters_enabled.yml +++ b/config/metrics/counts_28d/20210216175430_group_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175432_project_clusters_disabled.yml b/config/metrics/counts_28d/20210216175432_project_clusters_disabled.yml index 6b4d840b71a..10806cc50fd 100644 --- a/config/metrics/counts_28d/20210216175432_project_clusters_disabled.yml +++ b/config/metrics/counts_28d/20210216175432_project_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175434_project_clusters_enabled.yml b/config/metrics/counts_28d/20210216175434_project_clusters_enabled.yml index 945b1e11bcf..28b81acb709 100644 --- a/config/metrics/counts_28d/20210216175434_project_clusters_enabled.yml +++ b/config/metrics/counts_28d/20210216175434_project_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175542_ci_builds.yml b/config/metrics/counts_28d/20210216175542_ci_builds.yml index 95cb0135e62..371da6c937b 100644 --- a/config/metrics/counts_28d/20210216175542_ci_builds.yml +++ b/config/metrics/counts_28d/20210216175542_ci_builds.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175544_ci_external_pipelines.yml b/config/metrics/counts_28d/20210216175544_ci_external_pipelines.yml index 7cb2afc5f49..b13560ede4c 100644 --- a/config/metrics/counts_28d/20210216175544_ci_external_pipelines.yml +++ b/config/metrics/counts_28d/20210216175544_ci_external_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175546_ci_internal_pipelines.yml b/config/metrics/counts_28d/20210216175546_ci_internal_pipelines.yml index 1d0d719d736..317548c8c24 100644 --- a/config/metrics/counts_28d/20210216175546_ci_internal_pipelines.yml +++ b/config/metrics/counts_28d/20210216175546_ci_internal_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175548_ci_pipeline_config_auto_devops.yml b/config/metrics/counts_28d/20210216175548_ci_pipeline_config_auto_devops.yml index 76788ba1b8e..5c4f21f3b3c 100644 --- a/config/metrics/counts_28d/20210216175548_ci_pipeline_config_auto_devops.yml +++ b/config/metrics/counts_28d/20210216175548_ci_pipeline_config_auto_devops.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175550_ci_pipeline_config_repository.yml b/config/metrics/counts_28d/20210216175550_ci_pipeline_config_repository.yml index 19f793da7f8..cd9ed768ce1 100644 --- a/config/metrics/counts_28d/20210216175550_ci_pipeline_config_repository.yml +++ b/config/metrics/counts_28d/20210216175550_ci_pipeline_config_repository.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175552_ci_pipeline_schedules.yml b/config/metrics/counts_28d/20210216175552_ci_pipeline_schedules.yml index e24c10ab6aa..75129e5d824 100644 --- a/config/metrics/counts_28d/20210216175552_ci_pipeline_schedules.yml +++ b/config/metrics/counts_28d/20210216175552_ci_pipeline_schedules.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175554_ci_pipelines.yml b/config/metrics/counts_28d/20210216175554_ci_pipelines.yml index f6d9c2c77b2..fb3992a766d 100644 --- a/config/metrics/counts_28d/20210216175554_ci_pipelines.yml +++ b/config/metrics/counts_28d/20210216175554_ci_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216175556_ci_triggers.yml b/config/metrics/counts_28d/20210216175556_ci_triggers.yml index 1b79e112a37..80842966536 100644 --- a/config/metrics/counts_28d/20210216175556_ci_triggers.yml +++ b/config/metrics/counts_28d/20210216175556_ci_triggers.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180308_personal_snippets.yml b/config/metrics/counts_28d/20210216180308_personal_snippets.yml index 993aa62a384..2416212f1eb 100644 --- a/config/metrics/counts_28d/20210216180308_personal_snippets.yml +++ b/config/metrics/counts_28d/20210216180308_personal_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180310_project_snippets.yml b/config/metrics/counts_28d/20210216180310_project_snippets.yml index bcc0e607f5a..4a0a02f701d 100644 --- a/config/metrics/counts_28d/20210216180310_project_snippets.yml +++ b/config/metrics/counts_28d/20210216180310_project_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180312_snippets.yml b/config/metrics/counts_28d/20210216180312_snippets.yml index ba80b6c583f..214ceaa7740 100644 --- a/config/metrics/counts_28d/20210216180312_snippets.yml +++ b/config/metrics/counts_28d/20210216180312_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180317_snippets.yml b/config/metrics/counts_28d/20210216180317_snippets.yml index 783613bd509..a80991452c3 100644 --- a/config/metrics/counts_28d/20210216180317_snippets.yml +++ b/config/metrics/counts_28d/20210216180317_snippets.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180319_action_monthly_active_users_web_ide_edit.yml b/config/metrics/counts_28d/20210216180319_action_monthly_active_users_web_ide_edit.yml index 3b482949b35..b9982520cbc 100644 --- a/config/metrics/counts_28d/20210216180319_action_monthly_active_users_web_ide_edit.yml +++ b/config/metrics/counts_28d/20210216180319_action_monthly_active_users_web_ide_edit.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180321_action_monthly_active_users_sfe_edit.yml b/config/metrics/counts_28d/20210216180321_action_monthly_active_users_sfe_edit.yml index 6ec45a8c101..a3eb1192e49 100644 --- a/config/metrics/counts_28d/20210216180321_action_monthly_active_users_sfe_edit.yml +++ b/config/metrics/counts_28d/20210216180321_action_monthly_active_users_sfe_edit.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180323_action_monthly_active_users_snippet_editor_edit.yml b/config/metrics/counts_28d/20210216180323_action_monthly_active_users_snippet_editor_edit.yml index d28300e73a1..3dc7f774fe2 100644 --- a/config/metrics/counts_28d/20210216180323_action_monthly_active_users_snippet_editor_edit.yml +++ b/config/metrics/counts_28d/20210216180323_action_monthly_active_users_snippet_editor_edit.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180325_action_monthly_active_users_sse_edit.yml b/config/metrics/counts_28d/20210216180325_action_monthly_active_users_sse_edit.yml index 5cdc25d6466..eb22e82c62e 100644 --- a/config/metrics/counts_28d/20210216180325_action_monthly_active_users_sse_edit.yml +++ b/config/metrics/counts_28d/20210216180325_action_monthly_active_users_sse_edit.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180327_action_monthly_active_users_ide_edit.yml b/config/metrics/counts_28d/20210216180327_action_monthly_active_users_ide_edit.yml index 12055007589..b53069b4962 100644 --- a/config/metrics/counts_28d/20210216180327_action_monthly_active_users_ide_edit.yml +++ b/config/metrics/counts_28d/20210216180327_action_monthly_active_users_ide_edit.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180330_g_edit_by_web_ide_monthly.yml b/config/metrics/counts_28d/20210216180330_g_edit_by_web_ide_monthly.yml index 94a7b14186b..2e00a23ca7c 100644 --- a/config/metrics/counts_28d/20210216180330_g_edit_by_web_ide_monthly.yml +++ b/config/metrics/counts_28d/20210216180330_g_edit_by_web_ide_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180334_g_edit_by_sfe_monthly.yml b/config/metrics/counts_28d/20210216180334_g_edit_by_sfe_monthly.yml index 6b1c4f7a657..88d7c43a90e 100644 --- a/config/metrics/counts_28d/20210216180334_g_edit_by_sfe_monthly.yml +++ b/config/metrics/counts_28d/20210216180334_g_edit_by_sfe_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180338_g_edit_by_snippet_ide_monthly.yml b/config/metrics/counts_28d/20210216180338_g_edit_by_snippet_ide_monthly.yml index a09a4d80807..78a01d5ef64 100644 --- a/config/metrics/counts_28d/20210216180338_g_edit_by_snippet_ide_monthly.yml +++ b/config/metrics/counts_28d/20210216180338_g_edit_by_snippet_ide_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180341_ide_edit_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216180341_ide_edit_total_unique_counts_monthly.yml index 30f88f07af8..ea357356742 100644 --- a/config/metrics/counts_28d/20210216180341_ide_edit_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216180341_ide_edit_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180424_i_search_total_monthly.yml b/config/metrics/counts_28d/20210216180424_i_search_total_monthly.yml index d8e256c5a27..e85084f25f0 100644 --- a/config/metrics/counts_28d/20210216180424_i_search_total_monthly.yml +++ b/config/metrics/counts_28d/20210216180424_i_search_total_monthly.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180431_search_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216180431_search_total_unique_counts_monthly.yml index c2a2fa74028..aad1d911a6f 100644 --- a/config/metrics/counts_28d/20210216180431_search_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216180431_search_total_unique_counts_monthly.yml @@ -10,7 +10,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180509_incident_management_alerts_total_unique_counts.yml b/config/metrics/counts_28d/20210216180509_incident_management_alerts_total_unique_counts.yml index f1aff323838..9bed122a0a5 100644 --- a/config/metrics/counts_28d/20210216180509_incident_management_alerts_total_unique_counts.yml +++ b/config/metrics/counts_28d/20210216180509_incident_management_alerts_total_unique_counts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180511_incident_management_incidents_total_unique_counts.yml b/config/metrics/counts_28d/20210216180511_incident_management_incidents_total_unique_counts.yml index 32f3effb44d..3e0aed47e2d 100644 --- a/config/metrics/counts_28d/20210216180511_incident_management_incidents_total_unique_counts.yml +++ b/config/metrics/counts_28d/20210216180511_incident_management_incidents_total_unique_counts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180524_projects_with_incidents.yml b/config/metrics/counts_28d/20210216180524_projects_with_incidents.yml index 643e4e40a6a..c2b1d11d2e9 100644 --- a/config/metrics/counts_28d/20210216180524_projects_with_incidents.yml +++ b/config/metrics/counts_28d/20210216180524_projects_with_incidents.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180526_projects_with_alert_incidents.yml b/config/metrics/counts_28d/20210216180526_projects_with_alert_incidents.yml index 46a076ed2e0..2d17b84f7de 100644 --- a/config/metrics/counts_28d/20210216180526_projects_with_alert_incidents.yml +++ b/config/metrics/counts_28d/20210216180526_projects_with_alert_incidents.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180530_incident_management_alert_status_changed_monthly.yml b/config/metrics/counts_28d/20210216180530_incident_management_alert_status_changed_monthly.yml index 412b1b71873..23c7b6172fd 100644 --- a/config/metrics/counts_28d/20210216180530_incident_management_alert_status_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216180530_incident_management_alert_status_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180533_incident_management_alert_assigned_monthly.yml b/config/metrics/counts_28d/20210216180533_incident_management_alert_assigned_monthly.yml index f10043b70c5..3d77ae78849 100644 --- a/config/metrics/counts_28d/20210216180533_incident_management_alert_assigned_monthly.yml +++ b/config/metrics/counts_28d/20210216180533_incident_management_alert_assigned_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180537_incident_management_alert_todo_monthly.yml b/config/metrics/counts_28d/20210216180537_incident_management_alert_todo_monthly.yml index 6276f172cb8..68a99ecae82 100644 --- a/config/metrics/counts_28d/20210216180537_incident_management_alert_todo_monthly.yml +++ b/config/metrics/counts_28d/20210216180537_incident_management_alert_todo_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180541_incident_management_incident_created_monthly.yml b/config/metrics/counts_28d/20210216180541_incident_management_incident_created_monthly.yml index 124f29ae5a1..6df78064a8a 100644 --- a/config/metrics/counts_28d/20210216180541_incident_management_incident_created_monthly.yml +++ b/config/metrics/counts_28d/20210216180541_incident_management_incident_created_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180545_incident_management_incident_reopened_monthly.yml b/config/metrics/counts_28d/20210216180545_incident_management_incident_reopened_monthly.yml index 38f5dc4735c..1ffce106c7d 100644 --- a/config/metrics/counts_28d/20210216180545_incident_management_incident_reopened_monthly.yml +++ b/config/metrics/counts_28d/20210216180545_incident_management_incident_reopened_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180548_incident_management_incident_closed_monthly.yml b/config/metrics/counts_28d/20210216180548_incident_management_incident_closed_monthly.yml index c1383c422fb..0f02aef017c 100644 --- a/config/metrics/counts_28d/20210216180548_incident_management_incident_closed_monthly.yml +++ b/config/metrics/counts_28d/20210216180548_incident_management_incident_closed_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180552_incident_management_incident_assigned_monthly.yml b/config/metrics/counts_28d/20210216180552_incident_management_incident_assigned_monthly.yml index cd051e1ad5c..6130cb51ef5 100644 --- a/config/metrics/counts_28d/20210216180552_incident_management_incident_assigned_monthly.yml +++ b/config/metrics/counts_28d/20210216180552_incident_management_incident_assigned_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180556_incident_management_incident_todo_monthly.yml b/config/metrics/counts_28d/20210216180556_incident_management_incident_todo_monthly.yml index c8cc00bb9d6..a4affa056c9 100644 --- a/config/metrics/counts_28d/20210216180556_incident_management_incident_todo_monthly.yml +++ b/config/metrics/counts_28d/20210216180556_incident_management_incident_todo_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180559_incident_management_incident_comment_monthly.yml b/config/metrics/counts_28d/20210216180559_incident_management_incident_comment_monthly.yml index 773e99ed003..4b7880627a2 100644 --- a/config/metrics/counts_28d/20210216180559_incident_management_incident_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216180559_incident_management_incident_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180603_incident_management_incident_zoom_meeting_monthly.yml b/config/metrics/counts_28d/20210216180603_incident_management_incident_zoom_meeting_monthly.yml index 96f4de1240c..11a53605434 100644 --- a/config/metrics/counts_28d/20210216180603_incident_management_incident_zoom_meeting_monthly.yml +++ b/config/metrics/counts_28d/20210216180603_incident_management_incident_zoom_meeting_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180611_incident_management_incident_relate_monthly.yml b/config/metrics/counts_28d/20210216180611_incident_management_incident_relate_monthly.yml index 28d30ee0378..ee1e29f0caf 100644 --- a/config/metrics/counts_28d/20210216180611_incident_management_incident_relate_monthly.yml +++ b/config/metrics/counts_28d/20210216180611_incident_management_incident_relate_monthly.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180614_incident_management_incident_unrelate_monthly.yml b/config/metrics/counts_28d/20210216180614_incident_management_incident_unrelate_monthly.yml index 01e21b8a3c5..b24e653bda5 100644 --- a/config/metrics/counts_28d/20210216180614_incident_management_incident_unrelate_monthly.yml +++ b/config/metrics/counts_28d/20210216180614_incident_management_incident_unrelate_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180618_incident_management_incident_change_confidential_monthly.yml b/config/metrics/counts_28d/20210216180618_incident_management_incident_change_confidential_monthly.yml index 60d606fb611..78a52e1f4bf 100644 --- a/config/metrics/counts_28d/20210216180618_incident_management_incident_change_confidential_monthly.yml +++ b/config/metrics/counts_28d/20210216180618_incident_management_incident_change_confidential_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180622_incident_management_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216180622_incident_management_total_unique_counts_monthly.yml index f9430a0c9eb..9bc738cee98 100644 --- a/config/metrics/counts_28d/20210216180622_incident_management_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216180622_incident_management_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180625_incident_management_alert_create_incident_monthly.yml b/config/metrics/counts_28d/20210216180625_incident_management_alert_create_incident_monthly.yml index 56b05502bbf..379f9ec1a3c 100644 --- a/config/metrics/counts_28d/20210216180625_incident_management_alert_create_incident_monthly.yml +++ b/config/metrics/counts_28d/20210216180625_incident_management_alert_create_incident_monthly.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216180731_projects_imported_from_github.yml b/config/metrics/counts_28d/20210216180731_projects_imported_from_github.yml index 4bb680d579c..fd9b3ed719a 100644 --- a/config/metrics/counts_28d/20210216180731_projects_imported_from_github.yml +++ b/config/metrics/counts_28d/20210216180731_projects_imported_from_github.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180745_action_monthly_active_users_design_management.yml b/config/metrics/counts_28d/20210216180745_action_monthly_active_users_design_management.yml index 213fa6da4b9..9c2820ce851 100644 --- a/config/metrics/counts_28d/20210216180745_action_monthly_active_users_design_management.yml +++ b/config/metrics/counts_28d/20210216180745_action_monthly_active_users_design_management.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: design_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180747_action_monthly_active_users_wiki_repo.yml b/config/metrics/counts_28d/20210216180747_action_monthly_active_users_wiki_repo.yml index d52e9b4c348..cc950591e6e 100644 --- a/config/metrics/counts_28d/20210216180747_action_monthly_active_users_wiki_repo.yml +++ b/config/metrics/counts_28d/20210216180747_action_monthly_active_users_wiki_repo.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: wiki value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216180814_events.yml b/config/metrics/counts_28d/20210216180814_events.yml index f901c8ce508..082dc3b8853 100644 --- a/config/metrics/counts_28d/20210216180814_events.yml +++ b/config/metrics/counts_28d/20210216180814_events.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::manage product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180816_groups.yml b/config/metrics/counts_28d/20210216180816_groups.yml index a6876a8536a..600408f92ef 100644 --- a/config/metrics/counts_28d/20210216180816_groups.yml +++ b/config/metrics/counts_28d/20210216180816_groups.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: subgroups value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180818_users_created.yml b/config/metrics/counts_28d/20210216180818_users_created.yml index 28af6c26da7..1df17b13891 100644 --- a/config/metrics/counts_28d/20210216180818_users_created.yml +++ b/config/metrics/counts_28d/20210216180818_users_created.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: users value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180956_clusters.yml b/config/metrics/counts_28d/20210216180956_clusters.yml index ca503bcd815..6b9015dbdfe 100644 --- a/config/metrics/counts_28d/20210216180956_clusters.yml +++ b/config/metrics/counts_28d/20210216180956_clusters.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216180958_clusters_applications_prometheus.yml b/config/metrics/counts_28d/20210216180958_clusters_applications_prometheus.yml index e9f5a6ad68a..b947a6ff7ea 100644 --- a/config/metrics/counts_28d/20210216180958_clusters_applications_prometheus.yml +++ b/config/metrics/counts_28d/20210216180958_clusters_applications_prometheus.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181000_operations_dashboard_default_dashboard.yml b/config/metrics/counts_28d/20210216181000_operations_dashboard_default_dashboard.yml index 7e22b0837dc..0870789a515 100644 --- a/config/metrics/counts_28d/20210216181000_operations_dashboard_default_dashboard.yml +++ b/config/metrics/counts_28d/20210216181000_operations_dashboard_default_dashboard.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181002_projects_with_tracing_enabled.yml b/config/metrics/counts_28d/20210216181002_projects_with_tracing_enabled.yml index dbf538c27e5..60b1ca2b765 100644 --- a/config/metrics/counts_28d/20210216181002_projects_with_tracing_enabled.yml +++ b/config/metrics/counts_28d/20210216181002_projects_with_tracing_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: tracing value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181004_projects_with_error_tracking_enabled.yml b/config/metrics/counts_28d/20210216181004_projects_with_error_tracking_enabled.yml index d1538f92c25..3267d7d4412 100644 --- a/config/metrics/counts_28d/20210216181004_projects_with_error_tracking_enabled.yml +++ b/config/metrics/counts_28d/20210216181004_projects_with_error_tracking_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181006_operations_dashboard_users_with_projects_added.yml b/config/metrics/counts_28d/20210216181006_operations_dashboard_users_with_projects_added.yml index 9f03731c556..612a6f9be40 100644 --- a/config/metrics/counts_28d/20210216181006_operations_dashboard_users_with_projects_added.yml +++ b/config/metrics/counts_28d/20210216181006_operations_dashboard_users_with_projects_added.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181050_packages.yml b/config/metrics/counts_28d/20210216181050_packages.yml index 27b996c7735..45997bad6f2 100644 --- a/config/metrics/counts_28d/20210216181050_packages.yml +++ b/config/metrics/counts_28d/20210216181050_packages.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181057_projects_with_packages.yml b/config/metrics/counts_28d/20210216181057_projects_with_packages.yml index bbee004d130..3398dacaa92 100644 --- a/config/metrics/counts_28d/20210216181057_projects_with_packages.yml +++ b/config/metrics/counts_28d/20210216181057_projects_with_packages.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181139_issues.yml b/config/metrics/counts_28d/20210216181139_issues.yml index e8ec3406622..84f7f6f4ba8 100644 --- a/config/metrics/counts_28d/20210216181139_issues.yml +++ b/config/metrics/counts_28d/20210216181139_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: database instrumentation_class: CountUsersCreatingIssuesMetric diff --git a/config/metrics/counts_28d/20210216181141_notes.yml b/config/metrics/counts_28d/20210216181141_notes.yml index bc38186bd10..280722a8a1c 100644 --- a/config/metrics/counts_28d/20210216181141_notes.yml +++ b/config/metrics/counts_28d/20210216181141_notes.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181143_projects.yml b/config/metrics/counts_28d/20210216181143_projects.yml index 3dafe40b3e4..daad51c1409 100644 --- a/config/metrics/counts_28d/20210216181143_projects.yml +++ b/config/metrics/counts_28d/20210216181143_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: projects value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181145_todos.yml b/config/metrics/counts_28d/20210216181145_todos.yml index c83f054859d..ad42b23ceb9 100644 --- a/config/metrics/counts_28d/20210216181145_todos.yml +++ b/config/metrics/counts_28d/20210216181145_todos.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181147_service_desk_enabled_projects.yml b/config/metrics/counts_28d/20210216181147_service_desk_enabled_projects.yml index 4344144d592..0a403b0da70 100644 --- a/config/metrics/counts_28d/20210216181147_service_desk_enabled_projects.yml +++ b/config/metrics/counts_28d/20210216181147_service_desk_enabled_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: service_desk value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181148_service_desk_issues.yml b/config/metrics/counts_28d/20210216181148_service_desk_issues.yml index 75e4bc93354..1b5d647fa0d 100644 --- a/config/metrics/counts_28d/20210216181148_service_desk_issues.yml +++ b/config/metrics/counts_28d/20210216181148_service_desk_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181150_projects_jira_active.yml b/config/metrics/counts_28d/20210216181150_projects_jira_active.yml index 8a386ce02e9..84edf3f7e9c 100644 --- a/config/metrics/counts_28d/20210216181150_projects_jira_active.yml +++ b/config/metrics/counts_28d/20210216181150_projects_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181152_projects_jira_dvcs_cloud_active.yml b/config/metrics/counts_28d/20210216181152_projects_jira_dvcs_cloud_active.yml index 3aef852d44c..07955a6cad1 100644 --- a/config/metrics/counts_28d/20210216181152_projects_jira_dvcs_cloud_active.yml +++ b/config/metrics/counts_28d/20210216181152_projects_jira_dvcs_cloud_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integration product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181154_projects_jira_dvcs_server_active.yml b/config/metrics/counts_28d/20210216181154_projects_jira_dvcs_server_active.yml index d28e4295dcf..e87b69c266b 100644 --- a/config/metrics/counts_28d/20210216181154_projects_jira_dvcs_server_active.yml +++ b/config/metrics/counts_28d/20210216181154_projects_jira_dvcs_server_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integration product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181158_epics.yml b/config/metrics/counts_28d/20210216181158_epics.yml index c9bb535f3cd..56401d0108f 100644 --- a/config/metrics/counts_28d/20210216181158_epics.yml +++ b/config/metrics/counts_28d/20210216181158_epics.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: epics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181200_label_lists.yml b/config/metrics/counts_28d/20210216181200_label_lists.yml index 091a0138cf7..3b97c6eb94c 100644 --- a/config/metrics/counts_28d/20210216181200_label_lists.yml +++ b/config/metrics/counts_28d/20210216181200_label_lists.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: boards value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181304_g_project_management_issue_title_changed_monthly.yml b/config/metrics/counts_28d/20210216181304_g_project_management_issue_title_changed_monthly.yml index ce25144a574..8e2b416af70 100644 --- a/config/metrics/counts_28d/20210216181304_g_project_management_issue_title_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181304_g_project_management_issue_title_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181308_g_project_management_issue_description_changed_monthly.yml b/config/metrics/counts_28d/20210216181308_g_project_management_issue_description_changed_monthly.yml index 972fd1b6f41..942ad55d540 100644 --- a/config/metrics/counts_28d/20210216181308_g_project_management_issue_description_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181308_g_project_management_issue_description_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181311_g_project_management_issue_assignee_changed_monthly.yml b/config/metrics/counts_28d/20210216181311_g_project_management_issue_assignee_changed_monthly.yml index 503b4aff95b..734da3e5403 100644 --- a/config/metrics/counts_28d/20210216181311_g_project_management_issue_assignee_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181311_g_project_management_issue_assignee_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181315_g_project_management_issue_made_confidential_monthly.yml b/config/metrics/counts_28d/20210216181315_g_project_management_issue_made_confidential_monthly.yml index a861ee461ee..45cc0d88c4d 100644 --- a/config/metrics/counts_28d/20210216181315_g_project_management_issue_made_confidential_monthly.yml +++ b/config/metrics/counts_28d/20210216181315_g_project_management_issue_made_confidential_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181319_g_project_management_issue_made_visible_monthly.yml b/config/metrics/counts_28d/20210216181319_g_project_management_issue_made_visible_monthly.yml index 6d494397b8b..4109da5e9e1 100644 --- a/config/metrics/counts_28d/20210216181319_g_project_management_issue_made_visible_monthly.yml +++ b/config/metrics/counts_28d/20210216181319_g_project_management_issue_made_visible_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181323_g_project_management_issue_created_monthly.yml b/config/metrics/counts_28d/20210216181323_g_project_management_issue_created_monthly.yml index 0640c7cb6be..0e8df458927 100644 --- a/config/metrics/counts_28d/20210216181323_g_project_management_issue_created_monthly.yml +++ b/config/metrics/counts_28d/20210216181323_g_project_management_issue_created_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181326_g_project_management_issue_closed_monthly.yml b/config/metrics/counts_28d/20210216181326_g_project_management_issue_closed_monthly.yml index 1be3e1a1ead..3334d9518ef 100644 --- a/config/metrics/counts_28d/20210216181326_g_project_management_issue_closed_monthly.yml +++ b/config/metrics/counts_28d/20210216181326_g_project_management_issue_closed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181330_g_project_management_issue_reopened_monthly.yml b/config/metrics/counts_28d/20210216181330_g_project_management_issue_reopened_monthly.yml index 22ca1ca1924..66034b7d1e4 100644 --- a/config/metrics/counts_28d/20210216181330_g_project_management_issue_reopened_monthly.yml +++ b/config/metrics/counts_28d/20210216181330_g_project_management_issue_reopened_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181334_g_project_management_issue_label_changed_monthly.yml b/config/metrics/counts_28d/20210216181334_g_project_management_issue_label_changed_monthly.yml index 3e2b3d4284d..ccb50cc01d5 100644 --- a/config/metrics/counts_28d/20210216181334_g_project_management_issue_label_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181334_g_project_management_issue_label_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181337_g_project_management_issue_milestone_changed_monthly.yml b/config/metrics/counts_28d/20210216181337_g_project_management_issue_milestone_changed_monthly.yml index 4e1c5413a76..0a7d5dc82ee 100644 --- a/config/metrics/counts_28d/20210216181337_g_project_management_issue_milestone_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181337_g_project_management_issue_milestone_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181348_g_project_management_issue_cross_referenced_monthly.yml b/config/metrics/counts_28d/20210216181348_g_project_management_issue_cross_referenced_monthly.yml index dbe6daaacd6..b2da497f7bf 100644 --- a/config/metrics/counts_28d/20210216181348_g_project_management_issue_cross_referenced_monthly.yml +++ b/config/metrics/counts_28d/20210216181348_g_project_management_issue_cross_referenced_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181352_g_project_management_issue_moved_monthly.yml b/config/metrics/counts_28d/20210216181352_g_project_management_issue_moved_monthly.yml index b992d1e49b4..a76a89646da 100644 --- a/config/metrics/counts_28d/20210216181352_g_project_management_issue_moved_monthly.yml +++ b/config/metrics/counts_28d/20210216181352_g_project_management_issue_moved_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181356_g_project_management_issue_related_monthly.yml b/config/metrics/counts_28d/20210216181356_g_project_management_issue_related_monthly.yml index b919b92d60b..43a3e4a7d46 100644 --- a/config/metrics/counts_28d/20210216181356_g_project_management_issue_related_monthly.yml +++ b/config/metrics/counts_28d/20210216181356_g_project_management_issue_related_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181400_g_project_management_issue_unrelated_monthly.yml b/config/metrics/counts_28d/20210216181400_g_project_management_issue_unrelated_monthly.yml index 3ad909302e2..db3a3eb2a8f 100644 --- a/config/metrics/counts_28d/20210216181400_g_project_management_issue_unrelated_monthly.yml +++ b/config/metrics/counts_28d/20210216181400_g_project_management_issue_unrelated_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181403_g_project_management_issue_marked_as_duplicate_monthly.yml b/config/metrics/counts_28d/20210216181403_g_project_management_issue_marked_as_duplicate_monthly.yml index a042e57d413..39185b34916 100644 --- a/config/metrics/counts_28d/20210216181403_g_project_management_issue_marked_as_duplicate_monthly.yml +++ b/config/metrics/counts_28d/20210216181403_g_project_management_issue_marked_as_duplicate_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181407_g_project_management_issue_locked_monthly.yml b/config/metrics/counts_28d/20210216181407_g_project_management_issue_locked_monthly.yml index c7922c71e8e..c0d6bb6dd94 100644 --- a/config/metrics/counts_28d/20210216181407_g_project_management_issue_locked_monthly.yml +++ b/config/metrics/counts_28d/20210216181407_g_project_management_issue_locked_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181411_g_project_management_issue_unlocked_monthly.yml b/config/metrics/counts_28d/20210216181411_g_project_management_issue_unlocked_monthly.yml index f9d6fc10552..927e5abdb69 100644 --- a/config/metrics/counts_28d/20210216181411_g_project_management_issue_unlocked_monthly.yml +++ b/config/metrics/counts_28d/20210216181411_g_project_management_issue_unlocked_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181424_g_project_management_issue_designs_added_monthly.yml b/config/metrics/counts_28d/20210216181424_g_project_management_issue_designs_added_monthly.yml index 63c9b3ddcd8..10a0aa99000 100644 --- a/config/metrics/counts_28d/20210216181424_g_project_management_issue_designs_added_monthly.yml +++ b/config/metrics/counts_28d/20210216181424_g_project_management_issue_designs_added_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181427_g_project_management_issue_designs_modified_monthly.yml b/config/metrics/counts_28d/20210216181427_g_project_management_issue_designs_modified_monthly.yml index 3ae5a8f77c6..9583b98427e 100644 --- a/config/metrics/counts_28d/20210216181427_g_project_management_issue_designs_modified_monthly.yml +++ b/config/metrics/counts_28d/20210216181427_g_project_management_issue_designs_modified_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181431_g_project_management_issue_designs_removed_monthly.yml b/config/metrics/counts_28d/20210216181431_g_project_management_issue_designs_removed_monthly.yml index 918c2bf0888..2df771c4aba 100644 --- a/config/metrics/counts_28d/20210216181431_g_project_management_issue_designs_removed_monthly.yml +++ b/config/metrics/counts_28d/20210216181431_g_project_management_issue_designs_removed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181435_g_project_management_issue_due_date_changed_monthly.yml b/config/metrics/counts_28d/20210216181435_g_project_management_issue_due_date_changed_monthly.yml index 2a880ec0658..5c1d36a2795 100644 --- a/config/metrics/counts_28d/20210216181435_g_project_management_issue_due_date_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181435_g_project_management_issue_due_date_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181438_g_project_management_issue_time_estimate_changed_monthly.yml b/config/metrics/counts_28d/20210216181438_g_project_management_issue_time_estimate_changed_monthly.yml index 2c51eed73ef..55ebaaf73bf 100644 --- a/config/metrics/counts_28d/20210216181438_g_project_management_issue_time_estimate_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181438_g_project_management_issue_time_estimate_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181442_g_project_management_issue_time_spent_changed_monthly.yml b/config/metrics/counts_28d/20210216181442_g_project_management_issue_time_spent_changed_monthly.yml index 2bcecf80d97..0551e7607ec 100644 --- a/config/metrics/counts_28d/20210216181442_g_project_management_issue_time_spent_changed_monthly.yml +++ b/config/metrics/counts_28d/20210216181442_g_project_management_issue_time_spent_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181446_g_project_management_issue_comment_added_monthly.yml b/config/metrics/counts_28d/20210216181446_g_project_management_issue_comment_added_monthly.yml index 8b1a3e71a15..d6876e29cb4 100644 --- a/config/metrics/counts_28d/20210216181446_g_project_management_issue_comment_added_monthly.yml +++ b/config/metrics/counts_28d/20210216181446_g_project_management_issue_comment_added_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181450_g_project_management_issue_comment_edited_monthly.yml b/config/metrics/counts_28d/20210216181450_g_project_management_issue_comment_edited_monthly.yml index edb098f4171..0347b00d871 100644 --- a/config/metrics/counts_28d/20210216181450_g_project_management_issue_comment_edited_monthly.yml +++ b/config/metrics/counts_28d/20210216181450_g_project_management_issue_comment_edited_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181453_g_project_management_issue_comment_removed_monthly.yml b/config/metrics/counts_28d/20210216181453_g_project_management_issue_comment_removed_monthly.yml index 38729cba44a..f2ef56645a2 100644 --- a/config/metrics/counts_28d/20210216181453_g_project_management_issue_comment_removed_monthly.yml +++ b/config/metrics/counts_28d/20210216181453_g_project_management_issue_comment_removed_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181501_g_project_management_issue_cloned_monthly.yml b/config/metrics/counts_28d/20210216181501_g_project_management_issue_cloned_monthly.yml index 3550a4a2d24..d0da9b74eb8 100644 --- a/config/metrics/counts_28d/20210216181501_g_project_management_issue_cloned_monthly.yml +++ b/config/metrics/counts_28d/20210216181501_g_project_management_issue_cloned_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181504_issues_edit_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216181504_issues_edit_total_unique_counts_monthly.yml index 5bffd21c464..7d490a3dc95 100644 --- a/config/metrics/counts_28d/20210216181504_issues_edit_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216181504_issues_edit_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181508_i_quickactions_approve_monthly.yml b/config/metrics/counts_28d/20210216181508_i_quickactions_approve_monthly.yml index 6cc4b21d594..90bc9ba73d0 100644 --- a/config/metrics/counts_28d/20210216181508_i_quickactions_approve_monthly.yml +++ b/config/metrics/counts_28d/20210216181508_i_quickactions_approve_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181512_i_quickactions_assign_single_monthly.yml b/config/metrics/counts_28d/20210216181512_i_quickactions_assign_single_monthly.yml index 5f5cd80ebec..0c78cd4faa8 100644 --- a/config/metrics/counts_28d/20210216181512_i_quickactions_assign_single_monthly.yml +++ b/config/metrics/counts_28d/20210216181512_i_quickactions_assign_single_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181519_i_quickactions_assign_self_monthly.yml b/config/metrics/counts_28d/20210216181519_i_quickactions_assign_self_monthly.yml index 647edb7f79e..fde995ff768 100644 --- a/config/metrics/counts_28d/20210216181519_i_quickactions_assign_self_monthly.yml +++ b/config/metrics/counts_28d/20210216181519_i_quickactions_assign_self_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181523_i_quickactions_assign_reviewer_monthly.yml b/config/metrics/counts_28d/20210216181523_i_quickactions_assign_reviewer_monthly.yml index 17b962509e0..9eeb21e4c0b 100644 --- a/config/metrics/counts_28d/20210216181523_i_quickactions_assign_reviewer_monthly.yml +++ b/config/metrics/counts_28d/20210216181523_i_quickactions_assign_reviewer_monthly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181527_i_quickactions_award_monthly.yml b/config/metrics/counts_28d/20210216181527_i_quickactions_award_monthly.yml index 49e558159b2..6a8564ed981 100644 --- a/config/metrics/counts_28d/20210216181527_i_quickactions_award_monthly.yml +++ b/config/metrics/counts_28d/20210216181527_i_quickactions_award_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181530_i_quickactions_board_move_monthly.yml b/config/metrics/counts_28d/20210216181530_i_quickactions_board_move_monthly.yml index f001639e500..f92880c38eb 100644 --- a/config/metrics/counts_28d/20210216181530_i_quickactions_board_move_monthly.yml +++ b/config/metrics/counts_28d/20210216181530_i_quickactions_board_move_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181541_i_quickactions_clone_monthly.yml b/config/metrics/counts_28d/20210216181541_i_quickactions_clone_monthly.yml index 32de3dfdbac..10f4e667e25 100644 --- a/config/metrics/counts_28d/20210216181541_i_quickactions_clone_monthly.yml +++ b/config/metrics/counts_28d/20210216181541_i_quickactions_clone_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181545_i_quickactions_close_monthly.yml b/config/metrics/counts_28d/20210216181545_i_quickactions_close_monthly.yml index bb2152d92b1..7a41293254e 100644 --- a/config/metrics/counts_28d/20210216181545_i_quickactions_close_monthly.yml +++ b/config/metrics/counts_28d/20210216181545_i_quickactions_close_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181549_i_quickactions_confidential_monthly.yml b/config/metrics/counts_28d/20210216181549_i_quickactions_confidential_monthly.yml index 5260dfd1a30..3c5bdf3a4a3 100644 --- a/config/metrics/counts_28d/20210216181549_i_quickactions_confidential_monthly.yml +++ b/config/metrics/counts_28d/20210216181549_i_quickactions_confidential_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181553_i_quickactions_copy_metadata_merge_request_monthly.yml b/config/metrics/counts_28d/20210216181553_i_quickactions_copy_metadata_merge_request_monthly.yml index 30871aeb45f..3a9f9f70110 100644 --- a/config/metrics/counts_28d/20210216181553_i_quickactions_copy_metadata_merge_request_monthly.yml +++ b/config/metrics/counts_28d/20210216181553_i_quickactions_copy_metadata_merge_request_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181556_i_quickactions_copy_metadata_issue_monthly.yml b/config/metrics/counts_28d/20210216181556_i_quickactions_copy_metadata_issue_monthly.yml index 48042d37988..e8266a1989e 100644 --- a/config/metrics/counts_28d/20210216181556_i_quickactions_copy_metadata_issue_monthly.yml +++ b/config/metrics/counts_28d/20210216181556_i_quickactions_copy_metadata_issue_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181600_i_quickactions_create_merge_request_monthly.yml b/config/metrics/counts_28d/20210216181600_i_quickactions_create_merge_request_monthly.yml index 538afb8ff96..5132d880fe8 100644 --- a/config/metrics/counts_28d/20210216181600_i_quickactions_create_merge_request_monthly.yml +++ b/config/metrics/counts_28d/20210216181600_i_quickactions_create_merge_request_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181604_i_quickactions_done_monthly.yml b/config/metrics/counts_28d/20210216181604_i_quickactions_done_monthly.yml index 86a709dcbb6..bd96f6965a0 100644 --- a/config/metrics/counts_28d/20210216181604_i_quickactions_done_monthly.yml +++ b/config/metrics/counts_28d/20210216181604_i_quickactions_done_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181607_i_quickactions_draft_monthly.yml b/config/metrics/counts_28d/20210216181607_i_quickactions_draft_monthly.yml index 1da63a62dbe..825d8355a70 100644 --- a/config/metrics/counts_28d/20210216181607_i_quickactions_draft_monthly.yml +++ b/config/metrics/counts_28d/20210216181607_i_quickactions_draft_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181611_i_quickactions_due_monthly.yml b/config/metrics/counts_28d/20210216181611_i_quickactions_due_monthly.yml index d3c1f64cee5..a8bcaf7b2c9 100644 --- a/config/metrics/counts_28d/20210216181611_i_quickactions_due_monthly.yml +++ b/config/metrics/counts_28d/20210216181611_i_quickactions_due_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181615_i_quickactions_duplicate_monthly.yml b/config/metrics/counts_28d/20210216181615_i_quickactions_duplicate_monthly.yml index 44f1f026349..41c067dc88c 100644 --- a/config/metrics/counts_28d/20210216181615_i_quickactions_duplicate_monthly.yml +++ b/config/metrics/counts_28d/20210216181615_i_quickactions_duplicate_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181622_i_quickactions_estimate_monthly.yml b/config/metrics/counts_28d/20210216181622_i_quickactions_estimate_monthly.yml index 1e932d68796..96a51c514c7 100644 --- a/config/metrics/counts_28d/20210216181622_i_quickactions_estimate_monthly.yml +++ b/config/metrics/counts_28d/20210216181622_i_quickactions_estimate_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181629_i_quickactions_label_monthly.yml b/config/metrics/counts_28d/20210216181629_i_quickactions_label_monthly.yml index 475ebb932a9..3f5fa5396e3 100644 --- a/config/metrics/counts_28d/20210216181629_i_quickactions_label_monthly.yml +++ b/config/metrics/counts_28d/20210216181629_i_quickactions_label_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181633_i_quickactions_lock_monthly.yml b/config/metrics/counts_28d/20210216181633_i_quickactions_lock_monthly.yml index 804d6507d89..7b65c2cecbb 100644 --- a/config/metrics/counts_28d/20210216181633_i_quickactions_lock_monthly.yml +++ b/config/metrics/counts_28d/20210216181633_i_quickactions_lock_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181637_i_quickactions_merge_monthly.yml b/config/metrics/counts_28d/20210216181637_i_quickactions_merge_monthly.yml index 7d42072eaab..2b9c653e31e 100644 --- a/config/metrics/counts_28d/20210216181637_i_quickactions_merge_monthly.yml +++ b/config/metrics/counts_28d/20210216181637_i_quickactions_merge_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181641_i_quickactions_milestone_monthly.yml b/config/metrics/counts_28d/20210216181641_i_quickactions_milestone_monthly.yml index 30d76be62b0..dca92829b75 100644 --- a/config/metrics/counts_28d/20210216181641_i_quickactions_milestone_monthly.yml +++ b/config/metrics/counts_28d/20210216181641_i_quickactions_milestone_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181644_i_quickactions_move_monthly.yml b/config/metrics/counts_28d/20210216181644_i_quickactions_move_monthly.yml index e7a0f7c6eba..20bb3e82ce5 100644 --- a/config/metrics/counts_28d/20210216181644_i_quickactions_move_monthly.yml +++ b/config/metrics/counts_28d/20210216181644_i_quickactions_move_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181659_i_quickactions_reassign_monthly.yml b/config/metrics/counts_28d/20210216181659_i_quickactions_reassign_monthly.yml index d5b8ad343bf..06cb49ad587 100644 --- a/config/metrics/counts_28d/20210216181659_i_quickactions_reassign_monthly.yml +++ b/config/metrics/counts_28d/20210216181659_i_quickactions_reassign_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181703_i_quickactions_reassign_reviewer_monthly.yml b/config/metrics/counts_28d/20210216181703_i_quickactions_reassign_reviewer_monthly.yml index 71ea51bfdad..de7bf045dbc 100644 --- a/config/metrics/counts_28d/20210216181703_i_quickactions_reassign_reviewer_monthly.yml +++ b/config/metrics/counts_28d/20210216181703_i_quickactions_reassign_reviewer_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181707_i_quickactions_rebase_monthly.yml b/config/metrics/counts_28d/20210216181707_i_quickactions_rebase_monthly.yml index 2a0d4e5aac7..177be7f33b4 100644 --- a/config/metrics/counts_28d/20210216181707_i_quickactions_rebase_monthly.yml +++ b/config/metrics/counts_28d/20210216181707_i_quickactions_rebase_monthly.yml @@ -7,7 +7,7 @@ product_stage: source_code product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181710_i_quickactions_relabel_monthly.yml b/config/metrics/counts_28d/20210216181710_i_quickactions_relabel_monthly.yml index 240555a37df..bcbee861e6a 100644 --- a/config/metrics/counts_28d/20210216181710_i_quickactions_relabel_monthly.yml +++ b/config/metrics/counts_28d/20210216181710_i_quickactions_relabel_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181714_i_quickactions_relate_monthly.yml b/config/metrics/counts_28d/20210216181714_i_quickactions_relate_monthly.yml index d14f5c2e701..e16251e169a 100644 --- a/config/metrics/counts_28d/20210216181714_i_quickactions_relate_monthly.yml +++ b/config/metrics/counts_28d/20210216181714_i_quickactions_relate_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181721_i_quickactions_remove_due_date_monthly.yml b/config/metrics/counts_28d/20210216181721_i_quickactions_remove_due_date_monthly.yml index e12a4af803b..f573957f5fd 100644 --- a/config/metrics/counts_28d/20210216181721_i_quickactions_remove_due_date_monthly.yml +++ b/config/metrics/counts_28d/20210216181721_i_quickactions_remove_due_date_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181729_i_quickactions_remove_estimate_monthly.yml b/config/metrics/counts_28d/20210216181729_i_quickactions_remove_estimate_monthly.yml index 8ac469cbb14..8df0eb3ed73 100644 --- a/config/metrics/counts_28d/20210216181729_i_quickactions_remove_estimate_monthly.yml +++ b/config/metrics/counts_28d/20210216181729_i_quickactions_remove_estimate_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181736_i_quickactions_remove_milestone_monthly.yml b/config/metrics/counts_28d/20210216181736_i_quickactions_remove_milestone_monthly.yml index eb7616a0662..71f51658ba9 100644 --- a/config/metrics/counts_28d/20210216181736_i_quickactions_remove_milestone_monthly.yml +++ b/config/metrics/counts_28d/20210216181736_i_quickactions_remove_milestone_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181744_i_quickactions_remove_time_spent_monthly.yml b/config/metrics/counts_28d/20210216181744_i_quickactions_remove_time_spent_monthly.yml index cc9a951d826..dae709a56f7 100644 --- a/config/metrics/counts_28d/20210216181744_i_quickactions_remove_time_spent_monthly.yml +++ b/config/metrics/counts_28d/20210216181744_i_quickactions_remove_time_spent_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181747_i_quickactions_remove_zoom_monthly.yml b/config/metrics/counts_28d/20210216181747_i_quickactions_remove_zoom_monthly.yml index 864a173ba6b..fcc00892045 100644 --- a/config/metrics/counts_28d/20210216181747_i_quickactions_remove_zoom_monthly.yml +++ b/config/metrics/counts_28d/20210216181747_i_quickactions_remove_zoom_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181751_i_quickactions_reopen_monthly.yml b/config/metrics/counts_28d/20210216181751_i_quickactions_reopen_monthly.yml index 7407773b2d8..4b9e1af8108 100644 --- a/config/metrics/counts_28d/20210216181751_i_quickactions_reopen_monthly.yml +++ b/config/metrics/counts_28d/20210216181751_i_quickactions_reopen_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181755_i_quickactions_shrug_monthly.yml b/config/metrics/counts_28d/20210216181755_i_quickactions_shrug_monthly.yml index 3ab43d4f64a..fb549d259d4 100644 --- a/config/metrics/counts_28d/20210216181755_i_quickactions_shrug_monthly.yml +++ b/config/metrics/counts_28d/20210216181755_i_quickactions_shrug_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181758_i_quickactions_spend_subtract_monthly.yml b/config/metrics/counts_28d/20210216181758_i_quickactions_spend_subtract_monthly.yml index a32b05b09ac..912ea2487be 100644 --- a/config/metrics/counts_28d/20210216181758_i_quickactions_spend_subtract_monthly.yml +++ b/config/metrics/counts_28d/20210216181758_i_quickactions_spend_subtract_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181802_i_quickactions_spend_add_monthly.yml b/config/metrics/counts_28d/20210216181802_i_quickactions_spend_add_monthly.yml index b1a1a6cba16..d6992675957 100644 --- a/config/metrics/counts_28d/20210216181802_i_quickactions_spend_add_monthly.yml +++ b/config/metrics/counts_28d/20210216181802_i_quickactions_spend_add_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181806_i_quickactions_submit_review_monthly.yml b/config/metrics/counts_28d/20210216181806_i_quickactions_submit_review_monthly.yml index 15b3cada1de..5b2272f09e2 100644 --- a/config/metrics/counts_28d/20210216181806_i_quickactions_submit_review_monthly.yml +++ b/config/metrics/counts_28d/20210216181806_i_quickactions_submit_review_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181809_i_quickactions_subscribe_monthly.yml b/config/metrics/counts_28d/20210216181809_i_quickactions_subscribe_monthly.yml index 11e02d96afc..03be662de07 100644 --- a/config/metrics/counts_28d/20210216181809_i_quickactions_subscribe_monthly.yml +++ b/config/metrics/counts_28d/20210216181809_i_quickactions_subscribe_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181813_i_quickactions_tableflip_monthly.yml b/config/metrics/counts_28d/20210216181813_i_quickactions_tableflip_monthly.yml index 69def169311..b7a9bb1b669 100644 --- a/config/metrics/counts_28d/20210216181813_i_quickactions_tableflip_monthly.yml +++ b/config/metrics/counts_28d/20210216181813_i_quickactions_tableflip_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181817_i_quickactions_tag_monthly.yml b/config/metrics/counts_28d/20210216181817_i_quickactions_tag_monthly.yml index b51f783842d..c48efc45953 100644 --- a/config/metrics/counts_28d/20210216181817_i_quickactions_tag_monthly.yml +++ b/config/metrics/counts_28d/20210216181817_i_quickactions_tag_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181821_i_quickactions_target_branch_monthly.yml b/config/metrics/counts_28d/20210216181821_i_quickactions_target_branch_monthly.yml index 0f815ecec4e..372220ae58b 100644 --- a/config/metrics/counts_28d/20210216181821_i_quickactions_target_branch_monthly.yml +++ b/config/metrics/counts_28d/20210216181821_i_quickactions_target_branch_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181824_i_quickactions_title_monthly.yml b/config/metrics/counts_28d/20210216181824_i_quickactions_title_monthly.yml index 44187db1e52..76004594d85 100644 --- a/config/metrics/counts_28d/20210216181824_i_quickactions_title_monthly.yml +++ b/config/metrics/counts_28d/20210216181824_i_quickactions_title_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181828_i_quickactions_todo_monthly.yml b/config/metrics/counts_28d/20210216181828_i_quickactions_todo_monthly.yml index 81e9f5368b6..05353f9c3bc 100644 --- a/config/metrics/counts_28d/20210216181828_i_quickactions_todo_monthly.yml +++ b/config/metrics/counts_28d/20210216181828_i_quickactions_todo_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181832_i_quickactions_unassign_specific_monthly.yml b/config/metrics/counts_28d/20210216181832_i_quickactions_unassign_specific_monthly.yml index 6faa84138c7..095e11f90dd 100644 --- a/config/metrics/counts_28d/20210216181832_i_quickactions_unassign_specific_monthly.yml +++ b/config/metrics/counts_28d/20210216181832_i_quickactions_unassign_specific_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181835_i_quickactions_unassign_all_monthly.yml b/config/metrics/counts_28d/20210216181835_i_quickactions_unassign_all_monthly.yml index 4f1a3c6f0e4..54ed00ab80a 100644 --- a/config/metrics/counts_28d/20210216181835_i_quickactions_unassign_all_monthly.yml +++ b/config/metrics/counts_28d/20210216181835_i_quickactions_unassign_all_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181839_i_quickactions_unassign_reviewer_monthly.yml b/config/metrics/counts_28d/20210216181839_i_quickactions_unassign_reviewer_monthly.yml index e8ea81ea5a3..f9132b9d641 100644 --- a/config/metrics/counts_28d/20210216181839_i_quickactions_unassign_reviewer_monthly.yml +++ b/config/metrics/counts_28d/20210216181839_i_quickactions_unassign_reviewer_monthly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181843_i_quickactions_unlabel_specific_monthly.yml b/config/metrics/counts_28d/20210216181843_i_quickactions_unlabel_specific_monthly.yml index 28cb71fcb69..38c44348a4c 100644 --- a/config/metrics/counts_28d/20210216181843_i_quickactions_unlabel_specific_monthly.yml +++ b/config/metrics/counts_28d/20210216181843_i_quickactions_unlabel_specific_monthly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181846_i_quickactions_unlabel_all_monthly.yml b/config/metrics/counts_28d/20210216181846_i_quickactions_unlabel_all_monthly.yml index 2db43ebe335..ce3d14e8906 100644 --- a/config/metrics/counts_28d/20210216181846_i_quickactions_unlabel_all_monthly.yml +++ b/config/metrics/counts_28d/20210216181846_i_quickactions_unlabel_all_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181850_i_quickactions_unlock_monthly.yml b/config/metrics/counts_28d/20210216181850_i_quickactions_unlock_monthly.yml index d5674d0165c..0f9c059409c 100644 --- a/config/metrics/counts_28d/20210216181850_i_quickactions_unlock_monthly.yml +++ b/config/metrics/counts_28d/20210216181850_i_quickactions_unlock_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181854_i_quickactions_unsubscribe_monthly.yml b/config/metrics/counts_28d/20210216181854_i_quickactions_unsubscribe_monthly.yml index 0e88fb56641..585370e1fa2 100644 --- a/config/metrics/counts_28d/20210216181854_i_quickactions_unsubscribe_monthly.yml +++ b/config/metrics/counts_28d/20210216181854_i_quickactions_unsubscribe_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181901_i_quickactions_wip_monthly.yml b/config/metrics/counts_28d/20210216181901_i_quickactions_wip_monthly.yml index 05b839247c2..fed595813ca 100644 --- a/config/metrics/counts_28d/20210216181901_i_quickactions_wip_monthly.yml +++ b/config/metrics/counts_28d/20210216181901_i_quickactions_wip_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181905_i_quickactions_zoom_monthly.yml b/config/metrics/counts_28d/20210216181905_i_quickactions_zoom_monthly.yml index 6efe8e2a01d..d6b8bb2b366 100644 --- a/config/metrics/counts_28d/20210216181905_i_quickactions_zoom_monthly.yml +++ b/config/metrics/counts_28d/20210216181905_i_quickactions_zoom_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216181923_successful_deployments.yml b/config/metrics/counts_28d/20210216181923_successful_deployments.yml index 76909e9c27b..2bf7204facc 100644 --- a/config/metrics/counts_28d/20210216181923_successful_deployments.yml +++ b/config/metrics/counts_28d/20210216181923_successful_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181924_failed_deployments.yml b/config/metrics/counts_28d/20210216181924_failed_deployments.yml index b02e1e12c86..1a0840f2cee 100644 --- a/config/metrics/counts_28d/20210216181924_failed_deployments.yml +++ b/config/metrics/counts_28d/20210216181924_failed_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181935_deployments.yml b/config/metrics/counts_28d/20210216181935_deployments.yml index ce2b1a58420..24a06991d91 100644 --- a/config/metrics/counts_28d/20210216181935_deployments.yml +++ b/config/metrics/counts_28d/20210216181935_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181937_failed_deployments.yml b/config/metrics/counts_28d/20210216181937_failed_deployments.yml index e65ad155648..9ef4157ce2d 100644 --- a/config/metrics/counts_28d/20210216181937_failed_deployments.yml +++ b/config/metrics/counts_28d/20210216181937_failed_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181939_releases.yml b/config/metrics/counts_28d/20210216181939_releases.yml index 0c4bca5e63e..87c39db5271 100644 --- a/config/metrics/counts_28d/20210216181939_releases.yml +++ b/config/metrics/counts_28d/20210216181939_releases.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181941_successful_deployments.yml b/config/metrics/counts_28d/20210216181941_successful_deployments.yml index 28329075182..f21cb609208 100644 --- a/config/metrics/counts_28d/20210216181941_successful_deployments.yml +++ b/config/metrics/counts_28d/20210216181941_successful_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216181951_clusters_applications_runner.yml b/config/metrics/counts_28d/20210216181951_clusters_applications_runner.yml index d2660f28fed..22702146bc5 100644 --- a/config/metrics/counts_28d/20210216181951_clusters_applications_runner.yml +++ b/config/metrics/counts_28d/20210216181951_clusters_applications_runner.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::runner product_category: runner value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182034_deploy_keys.yml b/config/metrics/counts_28d/20210216182034_deploy_keys.yml index f076d4912ba..77902b38f6d 100644 --- a/config/metrics/counts_28d/20210216182034_deploy_keys.yml +++ b/config/metrics/counts_28d/20210216182034_deploy_keys.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182036_keys.yml b/config/metrics/counts_28d/20210216182036_keys.yml index 44aa4d871eb..63df27fe2e7 100644 --- a/config/metrics/counts_28d/20210216182036_keys.yml +++ b/config/metrics/counts_28d/20210216182036_keys.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182038_remote_mirrors.yml b/config/metrics/counts_28d/20210216182038_remote_mirrors.yml index 87c4714a7ca..888a25194b2 100644 --- a/config/metrics/counts_28d/20210216182038_remote_mirrors.yml +++ b/config/metrics/counts_28d/20210216182038_remote_mirrors.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182040_action_monthly_active_users_project_repo.yml b/config/metrics/counts_28d/20210216182040_action_monthly_active_users_project_repo.yml index e1a4788e27d..71b7af1eace 100644 --- a/config/metrics/counts_28d/20210216182040_action_monthly_active_users_project_repo.yml +++ b/config/metrics/counts_28d/20210216182040_action_monthly_active_users_project_repo.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216182041_action_monthly_active_users_git_write.yml b/config/metrics/counts_28d/20210216182041_action_monthly_active_users_git_write.yml index 9ea3514702c..28b03586bb8 100644 --- a/config/metrics/counts_28d/20210216182041_action_monthly_active_users_git_write.yml +++ b/config/metrics/counts_28d/20210216182041_action_monthly_active_users_git_write.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll distribution: diff --git a/config/metrics/counts_28d/20210216182051_protected_branches.yml b/config/metrics/counts_28d/20210216182051_protected_branches.yml index d4d4b59276a..1e9f66b0d22 100644 --- a/config/metrics/counts_28d/20210216182051_protected_branches.yml +++ b/config/metrics/counts_28d/20210216182051_protected_branches.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182102_wiki_action_monthly.yml b/config/metrics/counts_28d/20210216182102_wiki_action_monthly.yml index e923f8f500a..490c2260902 100644 --- a/config/metrics/counts_28d/20210216182102_wiki_action_monthly.yml +++ b/config/metrics/counts_28d/20210216182102_wiki_action_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216182106_design_action_monthly.yml b/config/metrics/counts_28d/20210216182106_design_action_monthly.yml index 0348e04eeb8..28807011aa2 100644 --- a/config/metrics/counts_28d/20210216182106_design_action_monthly.yml +++ b/config/metrics/counts_28d/20210216182106_design_action_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216182109_project_action_monthly.yml b/config/metrics/counts_28d/20210216182109_project_action_monthly.yml index 0f79d080205..4ef38c412a5 100644 --- a/config/metrics/counts_28d/20210216182109_project_action_monthly.yml +++ b/config/metrics/counts_28d/20210216182109_project_action_monthly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216182125_user_sast_jobs.yml b/config/metrics/counts_28d/20210216182125_user_sast_jobs.yml index 6d63d5ffacd..e8d8b469b2e 100644 --- a/config/metrics/counts_28d/20210216182125_user_sast_jobs.yml +++ b/config/metrics/counts_28d/20210216182125_user_sast_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: static_application_security_testing value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182127_user_secret_detection_jobs.yml b/config/metrics/counts_28d/20210216182127_user_secret_detection_jobs.yml index 2f6b4c6c04b..67a1c63b528 100644 --- a/config/metrics/counts_28d/20210216182127_user_secret_detection_jobs.yml +++ b/config/metrics/counts_28d/20210216182127_user_secret_detection_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: secret_detection value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182129_sast_pipeline.yml b/config/metrics/counts_28d/20210216182129_sast_pipeline.yml index 14e3cd5e3e6..2fd7a4bf683 100644 --- a/config/metrics/counts_28d/20210216182129_sast_pipeline.yml +++ b/config/metrics/counts_28d/20210216182129_sast_pipeline.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: static_application_security_testing value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182131_secret_detection_pipeline.yml b/config/metrics/counts_28d/20210216182131_secret_detection_pipeline.yml index cb2002851ff..1690987c446 100644 --- a/config/metrics/counts_28d/20210216182131_secret_detection_pipeline.yml +++ b/config/metrics/counts_28d/20210216182131_secret_detection_pipeline.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: secret_detection value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216182136_i_testing_test_case_parsed_monthly.yml b/config/metrics/counts_28d/20210216182136_i_testing_test_case_parsed_monthly.yml index e2835deaeae..72abf0b2165 100644 --- a/config/metrics/counts_28d/20210216182136_i_testing_test_case_parsed_monthly.yml +++ b/config/metrics/counts_28d/20210216182136_i_testing_test_case_parsed_monthly.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::testing product_category: code_testing value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216183159_projects_with_alerts_created.yml b/config/metrics/counts_28d/20210216183159_projects_with_alerts_created.yml index ae342aa8735..45f136efb76 100644 --- a/config/metrics/counts_28d/20210216183159_projects_with_alerts_created.yml +++ b/config/metrics/counts_28d/20210216183159_projects_with_alerts_created.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183627_omniauth_providers.yml b/config/metrics/counts_28d/20210216183627_omniauth_providers.yml index 16749f33b9a..54335b419e1 100644 --- a/config/metrics/counts_28d/20210216183627_omniauth_providers.yml +++ b/config/metrics/counts_28d/20210216183627_omniauth_providers.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183629_two-factor.yml b/config/metrics/counts_28d/20210216183629_two-factor.yml index b0c3a35e44a..df1e06e4d52 100644 --- a/config/metrics/counts_28d/20210216183629_two-factor.yml +++ b/config/metrics/counts_28d/20210216183629_two-factor.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183631_two-factor-via-u2f-device.yml b/config/metrics/counts_28d/20210216183631_two-factor-via-u2f-device.yml index faf8accfd67..5d3274c6452 100644 --- a/config/metrics/counts_28d/20210216183631_two-factor-via-u2f-device.yml +++ b/config/metrics/counts_28d/20210216183631_two-factor-via-u2f-device.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183633_two-factor-via-webauthn-device.yml b/config/metrics/counts_28d/20210216183633_two-factor-via-webauthn-device.yml index fc9cd55deaa..c6d88ac5928 100644 --- a/config/metrics/counts_28d/20210216183633_two-factor-via-webauthn-device.yml +++ b/config/metrics/counts_28d/20210216183633_two-factor-via-webauthn-device.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183634_standard.yml b/config/metrics/counts_28d/20210216183634_standard.yml index 646c6a14acc..9efb95d6c49 100644 --- a/config/metrics/counts_28d/20210216183634_standard.yml +++ b/config/metrics/counts_28d/20210216183634_standard.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183636_google_oauth2.yml b/config/metrics/counts_28d/20210216183636_google_oauth2.yml index 1abd4c17a6b..ed16c7a81fa 100644 --- a/config/metrics/counts_28d/20210216183636_google_oauth2.yml +++ b/config/metrics/counts_28d/20210216183636_google_oauth2.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183638_unique_users_all_imports.yml b/config/metrics/counts_28d/20210216183638_unique_users_all_imports.yml index ffebb3b62b1..95c4946756c 100644 --- a/config/metrics/counts_28d/20210216183638_unique_users_all_imports.yml +++ b/config/metrics/counts_28d/20210216183638_unique_users_all_imports.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183642_gitlab_v1.yml b/config/metrics/counts_28d/20210216183642_gitlab_v1.yml index 82f48f168cc..aa1eae2e0c0 100644 --- a/config/metrics/counts_28d/20210216183642_gitlab_v1.yml +++ b/config/metrics/counts_28d/20210216183642_gitlab_v1.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183644_gitlab_project.yml b/config/metrics/counts_28d/20210216183644_gitlab_project.yml index 82c60d0091d..a370f8d5f52 100644 --- a/config/metrics/counts_28d/20210216183644_gitlab_project.yml +++ b/config/metrics/counts_28d/20210216183644_gitlab_project.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183646_gitlab.yml b/config/metrics/counts_28d/20210216183646_gitlab.yml index 59d7247576c..a19c8d6ac0e 100644 --- a/config/metrics/counts_28d/20210216183646_gitlab.yml +++ b/config/metrics/counts_28d/20210216183646_gitlab.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183648_github.yml b/config/metrics/counts_28d/20210216183648_github.yml index 7e139972583..efa4cca301f 100644 --- a/config/metrics/counts_28d/20210216183648_github.yml +++ b/config/metrics/counts_28d/20210216183648_github.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183650_bitbucket.yml b/config/metrics/counts_28d/20210216183650_bitbucket.yml index f19b9dbb410..5731b6b3cae 100644 --- a/config/metrics/counts_28d/20210216183650_bitbucket.yml +++ b/config/metrics/counts_28d/20210216183650_bitbucket.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183652_bitbucket_server.yml b/config/metrics/counts_28d/20210216183652_bitbucket_server.yml index 57fc8ec66ae..be4e45b8975 100644 --- a/config/metrics/counts_28d/20210216183652_bitbucket_server.yml +++ b/config/metrics/counts_28d/20210216183652_bitbucket_server.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183653_gitea.yml b/config/metrics/counts_28d/20210216183653_gitea.yml index d9729b1fa1f..996749bba7d 100644 --- a/config/metrics/counts_28d/20210216183653_gitea.yml +++ b/config/metrics/counts_28d/20210216183653_gitea.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183655_git.yml b/config/metrics/counts_28d/20210216183655_git.yml index 087ce7bc3d8..20fde277b5d 100644 --- a/config/metrics/counts_28d/20210216183655_git.yml +++ b/config/metrics/counts_28d/20210216183655_git.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183657_manifest.yml b/config/metrics/counts_28d/20210216183657_manifest.yml index 83ddd8d1f42..00ded898baa 100644 --- a/config/metrics/counts_28d/20210216183657_manifest.yml +++ b/config/metrics/counts_28d/20210216183657_manifest.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183659_gitlab_migration.yml b/config/metrics/counts_28d/20210216183659_gitlab_migration.yml index 6408e490753..a27be901a49 100644 --- a/config/metrics/counts_28d/20210216183659_gitlab_migration.yml +++ b/config/metrics/counts_28d/20210216183659_gitlab_migration.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183701_jira.yml b/config/metrics/counts_28d/20210216183701_jira.yml index 1df00f149c3..c8f45b9f926 100644 --- a/config/metrics/counts_28d/20210216183701_jira.yml +++ b/config/metrics/counts_28d/20210216183701_jira.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183703_fogbugz.yml b/config/metrics/counts_28d/20210216183703_fogbugz.yml index 460d47d5d03..ea7ecc67a8b 100644 --- a/config/metrics/counts_28d/20210216183703_fogbugz.yml +++ b/config/metrics/counts_28d/20210216183703_fogbugz.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183705_phabricator.yml b/config/metrics/counts_28d/20210216183705_phabricator.yml index 889490dcd31..b982bdace5a 100644 --- a/config/metrics/counts_28d/20210216183705_phabricator.yml +++ b/config/metrics/counts_28d/20210216183705_phabricator.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183707_csv.yml b/config/metrics/counts_28d/20210216183707_csv.yml index 8f8c70ac760..a43bc380daa 100644 --- a/config/metrics/counts_28d/20210216183707_csv.yml +++ b/config/metrics/counts_28d/20210216183707_csv.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183709_group_import.yml b/config/metrics/counts_28d/20210216183709_group_import.yml index 82472816524..7485b5a0b4a 100644 --- a/config/metrics/counts_28d/20210216183709_group_import.yml +++ b/config/metrics/counts_28d/20210216183709_group_import.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183711_gitlab_migration.yml b/config/metrics/counts_28d/20210216183711_gitlab_migration.yml index 114ba1d41fb..b44b46ddf1d 100644 --- a/config/metrics/counts_28d/20210216183711_gitlab_migration.yml +++ b/config/metrics/counts_28d/20210216183711_gitlab_migration.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: 28d data_source: database distribution: diff --git a/config/metrics/counts_28d/20210216183922_search_unique_visits_for_any_target_monthly.yml b/config/metrics/counts_28d/20210216183922_search_unique_visits_for_any_target_monthly.yml index 91cbe6f1af5..b4e45462f71 100644 --- a/config/metrics/counts_28d/20210216183922_search_unique_visits_for_any_target_monthly.yml +++ b/config/metrics/counts_28d/20210216183922_search_unique_visits_for_any_target_monthly.yml @@ -10,7 +10,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184024_g_edit_by_sse_monthly.yml b/config/metrics/counts_28d/20210216184024_g_edit_by_sse_monthly.yml index 4726da80f2f..1a1fbec4f8c 100644 --- a/config/metrics/counts_28d/20210216184024_g_edit_by_sse_monthly.yml +++ b/config/metrics/counts_28d/20210216184024_g_edit_by_sse_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184047_git_write_action_monthly.yml b/config/metrics/counts_28d/20210216184047_git_write_action_monthly.yml index 123d1009d2a..ed703302451 100644 --- a/config/metrics/counts_28d/20210216184047_git_write_action_monthly.yml +++ b/config/metrics/counts_28d/20210216184047_git_write_action_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184255_i_snippets_show_monthly.yml b/config/metrics/counts_28d/20210216184255_i_snippets_show_monthly.yml index fd4ada20acb..70fc51b3d43 100644 --- a/config/metrics/counts_28d/20210216184255_i_snippets_show_monthly.yml +++ b/config/metrics/counts_28d/20210216184255_i_snippets_show_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184259_p_terraform_state_api_unique_users_monthly.yml b/config/metrics/counts_28d/20210216184259_p_terraform_state_api_unique_users_monthly.yml index cebe0f4fee0..4f6aeb09d70 100644 --- a/config/metrics/counts_28d/20210216184259_p_terraform_state_api_unique_users_monthly.yml +++ b/config/metrics/counts_28d/20210216184259_p_terraform_state_api_unique_users_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184303_o_pipeline_authoring_unique_users_committing_ciconfigfile_monthly.yml b/config/metrics/counts_28d/20210216184303_o_pipeline_authoring_unique_users_committing_ciconfigfile_monthly.yml index 298f974295a..6c33950166a 100644 --- a/config/metrics/counts_28d/20210216184303_o_pipeline_authoring_unique_users_committing_ciconfigfile_monthly.yml +++ b/config/metrics/counts_28d/20210216184303_o_pipeline_authoring_unique_users_committing_ciconfigfile_monthly.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184312_i_code_review_user_toggled_task_item_status_monthly.yml b/config/metrics/counts_28d/20210216184312_i_code_review_user_toggled_task_item_status_monthly.yml index 22e1dc89ecf..72617203f6a 100644 --- a/config/metrics/counts_28d/20210216184312_i_code_review_user_toggled_task_item_status_monthly.yml +++ b/config/metrics/counts_28d/20210216184312_i_code_review_user_toggled_task_item_status_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184322_i_code_review_user_approve_mr_monthly.yml b/config/metrics/counts_28d/20210216184322_i_code_review_user_approve_mr_monthly.yml index 06d07cd0a1f..f3c4a921afa 100644 --- a/config/metrics/counts_28d/20210216184322_i_code_review_user_approve_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216184322_i_code_review_user_approve_mr_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184326_i_code_review_user_unapprove_mr_monthly.yml b/config/metrics/counts_28d/20210216184326_i_code_review_user_unapprove_mr_monthly.yml index 675942f8a30..ab4d4c1bfc7 100644 --- a/config/metrics/counts_28d/20210216184326_i_code_review_user_unapprove_mr_monthly.yml +++ b/config/metrics/counts_28d/20210216184326_i_code_review_user_unapprove_mr_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184330_i_code_review_user_resolve_thread_monthly.yml b/config/metrics/counts_28d/20210216184330_i_code_review_user_resolve_thread_monthly.yml index 0f943b0eeec..9f2ab332a08 100644 --- a/config/metrics/counts_28d/20210216184330_i_code_review_user_resolve_thread_monthly.yml +++ b/config/metrics/counts_28d/20210216184330_i_code_review_user_resolve_thread_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184334_i_code_review_user_unresolve_thread_monthly.yml b/config/metrics/counts_28d/20210216184334_i_code_review_user_unresolve_thread_monthly.yml index a39785eb250..83644eff397 100644 --- a/config/metrics/counts_28d/20210216184334_i_code_review_user_unresolve_thread_monthly.yml +++ b/config/metrics/counts_28d/20210216184334_i_code_review_user_unresolve_thread_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184338_i_code_review_edit_mr_title_monthly.yml b/config/metrics/counts_28d/20210216184338_i_code_review_edit_mr_title_monthly.yml index 750030701ca..df7acea15f8 100644 --- a/config/metrics/counts_28d/20210216184338_i_code_review_edit_mr_title_monthly.yml +++ b/config/metrics/counts_28d/20210216184338_i_code_review_edit_mr_title_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184342_i_code_review_edit_mr_desc_monthly.yml b/config/metrics/counts_28d/20210216184342_i_code_review_edit_mr_desc_monthly.yml index 545971519eb..02980ed84f8 100644 --- a/config/metrics/counts_28d/20210216184342_i_code_review_edit_mr_desc_monthly.yml +++ b/config/metrics/counts_28d/20210216184342_i_code_review_edit_mr_desc_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184353_i_code_review_user_create_review_note_monthly.yml b/config/metrics/counts_28d/20210216184353_i_code_review_user_create_review_note_monthly.yml index aab964e0ad3..cb0ba9c4785 100644 --- a/config/metrics/counts_28d/20210216184353_i_code_review_user_create_review_note_monthly.yml +++ b/config/metrics/counts_28d/20210216184353_i_code_review_user_create_review_note_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184357_i_code_review_user_publish_review_monthly.yml b/config/metrics/counts_28d/20210216184357_i_code_review_user_publish_review_monthly.yml index 57d0a40be56..78228a1da48 100644 --- a/config/metrics/counts_28d/20210216184357_i_code_review_user_publish_review_monthly.yml +++ b/config/metrics/counts_28d/20210216184357_i_code_review_user_publish_review_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184401_i_code_review_user_create_multiline_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216184401_i_code_review_user_create_multiline_mr_comment_monthly.yml index 3669febc3b6..4a4853a7520 100644 --- a/config/metrics/counts_28d/20210216184401_i_code_review_user_create_multiline_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216184401_i_code_review_user_create_multiline_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184405_i_code_review_user_edit_multiline_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216184405_i_code_review_user_edit_multiline_mr_comment_monthly.yml index 841b684c901..36b2de72379 100644 --- a/config/metrics/counts_28d/20210216184405_i_code_review_user_edit_multiline_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216184405_i_code_review_user_edit_multiline_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184409_i_code_review_user_remove_multiline_mr_comment_monthly.yml b/config/metrics/counts_28d/20210216184409_i_code_review_user_remove_multiline_mr_comment_monthly.yml index ae50ab0a27f..7cc2b9b2cc2 100644 --- a/config/metrics/counts_28d/20210216184409_i_code_review_user_remove_multiline_mr_comment_monthly.yml +++ b/config/metrics/counts_28d/20210216184409_i_code_review_user_remove_multiline_mr_comment_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184418_i_code_review_user_assigned_monthly.yml b/config/metrics/counts_28d/20210216184418_i_code_review_user_assigned_monthly.yml index 9497033db45..7e8db2be0b7 100644 --- a/config/metrics/counts_28d/20210216184418_i_code_review_user_assigned_monthly.yml +++ b/config/metrics/counts_28d/20210216184418_i_code_review_user_assigned_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184422_i_code_review_user_marked_as_draft_monthly.yml b/config/metrics/counts_28d/20210216184422_i_code_review_user_marked_as_draft_monthly.yml index 2cb3ab24269..f755351eb1e 100644 --- a/config/metrics/counts_28d/20210216184422_i_code_review_user_marked_as_draft_monthly.yml +++ b/config/metrics/counts_28d/20210216184422_i_code_review_user_marked_as_draft_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184426_i_code_review_user_unmarked_as_draft_monthly.yml b/config/metrics/counts_28d/20210216184426_i_code_review_user_unmarked_as_draft_monthly.yml index 3d0b22eff1b..a5685f7634a 100644 --- a/config/metrics/counts_28d/20210216184426_i_code_review_user_unmarked_as_draft_monthly.yml +++ b/config/metrics/counts_28d/20210216184426_i_code_review_user_unmarked_as_draft_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184430_i_code_review_user_review_requested_monthly.yml b/config/metrics/counts_28d/20210216184430_i_code_review_user_review_requested_monthly.yml index 5be14acc358..9e6f61a755b 100644 --- a/config/metrics/counts_28d/20210216184430_i_code_review_user_review_requested_monthly.yml +++ b/config/metrics/counts_28d/20210216184430_i_code_review_user_review_requested_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184434_i_code_review_user_approval_rule_added_monthly.yml b/config/metrics/counts_28d/20210216184434_i_code_review_user_approval_rule_added_monthly.yml index e38b2741954..35562e095c8 100644 --- a/config/metrics/counts_28d/20210216184434_i_code_review_user_approval_rule_added_monthly.yml +++ b/config/metrics/counts_28d/20210216184434_i_code_review_user_approval_rule_added_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184438_i_code_review_user_approval_rule_deleted_monthly.yml b/config/metrics/counts_28d/20210216184438_i_code_review_user_approval_rule_deleted_monthly.yml index 0fd568681c8..023f241596e 100644 --- a/config/metrics/counts_28d/20210216184438_i_code_review_user_approval_rule_deleted_monthly.yml +++ b/config/metrics/counts_28d/20210216184438_i_code_review_user_approval_rule_deleted_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184442_i_code_review_user_approval_rule_edited_monthly.yml b/config/metrics/counts_28d/20210216184442_i_code_review_user_approval_rule_edited_monthly.yml index e159663d14c..eae629b21f3 100644 --- a/config/metrics/counts_28d/20210216184442_i_code_review_user_approval_rule_edited_monthly.yml +++ b/config/metrics/counts_28d/20210216184442_i_code_review_user_approval_rule_edited_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184446_i_code_review_user_vs_code_api_request_monthly.yml b/config/metrics/counts_28d/20210216184446_i_code_review_user_vs_code_api_request_monthly.yml index d8ac193b822..f833466e32c 100644 --- a/config/metrics/counts_28d/20210216184446_i_code_review_user_vs_code_api_request_monthly.yml +++ b/config/metrics/counts_28d/20210216184446_i_code_review_user_vs_code_api_request_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: editor_extension value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184450_i_code_review_user_create_mr_from_issue_monthly.yml b/config/metrics/counts_28d/20210216184450_i_code_review_user_create_mr_from_issue_monthly.yml index 68334ef0c55..25a1a2948db 100644 --- a/config/metrics/counts_28d/20210216184450_i_code_review_user_create_mr_from_issue_monthly.yml +++ b/config/metrics/counts_28d/20210216184450_i_code_review_user_create_mr_from_issue_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184454_code_review_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216184454_code_review_total_unique_counts_monthly.yml index 46e7eb0bb9b..c4c390d16e6 100644 --- a/config/metrics/counts_28d/20210216184454_code_review_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216184454_code_review_total_unique_counts_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184458_p_ci_templates_implicit_auto_devops_monthly.yml b/config/metrics/counts_28d/20210216184458_p_ci_templates_implicit_auto_devops_monthly.yml index 400542cfffe..09590b677f6 100644 --- a/config/metrics/counts_28d/20210216184458_p_ci_templates_implicit_auto_devops_monthly.yml +++ b/config/metrics/counts_28d/20210216184458_p_ci_templates_implicit_auto_devops_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184502_p_ci_templates_implicit_auto_devops_build_monthly.yml b/config/metrics/counts_28d/20210216184502_p_ci_templates_implicit_auto_devops_build_monthly.yml index 9c5bf3d9d50..6e944dce726 100644 --- a/config/metrics/counts_28d/20210216184502_p_ci_templates_implicit_auto_devops_build_monthly.yml +++ b/config/metrics/counts_28d/20210216184502_p_ci_templates_implicit_auto_devops_build_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184506_p_ci_templates_implicit_auto_devops_deploy_monthly.yml b/config/metrics/counts_28d/20210216184506_p_ci_templates_implicit_auto_devops_deploy_monthly.yml index 367e5b8900e..940ef5deb65 100644 --- a/config/metrics/counts_28d/20210216184506_p_ci_templates_implicit_auto_devops_deploy_monthly.yml +++ b/config/metrics/counts_28d/20210216184506_p_ci_templates_implicit_auto_devops_deploy_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184510_p_ci_templates_implicit_security_sast_monthly.yml b/config/metrics/counts_28d/20210216184510_p_ci_templates_implicit_security_sast_monthly.yml index 76233e628db..822b436dfdd 100644 --- a/config/metrics/counts_28d/20210216184510_p_ci_templates_implicit_security_sast_monthly.yml +++ b/config/metrics/counts_28d/20210216184510_p_ci_templates_implicit_security_sast_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: SAST value_type: number -status: data_available +status: active milestone: "<13.9" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_28d/20210216184513_p_ci_templates_implicit_security_secret_detection_monthly.yml b/config/metrics/counts_28d/20210216184513_p_ci_templates_implicit_security_secret_detection_monthly.yml index 98624e2c83c..57831d3a9dc 100644 --- a/config/metrics/counts_28d/20210216184513_p_ci_templates_implicit_security_secret_detection_monthly.yml +++ b/config/metrics/counts_28d/20210216184513_p_ci_templates_implicit_security_secret_detection_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: secret_detection value_type: number -status: data_available +status: active milestone: "<13.9" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_28d/20210216184517_p_ci_templates_5_min_production_app_monthly.yml b/config/metrics/counts_28d/20210216184517_p_ci_templates_5_min_production_app_monthly.yml index 21811eec3e7..0ae42fcecc0 100644 --- a/config/metrics/counts_28d/20210216184517_p_ci_templates_5_min_production_app_monthly.yml +++ b/config/metrics/counts_28d/20210216184517_p_ci_templates_5_min_production_app_monthly.yml @@ -7,7 +7,7 @@ product_stage: deploy product_group: group::5-min-app product_category: five_minute_production_app value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184523_p_ci_templates_auto_devops_monthly.yml b/config/metrics/counts_28d/20210216184523_p_ci_templates_auto_devops_monthly.yml index 19c73df2fcd..6ca23b2d634 100644 --- a/config/metrics/counts_28d/20210216184523_p_ci_templates_auto_devops_monthly.yml +++ b/config/metrics/counts_28d/20210216184523_p_ci_templates_auto_devops_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184526_p_ci_templates_aws_cf_deploy_ec2_monthly.yml b/config/metrics/counts_28d/20210216184526_p_ci_templates_aws_cf_deploy_ec2_monthly.yml index 41ec8a7cfc3..a87e1224745 100644 --- a/config/metrics/counts_28d/20210216184526_p_ci_templates_aws_cf_deploy_ec2_monthly.yml +++ b/config/metrics/counts_28d/20210216184526_p_ci_templates_aws_cf_deploy_ec2_monthly.yml @@ -8,7 +8,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184530_p_ci_templates_aws_deploy_ecs_monthly.yml b/config/metrics/counts_28d/20210216184530_p_ci_templates_aws_deploy_ecs_monthly.yml index 9771f969aaf..0645894329a 100644 --- a/config/metrics/counts_28d/20210216184530_p_ci_templates_aws_deploy_ecs_monthly.yml +++ b/config/metrics/counts_28d/20210216184530_p_ci_templates_aws_deploy_ecs_monthly.yml @@ -8,7 +8,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184534_p_ci_templates_auto_devops_build_monthly.yml b/config/metrics/counts_28d/20210216184534_p_ci_templates_auto_devops_build_monthly.yml index 555a9a3cdd1..d6333260017 100644 --- a/config/metrics/counts_28d/20210216184534_p_ci_templates_auto_devops_build_monthly.yml +++ b/config/metrics/counts_28d/20210216184534_p_ci_templates_auto_devops_build_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184538_p_ci_templates_auto_devops_deploy_monthly.yml b/config/metrics/counts_28d/20210216184538_p_ci_templates_auto_devops_deploy_monthly.yml index 0571f374494..792d41e3bbd 100644 --- a/config/metrics/counts_28d/20210216184538_p_ci_templates_auto_devops_deploy_monthly.yml +++ b/config/metrics/counts_28d/20210216184538_p_ci_templates_auto_devops_deploy_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184542_p_ci_templates_auto_devops_deploy_latest_monthly.yml b/config/metrics/counts_28d/20210216184542_p_ci_templates_auto_devops_deploy_latest_monthly.yml index bed203b73e1..deafb216e99 100644 --- a/config/metrics/counts_28d/20210216184542_p_ci_templates_auto_devops_deploy_latest_monthly.yml +++ b/config/metrics/counts_28d/20210216184542_p_ci_templates_auto_devops_deploy_latest_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184546_p_ci_templates_security_sast_monthly.yml b/config/metrics/counts_28d/20210216184546_p_ci_templates_security_sast_monthly.yml index e092d76ff2d..6c838d74576 100644 --- a/config/metrics/counts_28d/20210216184546_p_ci_templates_security_sast_monthly.yml +++ b/config/metrics/counts_28d/20210216184546_p_ci_templates_security_sast_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: SAST value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184551_p_ci_templates_security_secret_detection_monthly.yml b/config/metrics/counts_28d/20210216184551_p_ci_templates_security_secret_detection_monthly.yml index e8c9a87bf31..cda8ebf1550 100644 --- a/config/metrics/counts_28d/20210216184551_p_ci_templates_security_secret_detection_monthly.yml +++ b/config/metrics/counts_28d/20210216184551_p_ci_templates_security_secret_detection_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: secret_detection value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184555_p_ci_templates_terraform_base_latest_monthly.yml b/config/metrics/counts_28d/20210216184555_p_ci_templates_terraform_base_latest_monthly.yml index c8966b080d6..1831c8827f3 100644 --- a/config/metrics/counts_28d/20210216184555_p_ci_templates_terraform_base_latest_monthly.yml +++ b/config/metrics/counts_28d/20210216184555_p_ci_templates_terraform_base_latest_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184803_quickactions_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216184803_quickactions_total_unique_counts_monthly.yml index 5768df2725c..23f3d923576 100644 --- a/config/metrics/counts_28d/20210216184803_quickactions_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216184803_quickactions_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184806_i_package_composer_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184806_i_package_composer_deploy_token_monthly.yml index 8a74677d8f2..9f4cfe0fc13 100644 --- a/config/metrics/counts_28d/20210216184806_i_package_composer_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184806_i_package_composer_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184810_i_package_conan_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184810_i_package_conan_deploy_token_monthly.yml index d7d45f39f0c..89a54558bd7 100644 --- a/config/metrics/counts_28d/20210216184810_i_package_conan_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184810_i_package_conan_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184830_i_package_maven_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184830_i_package_maven_deploy_token_monthly.yml index f113e099d97..c6e71e4a61b 100644 --- a/config/metrics/counts_28d/20210216184830_i_package_maven_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184830_i_package_maven_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184834_i_package_npm_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184834_i_package_npm_deploy_token_monthly.yml index 25f4f42b706..143a840761c 100644 --- a/config/metrics/counts_28d/20210216184834_i_package_npm_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184834_i_package_npm_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184838_i_package_nuget_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184838_i_package_nuget_deploy_token_monthly.yml index cd8a418506f..cb7c6ae2e5b 100644 --- a/config/metrics/counts_28d/20210216184838_i_package_nuget_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184838_i_package_nuget_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184842_i_package_pypi_deploy_token_monthly.yml b/config/metrics/counts_28d/20210216184842_i_package_pypi_deploy_token_monthly.yml index 51a7de1277d..cadeb269204 100644 --- a/config/metrics/counts_28d/20210216184842_i_package_pypi_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210216184842_i_package_pypi_deploy_token_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184850_deploy_token_packages_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216184850_deploy_token_packages_total_unique_counts_monthly.yml index c1b9ad3b64b..344f35fa353 100644 --- a/config/metrics/counts_28d/20210216184850_deploy_token_packages_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216184850_deploy_token_packages_total_unique_counts_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184854_i_package_composer_user_monthly.yml b/config/metrics/counts_28d/20210216184854_i_package_composer_user_monthly.yml index 0fcc456c853..f9baba603e9 100644 --- a/config/metrics/counts_28d/20210216184854_i_package_composer_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184854_i_package_composer_user_monthly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184858_i_package_conan_user_monthly.yml b/config/metrics/counts_28d/20210216184858_i_package_conan_user_monthly.yml index e327c81af55..8a50ea78fe2 100644 --- a/config/metrics/counts_28d/20210216184858_i_package_conan_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184858_i_package_conan_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184917_i_package_maven_user_monthly.yml b/config/metrics/counts_28d/20210216184917_i_package_maven_user_monthly.yml index d24e48428af..3fdb957ef0d 100644 --- a/config/metrics/counts_28d/20210216184917_i_package_maven_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184917_i_package_maven_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184921_i_package_npm_user_monthly.yml b/config/metrics/counts_28d/20210216184921_i_package_npm_user_monthly.yml index 4ad5a3d45c5..f945fbf5266 100644 --- a/config/metrics/counts_28d/20210216184921_i_package_npm_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184921_i_package_npm_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184925_i_package_nuget_user_monthly.yml b/config/metrics/counts_28d/20210216184925_i_package_nuget_user_monthly.yml index dcfdccce7fe..782e7788eb2 100644 --- a/config/metrics/counts_28d/20210216184925_i_package_nuget_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184925_i_package_nuget_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184929_i_package_pypi_user_monthly.yml b/config/metrics/counts_28d/20210216184929_i_package_pypi_user_monthly.yml index c09f51d3e19..d86147526e0 100644 --- a/config/metrics/counts_28d/20210216184929_i_package_pypi_user_monthly.yml +++ b/config/metrics/counts_28d/20210216184929_i_package_pypi_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184937_user_packages_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216184937_user_packages_total_unique_counts_monthly.yml index c96e1d2f5dc..98679813670 100644 --- a/config/metrics/counts_28d/20210216184937_user_packages_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216184937_user_packages_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184941_i_ecosystem_jira_service_close_issue_monthly.yml b/config/metrics/counts_28d/20210216184941_i_ecosystem_jira_service_close_issue_monthly.yml index 9aa85bc0f28..7c4a4c8b032 100644 --- a/config/metrics/counts_28d/20210216184941_i_ecosystem_jira_service_close_issue_monthly.yml +++ b/config/metrics/counts_28d/20210216184941_i_ecosystem_jira_service_close_issue_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184945_i_ecosystem_jira_service_cross_reference_monthly.yml b/config/metrics/counts_28d/20210216184945_i_ecosystem_jira_service_cross_reference_monthly.yml index 48a85607a05..2e41282a9cf 100644 --- a/config/metrics/counts_28d/20210216184945_i_ecosystem_jira_service_cross_reference_monthly.yml +++ b/config/metrics/counts_28d/20210216184945_i_ecosystem_jira_service_cross_reference_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210216184957_ecosystem_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210216184957_ecosystem_total_unique_counts_monthly.yml index 7a024872b25..1c89217829c 100644 --- a/config/metrics/counts_28d/20210216184957_ecosystem_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210216184957_ecosystem_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_28d/20210222041219_i_quickactions_invite_email_single_monthly.yml b/config/metrics/counts_28d/20210222041219_i_quickactions_invite_email_single_monthly.yml index 0ed31fa36d7..660f3675359 100644 --- a/config/metrics/counts_28d/20210222041219_i_quickactions_invite_email_single_monthly.yml +++ b/config/metrics/counts_28d/20210222041219_i_quickactions_invite_email_single_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: issue_tracking value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/49264 time_frame: 28d diff --git a/config/metrics/counts_28d/20210222041235_i_quickactions_invite_email_multiple_monthly.yml b/config/metrics/counts_28d/20210222041235_i_quickactions_invite_email_multiple_monthly.yml index e7e6ecd5d3c..bd178cb07bc 100644 --- a/config/metrics/counts_28d/20210222041235_i_quickactions_invite_email_multiple_monthly.yml +++ b/config/metrics/counts_28d/20210222041235_i_quickactions_invite_email_multiple_monthly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: issue_tracking value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/49264 time_frame: 28d diff --git a/config/metrics/counts_28d/20210301102134_i_code_review_user_time_estimate_changed_monthly.yml b/config/metrics/counts_28d/20210301102134_i_code_review_user_time_estimate_changed_monthly.yml index c6447db3ccb..2a7484f710a 100644 --- a/config/metrics/counts_28d/20210301102134_i_code_review_user_time_estimate_changed_monthly.yml +++ b/config/metrics/counts_28d/20210301102134_i_code_review_user_time_estimate_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55046 time_frame: 28d diff --git a/config/metrics/counts_28d/20210301102204_i_code_review_user_time_spent_changed_monthly.yml b/config/metrics/counts_28d/20210301102204_i_code_review_user_time_spent_changed_monthly.yml index 277060a93a9..febb6ea8464 100644 --- a/config/metrics/counts_28d/20210301102204_i_code_review_user_time_spent_changed_monthly.yml +++ b/config/metrics/counts_28d/20210301102204_i_code_review_user_time_spent_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55046 time_frame: 28d diff --git a/config/metrics/counts_28d/20210301103859_i_code_review_user_mr_discussion_locked_monthly.yml b/config/metrics/counts_28d/20210301103859_i_code_review_user_mr_discussion_locked_monthly.yml index e9b8ac665ac..d5b943fbed4 100644 --- a/config/metrics/counts_28d/20210301103859_i_code_review_user_mr_discussion_locked_monthly.yml +++ b/config/metrics/counts_28d/20210301103859_i_code_review_user_mr_discussion_locked_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069 time_frame: 28d diff --git a/config/metrics/counts_28d/20210301103925_i_code_review_user_mr_discussion_unlocked_monthly.yml b/config/metrics/counts_28d/20210301103925_i_code_review_user_mr_discussion_unlocked_monthly.yml index b1380590eb2..022047e7d0e 100644 --- a/config/metrics/counts_28d/20210301103925_i_code_review_user_mr_discussion_unlocked_monthly.yml +++ b/config/metrics/counts_28d/20210301103925_i_code_review_user_mr_discussion_unlocked_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069 time_frame: 28d diff --git a/config/metrics/counts_28d/20210301144228_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_monthly.yml b/config/metrics/counts_28d/20210301144228_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_monthly.yml index 3f71aff89d5..41e0d1c4a4d 100644 --- a/config/metrics/counts_28d/20210301144228_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_monthly.yml +++ b/config/metrics/counts_28d/20210301144228_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54707 time_frame: 28d diff --git a/config/metrics/counts_28d/20210302110520_i_code_review_user_milestone_changed_monthly.yml b/config/metrics/counts_28d/20210302110520_i_code_review_user_milestone_changed_monthly.yml index e5530f3a5de..6fc1b724468 100644 --- a/config/metrics/counts_28d/20210302110520_i_code_review_user_milestone_changed_monthly.yml +++ b/config/metrics/counts_28d/20210302110520_i_code_review_user_milestone_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55484 time_frame: 28d diff --git a/config/metrics/counts_28d/20210302110607_i_code_review_user_labels_changed_monthly.yml b/config/metrics/counts_28d/20210302110607_i_code_review_user_labels_changed_monthly.yml index 7ce83b31a76..644a09ffc23 100644 --- a/config/metrics/counts_28d/20210302110607_i_code_review_user_labels_changed_monthly.yml +++ b/config/metrics/counts_28d/20210302110607_i_code_review_user_labels_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55484 time_frame: 28d diff --git a/config/metrics/counts_28d/20210302114145_i_code_review_user_assignees_changed_monthly.yml b/config/metrics/counts_28d/20210302114145_i_code_review_user_assignees_changed_monthly.yml index c0dd76951a5..a72f0675c6f 100644 --- a/config/metrics/counts_28d/20210302114145_i_code_review_user_assignees_changed_monthly.yml +++ b/config/metrics/counts_28d/20210302114145_i_code_review_user_assignees_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55486 time_frame: 28d diff --git a/config/metrics/counts_28d/20210302114219_i_code_review_user_reviewers_changed_monthly.yml b/config/metrics/counts_28d/20210302114219_i_code_review_user_reviewers_changed_monthly.yml index 60ad9493fee..679cef614ef 100644 --- a/config/metrics/counts_28d/20210302114219_i_code_review_user_reviewers_changed_monthly.yml +++ b/config/metrics/counts_28d/20210302114219_i_code_review_user_reviewers_changed_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55486 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303150507_i_ecosystem_slack_service_issue_notification_monthly.yml b/config/metrics/counts_28d/20210303150507_i_ecosystem_slack_service_issue_notification_monthly.yml index 61bacd93dd1..5bee115d9d3 100644 --- a/config/metrics/counts_28d/20210303150507_i_ecosystem_slack_service_issue_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303150507_i_ecosystem_slack_service_issue_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303150654_i_ecosystem_slack_service_push_notification_monthly.yml b/config/metrics/counts_28d/20210303150654_i_ecosystem_slack_service_push_notification_monthly.yml index 2741c56f551..3860335ef8e 100644 --- a/config/metrics/counts_28d/20210303150654_i_ecosystem_slack_service_push_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303150654_i_ecosystem_slack_service_push_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303150912_i_ecosystem_slack_service_deployment_notification_monthly.yml b/config/metrics/counts_28d/20210303150912_i_ecosystem_slack_service_deployment_notification_monthly.yml index 42ec4cb35d4..69b0bcb7181 100644 --- a/config/metrics/counts_28d/20210303150912_i_ecosystem_slack_service_deployment_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303150912_i_ecosystem_slack_service_deployment_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303151609_i_ecosystem_slack_service_wiki_page_notification_monthly.yml b/config/metrics/counts_28d/20210303151609_i_ecosystem_slack_service_wiki_page_notification_monthly.yml index 270409ed250..3a2d77b811a 100644 --- a/config/metrics/counts_28d/20210303151609_i_ecosystem_slack_service_wiki_page_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303151609_i_ecosystem_slack_service_wiki_page_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303151831_i_ecosystem_slack_service_merge_request_notification_monthly.yml b/config/metrics/counts_28d/20210303151831_i_ecosystem_slack_service_merge_request_notification_monthly.yml index aee3342e1e0..e9f1ad972f7 100644 --- a/config/metrics/counts_28d/20210303151831_i_ecosystem_slack_service_merge_request_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303151831_i_ecosystem_slack_service_merge_request_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303151946_i_ecosystem_slack_service_note_notification_monthly.yml b/config/metrics/counts_28d/20210303151946_i_ecosystem_slack_service_note_notification_monthly.yml index 9aa3fa248dc..d30874198d0 100644 --- a/config/metrics/counts_28d/20210303151946_i_ecosystem_slack_service_note_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303151946_i_ecosystem_slack_service_note_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303152049_i_ecosystem_slack_service_tag_push_notification_monthly.yml b/config/metrics/counts_28d/20210303152049_i_ecosystem_slack_service_tag_push_notification_monthly.yml index 5144abd28ed..3f58d21ae15 100644 --- a/config/metrics/counts_28d/20210303152049_i_ecosystem_slack_service_tag_push_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303152049_i_ecosystem_slack_service_tag_push_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303152144_i_ecosystem_slack_service_confidential_note_notification_monthly.yml b/config/metrics/counts_28d/20210303152144_i_ecosystem_slack_service_confidential_note_notification_monthly.yml index 530f26aefa3..516b1385474 100644 --- a/config/metrics/counts_28d/20210303152144_i_ecosystem_slack_service_confidential_note_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303152144_i_ecosystem_slack_service_confidential_note_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303152233_i_ecosystem_slack_service_confidential_issue_notification_monthly.yml b/config/metrics/counts_28d/20210303152233_i_ecosystem_slack_service_confidential_issue_notification_monthly.yml index 10e5deefae6..e959116a4fa 100644 --- a/config/metrics/counts_28d/20210303152233_i_ecosystem_slack_service_confidential_issue_notification_monthly.yml +++ b/config/metrics/counts_28d/20210303152233_i_ecosystem_slack_service_confidential_issue_notification_monthly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303154626_i_package_rubygems_deploy_token_monthly.yml b/config/metrics/counts_28d/20210303154626_i_package_rubygems_deploy_token_monthly.yml index 608cb715558..07fd63aacec 100644 --- a/config/metrics/counts_28d/20210303154626_i_package_rubygems_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210303154626_i_package_rubygems_deploy_token_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: 28d diff --git a/config/metrics/counts_28d/20210303154654_i_package_rubygems_user_monthly.yml b/config/metrics/counts_28d/20210303154654_i_package_rubygems_user_monthly.yml index 2a9d959abba..e7ecbddda51 100644 --- a/config/metrics/counts_28d/20210303154654_i_package_rubygems_user_monthly.yml +++ b/config/metrics/counts_28d/20210303154654_i_package_rubygems_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: 28d diff --git a/config/metrics/counts_28d/20210409095855_users_expanding_secure_security_report_monthly.yml b/config/metrics/counts_28d/20210409095855_users_expanding_secure_security_report_monthly.yml index 18c3f96be6a..5a2d55f35a0 100644 --- a/config/metrics/counts_28d/20210409095855_users_expanding_secure_security_report_monthly.yml +++ b/config/metrics/counts_28d/20210409095855_users_expanding_secure_security_report_monthly.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: dependency_scanning value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 28d diff --git a/config/metrics/counts_28d/20210409100451_users_expanding_testing_code_quality_report_monthly.yml b/config/metrics/counts_28d/20210409100451_users_expanding_testing_code_quality_report_monthly.yml index d9b6ad05ac6..2a4023c2e8a 100644 --- a/config/metrics/counts_28d/20210409100451_users_expanding_testing_code_quality_report_monthly.yml +++ b/config/metrics/counts_28d/20210409100451_users_expanding_testing_code_quality_report_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: code_quality value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 28d diff --git a/config/metrics/counts_28d/20210409100628_users_expanding_testing_accessibility_report_monthly.yml b/config/metrics/counts_28d/20210409100628_users_expanding_testing_accessibility_report_monthly.yml index 3767fedeb86..2332bce99a8 100644 --- a/config/metrics/counts_28d/20210409100628_users_expanding_testing_accessibility_report_monthly.yml +++ b/config/metrics/counts_28d/20210409100628_users_expanding_testing_accessibility_report_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: accessibility_testing value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 28d diff --git a/config/metrics/counts_28d/20210410012206_i_package_terraform_module_deploy_token_monthly.yml b/config/metrics/counts_28d/20210410012206_i_package_terraform_module_deploy_token_monthly.yml index e5c895e7997..d55ba9c7937 100644 --- a/config/metrics/counts_28d/20210410012206_i_package_terraform_module_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210410012206_i_package_terraform_module_deploy_token_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: 28d diff --git a/config/metrics/counts_28d/20210410012208_i_package_terraform_module_user_monthly.yml b/config/metrics/counts_28d/20210410012208_i_package_terraform_module_user_monthly.yml index 2dfc10652ea..58700643680 100644 --- a/config/metrics/counts_28d/20210410012208_i_package_terraform_module_user_monthly.yml +++ b/config/metrics/counts_28d/20210410012208_i_package_terraform_module_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: 28d diff --git a/config/metrics/counts_28d/20210413205507_i_testing_summary_widget_total_monthly.yml b/config/metrics/counts_28d/20210413205507_i_testing_summary_widget_total_monthly.yml index e71f298b992..41be8f98889 100644 --- a/config/metrics/counts_28d/20210413205507_i_testing_summary_widget_total_monthly.yml +++ b/config/metrics/counts_28d/20210413205507_i_testing_summary_widget_total_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: testing value_type: number -status: data_available +status: active milestone: "13.11" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59316 time_frame: 28d diff --git a/config/metrics/counts_28d/20210421144352_i_code_review_click_single_file_mode_setting_monthly.yml b/config/metrics/counts_28d/20210421144352_i_code_review_click_single_file_mode_setting_monthly.yml index 5fea551038a..da9bc2493a7 100644 --- a/config/metrics/counts_28d/20210421144352_i_code_review_click_single_file_mode_setting_monthly.yml +++ b/config/metrics/counts_28d/20210421144352_i_code_review_click_single_file_mode_setting_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210421145818_i_code_review_click_file_browser_setting_monthly.yml b/config/metrics/counts_28d/20210421145818_i_code_review_click_file_browser_setting_monthly.yml index 6a1b63c25f7..5a4cf3692ae 100644 --- a/config/metrics/counts_28d/20210421145818_i_code_review_click_file_browser_setting_monthly.yml +++ b/config/metrics/counts_28d/20210421145818_i_code_review_click_file_browser_setting_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210421145945_i_code_review_click_whitespace_setting_monthly.yml b/config/metrics/counts_28d/20210421145945_i_code_review_click_whitespace_setting_monthly.yml index f8d978844a9..a378c9eb07f 100644 --- a/config/metrics/counts_28d/20210421145945_i_code_review_click_whitespace_setting_monthly.yml +++ b/config/metrics/counts_28d/20210421145945_i_code_review_click_whitespace_setting_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422101516_i_code_review_diff_view_inline_monthly.yml b/config/metrics/counts_28d/20210422101516_i_code_review_diff_view_inline_monthly.yml index d86772cea6b..3d271e3b38f 100644 --- a/config/metrics/counts_28d/20210422101516_i_code_review_diff_view_inline_monthly.yml +++ b/config/metrics/counts_28d/20210422101516_i_code_review_diff_view_inline_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422101613_i_code_review_diff_view_parallel_monthly.yml b/config/metrics/counts_28d/20210422101613_i_code_review_diff_view_parallel_monthly.yml index d3d2889dfa3..0e2f0430a38 100644 --- a/config/metrics/counts_28d/20210422101613_i_code_review_diff_view_parallel_monthly.yml +++ b/config/metrics/counts_28d/20210422101613_i_code_review_diff_view_parallel_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422101753_i_code_review_file_browser_tree_view_monthly.yml b/config/metrics/counts_28d/20210422101753_i_code_review_file_browser_tree_view_monthly.yml index 55fe49b2639..1bbf3a04418 100644 --- a/config/metrics/counts_28d/20210422101753_i_code_review_file_browser_tree_view_monthly.yml +++ b/config/metrics/counts_28d/20210422101753_i_code_review_file_browser_tree_view_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422101852_i_code_review_file_browser_list_view_monthly.yml b/config/metrics/counts_28d/20210422101852_i_code_review_file_browser_list_view_monthly.yml index d26aa837f26..8aeb80499ae 100644 --- a/config/metrics/counts_28d/20210422101852_i_code_review_file_browser_list_view_monthly.yml +++ b/config/metrics/counts_28d/20210422101852_i_code_review_file_browser_list_view_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422101928_i_code_review_diff_show_whitespace_monthly.yml b/config/metrics/counts_28d/20210422101928_i_code_review_diff_show_whitespace_monthly.yml index 06a8b55ff62..306eeddc25b 100644 --- a/config/metrics/counts_28d/20210422101928_i_code_review_diff_show_whitespace_monthly.yml +++ b/config/metrics/counts_28d/20210422101928_i_code_review_diff_show_whitespace_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422102010_i_code_review_diff_hide_whitespace_monthly.yml b/config/metrics/counts_28d/20210422102010_i_code_review_diff_hide_whitespace_monthly.yml index 6095e9ec05d..ef8410fdb7b 100644 --- a/config/metrics/counts_28d/20210422102010_i_code_review_diff_hide_whitespace_monthly.yml +++ b/config/metrics/counts_28d/20210422102010_i_code_review_diff_hide_whitespace_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422102121_i_code_review_diff_single_file_monthly.yml b/config/metrics/counts_28d/20210422102121_i_code_review_diff_single_file_monthly.yml index 58c7aafd9de..76fe3b835fa 100644 --- a/config/metrics/counts_28d/20210422102121_i_code_review_diff_single_file_monthly.yml +++ b/config/metrics/counts_28d/20210422102121_i_code_review_diff_single_file_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210422102202_i_code_review_diff_multiple_files_monthly.yml b/config/metrics/counts_28d/20210422102202_i_code_review_diff_multiple_files_monthly.yml index 9af4cab1e87..9ab2bd2e48a 100644 --- a/config/metrics/counts_28d/20210422102202_i_code_review_diff_multiple_files_monthly.yml +++ b/config/metrics/counts_28d/20210422102202_i_code_review_diff_multiple_files_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210427102618_code_review_category_monthly_active_users.yml b/config/metrics/counts_28d/20210427102618_code_review_category_monthly_active_users.yml index 07a1b65a27e..be0fa6eaff7 100644 --- a/config/metrics/counts_28d/20210427102618_code_review_category_monthly_active_users.yml +++ b/config/metrics/counts_28d/20210427102618_code_review_category_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_28d/20210427103010_code_review_extension_category_monthly_active_users.yml b/config/metrics/counts_28d/20210427103010_code_review_extension_category_monthly_active_users.yml index 5b053add0b5..1e196ab49c4 100644 --- a/config/metrics/counts_28d/20210427103010_code_review_extension_category_monthly_active_users.yml +++ b/config/metrics/counts_28d/20210427103010_code_review_extension_category_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53553 time_frame: 28d diff --git a/config/metrics/counts_28d/20210427103119_code_review_group_monthly_active_users.yml b/config/metrics/counts_28d/20210427103119_code_review_group_monthly_active_users.yml index 07b2d1ae2ce..3d66f1cdf8c 100644 --- a/config/metrics/counts_28d/20210427103119_code_review_group_monthly_active_users.yml +++ b/config/metrics/counts_28d/20210427103119_code_review_group_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53553 time_frame: 28d diff --git a/config/metrics/counts_28d/20210427105033_pipeline_authoring_total_unique_counts_monthly.yml b/config/metrics/counts_28d/20210427105033_pipeline_authoring_total_unique_counts_monthly.yml index 612b8f4b4aa..b37c149ec11 100644 --- a/config/metrics/counts_28d/20210427105033_pipeline_authoring_total_unique_counts_monthly.yml +++ b/config/metrics/counts_28d/20210427105033_pipeline_authoring_total_unique_counts_monthly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: time_frame: 28d diff --git a/config/metrics/counts_28d/20210514013545_i_code_review_user_resolve_conflict_monthly.yml b/config/metrics/counts_28d/20210514013545_i_code_review_user_resolve_conflict_monthly.yml index 596063e4a43..8ce25e2d976 100644 --- a/config/metrics/counts_28d/20210514013545_i_code_review_user_resolve_conflict_monthly.yml +++ b/config/metrics/counts_28d/20210514013545_i_code_review_user_resolve_conflict_monthly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_28d/20210514013549_i_code_review_user_load_conflict_ui_monthly.yml b/config/metrics/counts_28d/20210514013549_i_code_review_user_load_conflict_ui_monthly.yml index c793a2887d8..b287346496b 100644 --- a/config/metrics/counts_28d/20210514013549_i_code_review_user_load_conflict_ui_monthly.yml +++ b/config/metrics/counts_28d/20210514013549_i_code_review_user_load_conflict_ui_monthly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_28d/20210514141518_monthly_projects_creation.yml b/config/metrics/counts_28d/20210514141518_monthly_projects_creation.yml index abf16d3dee9..7b39c8a3996 100644 --- a/config/metrics/counts_28d/20210514141518_monthly_projects_creation.yml +++ b/config/metrics/counts_28d/20210514141518_monthly_projects_creation.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: '' value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61775 time_frame: 28d diff --git a/config/metrics/counts_28d/20210517074859_i_package_helm_deploy_token_monthly.yml b/config/metrics/counts_28d/20210517074859_i_package_helm_deploy_token_monthly.yml index 266c5b1cad8..e891843a68d 100644 --- a/config/metrics/counts_28d/20210517074859_i_package_helm_deploy_token_monthly.yml +++ b/config/metrics/counts_28d/20210517074859_i_package_helm_deploy_token_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014 time_frame: 28d diff --git a/config/metrics/counts_28d/20210517075259_i_package_helm_user_monthly.yml b/config/metrics/counts_28d/20210517075259_i_package_helm_user_monthly.yml index 0226e885fe7..3653e1d2b2f 100644 --- a/config/metrics/counts_28d/20210517075259_i_package_helm_user_monthly.yml +++ b/config/metrics/counts_28d/20210517075259_i_package_helm_user_monthly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014 time_frame: 28d diff --git a/config/metrics/counts_28d/20210520111133_total.yml b/config/metrics/counts_28d/20210520111133_total.yml index 9470b6f1dff..3da6de21632 100644 --- a/config/metrics/counts_28d/20210520111133_total.yml +++ b/config/metrics/counts_28d/20210520111133_total.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61775" time_frame: 28d diff --git a/config/metrics/counts_28d/20210607113556_i_code_review_click_diff_view_setting_monthly.yml b/config/metrics/counts_28d/20210607113556_i_code_review_click_diff_view_setting_monthly.yml index 4a3ec6eb8f2..35dfad5b7a8 100644 --- a/config/metrics/counts_28d/20210607113556_i_code_review_click_diff_view_setting_monthly.yml +++ b/config/metrics/counts_28d/20210607113556_i_code_review_click_diff_view_setting_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 28d diff --git a/config/metrics/counts_28d/20210720144005_i_code_review_user_searches_diff_monthly.yml b/config/metrics/counts_28d/20210720144005_i_code_review_user_searches_diff_monthly.yml index 8b48a623045..3414cf0e868 100644 --- a/config/metrics/counts_28d/20210720144005_i_code_review_user_searches_diff_monthly.yml +++ b/config/metrics/counts_28d/20210720144005_i_code_review_user_searches_diff_monthly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: '14.2' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66522 time_frame: 28d diff --git a/config/metrics/counts_28d/20210721042227_i_quickactions_severity_monthly.yml b/config/metrics/counts_28d/20210721042227_i_quickactions_severity_monthly.yml index f23300c3a52..a2af908ea49 100644 --- a/config/metrics/counts_28d/20210721042227_i_quickactions_severity_monthly.yml +++ b/config/metrics/counts_28d/20210721042227_i_quickactions_severity_monthly.yml @@ -6,7 +6,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66422 time_frame: 28d diff --git a/config/metrics/counts_28d/20210816143831_i_code_review_total_suggestions_added_monthly.yml b/config/metrics/counts_28d/20210816143831_i_code_review_total_suggestions_added_monthly.yml index 4951444c0f7..a5bd56d0a7d 100644 --- a/config/metrics/counts_28d/20210816143831_i_code_review_total_suggestions_added_monthly.yml +++ b/config/metrics/counts_28d/20210816143831_i_code_review_total_suggestions_added_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: "14.3" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67525 time_frame: 28d diff --git a/config/metrics/counts_28d/20210816144453_i_code_review_total_suggestions_applied_monthly.yml b/config/metrics/counts_28d/20210816144453_i_code_review_total_suggestions_applied_monthly.yml index 50adfc81a15..2d4f41f6dff 100644 --- a/config/metrics/counts_28d/20210816144453_i_code_review_total_suggestions_applied_monthly.yml +++ b/config/metrics/counts_28d/20210816144453_i_code_review_total_suggestions_applied_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: "14.3" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67525 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221242_p_ci_templates_terraform_base_monthly.yml b/config/metrics/counts_28d/20210901221242_p_ci_templates_terraform_base_monthly.yml index 6f3919ed470..c0c5de03d6f 100644 --- a/config/metrics/counts_28d/20210901221242_p_ci_templates_terraform_base_monthly.yml +++ b/config/metrics/counts_28d/20210901221242_p_ci_templates_terraform_base_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221251_p_ci_templates_dotnet_monthly.yml b/config/metrics/counts_28d/20210901221251_p_ci_templates_dotnet_monthly.yml index 56e11599cb7..5a9cff02906 100644 --- a/config/metrics/counts_28d/20210901221251_p_ci_templates_dotnet_monthly.yml +++ b/config/metrics/counts_28d/20210901221251_p_ci_templates_dotnet_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221300_p_ci_templates_nodejs_monthly.yml b/config/metrics/counts_28d/20210901221300_p_ci_templates_nodejs_monthly.yml index 9e3cbd5c329..41f112b57f1 100644 --- a/config/metrics/counts_28d/20210901221300_p_ci_templates_nodejs_monthly.yml +++ b/config/metrics/counts_28d/20210901221300_p_ci_templates_nodejs_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221308_p_ci_templates_openshift_monthly.yml b/config/metrics/counts_28d/20210901221308_p_ci_templates_openshift_monthly.yml index 50909bc7f7a..d95c9cbc109 100644 --- a/config/metrics/counts_28d/20210901221308_p_ci_templates_openshift_monthly.yml +++ b/config/metrics/counts_28d/20210901221308_p_ci_templates_openshift_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221317_p_ci_templates_bash_monthly.yml b/config/metrics/counts_28d/20210901221317_p_ci_templates_bash_monthly.yml index 05675ce4f11..98a953405aa 100644 --- a/config/metrics/counts_28d/20210901221317_p_ci_templates_bash_monthly.yml +++ b/config/metrics/counts_28d/20210901221317_p_ci_templates_bash_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221326_p_ci_templates_rust_monthly.yml b/config/metrics/counts_28d/20210901221326_p_ci_templates_rust_monthly.yml index 55aa701717b..3f920a72e15 100644 --- a/config/metrics/counts_28d/20210901221326_p_ci_templates_rust_monthly.yml +++ b/config/metrics/counts_28d/20210901221326_p_ci_templates_rust_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221335_p_ci_templates_elixir_monthly.yml b/config/metrics/counts_28d/20210901221335_p_ci_templates_elixir_monthly.yml index 37888c87792..555a6f890bb 100644 --- a/config/metrics/counts_28d/20210901221335_p_ci_templates_elixir_monthly.yml +++ b/config/metrics/counts_28d/20210901221335_p_ci_templates_elixir_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221343_p_ci_templates_clojure_monthly.yml b/config/metrics/counts_28d/20210901221343_p_ci_templates_clojure_monthly.yml index c35cde5cd7a..b5f6a658333 100644 --- a/config/metrics/counts_28d/20210901221343_p_ci_templates_clojure_monthly.yml +++ b/config/metrics/counts_28d/20210901221343_p_ci_templates_clojure_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221352_p_ci_templates_crystal_monthly.yml b/config/metrics/counts_28d/20210901221352_p_ci_templates_crystal_monthly.yml index fe43f89ea4c..18ebe62b906 100644 --- a/config/metrics/counts_28d/20210901221352_p_ci_templates_crystal_monthly.yml +++ b/config/metrics/counts_28d/20210901221352_p_ci_templates_crystal_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221401_p_ci_templates_getting_started_monthly.yml b/config/metrics/counts_28d/20210901221401_p_ci_templates_getting_started_monthly.yml index afb5881813f..09d24d2e7ba 100644 --- a/config/metrics/counts_28d/20210901221401_p_ci_templates_getting_started_monthly.yml +++ b/config/metrics/counts_28d/20210901221401_p_ci_templates_getting_started_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221410_p_ci_templates_code_quality_monthly.yml b/config/metrics/counts_28d/20210901221410_p_ci_templates_code_quality_monthly.yml index 095425204bd..69d3c644a26 100644 --- a/config/metrics/counts_28d/20210901221410_p_ci_templates_code_quality_monthly.yml +++ b/config/metrics/counts_28d/20210901221410_p_ci_templates_code_quality_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221418_p_ci_templates_verify_load_performance_testing_monthly.yml b/config/metrics/counts_28d/20210901221418_p_ci_templates_verify_load_performance_testing_monthly.yml index d32ee1ab143..e0613d891d0 100644 --- a/config/metrics/counts_28d/20210901221418_p_ci_templates_verify_load_performance_testing_monthly.yml +++ b/config/metrics/counts_28d/20210901221418_p_ci_templates_verify_load_performance_testing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221427_p_ci_templates_verify_accessibility_monthly.yml b/config/metrics/counts_28d/20210901221427_p_ci_templates_verify_accessibility_monthly.yml index 2b130a822c9..251818174b5 100644 --- a/config/metrics/counts_28d/20210901221427_p_ci_templates_verify_accessibility_monthly.yml +++ b/config/metrics/counts_28d/20210901221427_p_ci_templates_verify_accessibility_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221436_p_ci_templates_verify_failfast_monthly.yml b/config/metrics/counts_28d/20210901221436_p_ci_templates_verify_failfast_monthly.yml index 19b55e0bfcb..5af12fc9ae1 100644 --- a/config/metrics/counts_28d/20210901221436_p_ci_templates_verify_failfast_monthly.yml +++ b/config/metrics/counts_28d/20210901221436_p_ci_templates_verify_failfast_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221445_p_ci_templates_verify_browser_performance_monthly.yml b/config/metrics/counts_28d/20210901221445_p_ci_templates_verify_browser_performance_monthly.yml index e086b769136..9baa924ab54 100644 --- a/config/metrics/counts_28d/20210901221445_p_ci_templates_verify_browser_performance_monthly.yml +++ b/config/metrics/counts_28d/20210901221445_p_ci_templates_verify_browser_performance_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221454_p_ci_templates_verify_browser_performance_latest_monthly.yml b/config/metrics/counts_28d/20210901221454_p_ci_templates_verify_browser_performance_latest_monthly.yml index 5faff3453c4..d50535100b2 100644 --- a/config/metrics/counts_28d/20210901221454_p_ci_templates_verify_browser_performance_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901221454_p_ci_templates_verify_browser_performance_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221503_p_ci_templates_grails_monthly.yml b/config/metrics/counts_28d/20210901221503_p_ci_templates_grails_monthly.yml index 347a7c5c369..fa17dac5c95 100644 --- a/config/metrics/counts_28d/20210901221503_p_ci_templates_grails_monthly.yml +++ b/config/metrics/counts_28d/20210901221503_p_ci_templates_grails_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221511_p_ci_templates_security_dast_runner_validation_monthly.yml b/config/metrics/counts_28d/20210901221511_p_ci_templates_security_dast_runner_validation_monthly.yml index 8925a609d07..ee5778aa20a 100644 --- a/config/metrics/counts_28d/20210901221511_p_ci_templates_security_dast_runner_validation_monthly.yml +++ b/config/metrics/counts_28d/20210901221511_p_ci_templates_security_dast_runner_validation_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221520_p_ci_templates_security_dast_on_demand_scan_monthly.yml b/config/metrics/counts_28d/20210901221520_p_ci_templates_security_dast_on_demand_scan_monthly.yml index f9144e9840a..25a8772f26c 100644 --- a/config/metrics/counts_28d/20210901221520_p_ci_templates_security_dast_on_demand_scan_monthly.yml +++ b/config/metrics/counts_28d/20210901221520_p_ci_templates_security_dast_on_demand_scan_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221529_p_ci_templates_security_license_scanning_monthly.yml b/config/metrics/counts_28d/20210901221529_p_ci_templates_security_license_scanning_monthly.yml index b2ef8405280..52050daf8a5 100644 --- a/config/metrics/counts_28d/20210901221529_p_ci_templates_security_license_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901221529_p_ci_templates_security_license_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221538_p_ci_templates_security_coverage_fuzzing_monthly.yml b/config/metrics/counts_28d/20210901221538_p_ci_templates_security_coverage_fuzzing_monthly.yml index 1ab215b9230..e04854b1ea2 100644 --- a/config/metrics/counts_28d/20210901221538_p_ci_templates_security_coverage_fuzzing_monthly.yml +++ b/config/metrics/counts_28d/20210901221538_p_ci_templates_security_coverage_fuzzing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221547_p_ci_templates_security_api_fuzzing_latest_monthly.yml b/config/metrics/counts_28d/20210901221547_p_ci_templates_security_api_fuzzing_latest_monthly.yml index fff75766dfe..511602c7c28 100644 --- a/config/metrics/counts_28d/20210901221547_p_ci_templates_security_api_fuzzing_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901221547_p_ci_templates_security_api_fuzzing_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221556_p_ci_templates_security_secure_binaries_monthly.yml b/config/metrics/counts_28d/20210901221556_p_ci_templates_security_secure_binaries_monthly.yml index b25696c59c4..ae18f69469d 100644 --- a/config/metrics/counts_28d/20210901221556_p_ci_templates_security_secure_binaries_monthly.yml +++ b/config/metrics/counts_28d/20210901221556_p_ci_templates_security_secure_binaries_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221605_p_ci_templates_security_dast_api_monthly.yml b/config/metrics/counts_28d/20210901221605_p_ci_templates_security_dast_api_monthly.yml index 929fdfaf6cd..84fae41c611 100644 --- a/config/metrics/counts_28d/20210901221605_p_ci_templates_security_dast_api_monthly.yml +++ b/config/metrics/counts_28d/20210901221605_p_ci_templates_security_dast_api_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221614_p_ci_templates_security_container_scanning_monthly.yml b/config/metrics/counts_28d/20210901221614_p_ci_templates_security_container_scanning_monthly.yml index 15a1411549c..37440c240ec 100644 --- a/config/metrics/counts_28d/20210901221614_p_ci_templates_security_container_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901221614_p_ci_templates_security_container_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221623_p_ci_templates_security_dast_latest_monthly.yml b/config/metrics/counts_28d/20210901221623_p_ci_templates_security_dast_latest_monthly.yml index f3f7b56edce..ff73e16a84b 100644 --- a/config/metrics/counts_28d/20210901221623_p_ci_templates_security_dast_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901221623_p_ci_templates_security_dast_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221632_p_ci_templates_security_dependency_scanning_monthly.yml b/config/metrics/counts_28d/20210901221632_p_ci_templates_security_dependency_scanning_monthly.yml index 6e51ca1d4f6..5015909a1be 100644 --- a/config/metrics/counts_28d/20210901221632_p_ci_templates_security_dependency_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901221632_p_ci_templates_security_dependency_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221641_p_ci_templates_security_api_fuzzing_monthly.yml b/config/metrics/counts_28d/20210901221641_p_ci_templates_security_api_fuzzing_monthly.yml index 36e72fff64e..e21e7cbcaae 100644 --- a/config/metrics/counts_28d/20210901221641_p_ci_templates_security_api_fuzzing_monthly.yml +++ b/config/metrics/counts_28d/20210901221641_p_ci_templates_security_api_fuzzing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221650_p_ci_templates_security_dast_monthly.yml b/config/metrics/counts_28d/20210901221650_p_ci_templates_security_dast_monthly.yml index 4d69f1a8f99..6b5b028aa2d 100644 --- a/config/metrics/counts_28d/20210901221650_p_ci_templates_security_dast_monthly.yml +++ b/config/metrics/counts_28d/20210901221650_p_ci_templates_security_dast_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221659_p_ci_templates_security_cluster_image_scanning_monthly.yml b/config/metrics/counts_28d/20210901221659_p_ci_templates_security_cluster_image_scanning_monthly.yml index a278286d4ff..f3a696627fe 100644 --- a/config/metrics/counts_28d/20210901221659_p_ci_templates_security_cluster_image_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901221659_p_ci_templates_security_cluster_image_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221708_p_ci_templates_ios_fastlane_monthly.yml b/config/metrics/counts_28d/20210901221708_p_ci_templates_ios_fastlane_monthly.yml index b0567ab4cf6..7fa3decd102 100644 --- a/config/metrics/counts_28d/20210901221708_p_ci_templates_ios_fastlane_monthly.yml +++ b/config/metrics/counts_28d/20210901221708_p_ci_templates_ios_fastlane_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221717_p_ci_templates_composer_monthly.yml b/config/metrics/counts_28d/20210901221717_p_ci_templates_composer_monthly.yml index c63e731173d..6f18d8f2be4 100644 --- a/config/metrics/counts_28d/20210901221717_p_ci_templates_composer_monthly.yml +++ b/config/metrics/counts_28d/20210901221717_p_ci_templates_composer_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221726_p_ci_templates_c_monthly.yml b/config/metrics/counts_28d/20210901221726_p_ci_templates_c_monthly.yml index 9f65f6c0f2c..a9646741a9e 100644 --- a/config/metrics/counts_28d/20210901221726_p_ci_templates_c_monthly.yml +++ b/config/metrics/counts_28d/20210901221726_p_ci_templates_c_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221735_p_ci_templates_python_monthly.yml b/config/metrics/counts_28d/20210901221735_p_ci_templates_python_monthly.yml index 8092b6c893d..435cbb1f4ff 100644 --- a/config/metrics/counts_28d/20210901221735_p_ci_templates_python_monthly.yml +++ b/config/metrics/counts_28d/20210901221735_p_ci_templates_python_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221744_p_ci_templates_android_fastlane_monthly.yml b/config/metrics/counts_28d/20210901221744_p_ci_templates_android_fastlane_monthly.yml index 87fd7cc1239..356114d1182 100644 --- a/config/metrics/counts_28d/20210901221744_p_ci_templates_android_fastlane_monthly.yml +++ b/config/metrics/counts_28d/20210901221744_p_ci_templates_android_fastlane_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221754_p_ci_templates_django_monthly.yml b/config/metrics/counts_28d/20210901221754_p_ci_templates_django_monthly.yml index 2c46fff6919..6f6f921d20b 100644 --- a/config/metrics/counts_28d/20210901221754_p_ci_templates_django_monthly.yml +++ b/config/metrics/counts_28d/20210901221754_p_ci_templates_django_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221803_p_ci_templates_maven_monthly.yml b/config/metrics/counts_28d/20210901221803_p_ci_templates_maven_monthly.yml index 84c4e12f594..883a844b26f 100644 --- a/config/metrics/counts_28d/20210901221803_p_ci_templates_maven_monthly.yml +++ b/config/metrics/counts_28d/20210901221803_p_ci_templates_maven_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221812_p_ci_templates_flutter_monthly.yml b/config/metrics/counts_28d/20210901221812_p_ci_templates_flutter_monthly.yml index 722a910fda9..4ecf88abb14 100644 --- a/config/metrics/counts_28d/20210901221812_p_ci_templates_flutter_monthly.yml +++ b/config/metrics/counts_28d/20210901221812_p_ci_templates_flutter_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221822_p_ci_templates_workflows_branch_pipelines_monthly.yml b/config/metrics/counts_28d/20210901221822_p_ci_templates_workflows_branch_pipelines_monthly.yml index 4e8a8073d88..7e4a493864c 100644 --- a/config/metrics/counts_28d/20210901221822_p_ci_templates_workflows_branch_pipelines_monthly.yml +++ b/config/metrics/counts_28d/20210901221822_p_ci_templates_workflows_branch_pipelines_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221831_p_ci_templates_workflows_mergerequest_pipelines_monthly.yml b/config/metrics/counts_28d/20210901221831_p_ci_templates_workflows_mergerequest_pipelines_monthly.yml index c68011d17e5..5b813f20ad9 100644 --- a/config/metrics/counts_28d/20210901221831_p_ci_templates_workflows_mergerequest_pipelines_monthly.yml +++ b/config/metrics/counts_28d/20210901221831_p_ci_templates_workflows_mergerequest_pipelines_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221840_p_ci_templates_laravel_monthly.yml b/config/metrics/counts_28d/20210901221840_p_ci_templates_laravel_monthly.yml index 819eea143f1..27ff46f6a35 100644 --- a/config/metrics/counts_28d/20210901221840_p_ci_templates_laravel_monthly.yml +++ b/config/metrics/counts_28d/20210901221840_p_ci_templates_laravel_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221849_p_ci_templates_managed_cluster_applications_monthly.yml b/config/metrics/counts_28d/20210901221849_p_ci_templates_managed_cluster_applications_monthly.yml index c82fd61bbf5..92c0ea14727 100644 --- a/config/metrics/counts_28d/20210901221849_p_ci_templates_managed_cluster_applications_monthly.yml +++ b/config/metrics/counts_28d/20210901221849_p_ci_templates_managed_cluster_applications_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221857_p_ci_templates_php_monthly.yml b/config/metrics/counts_28d/20210901221857_p_ci_templates_php_monthly.yml index a740d098ea0..d32a8f007b9 100644 --- a/config/metrics/counts_28d/20210901221857_p_ci_templates_php_monthly.yml +++ b/config/metrics/counts_28d/20210901221857_p_ci_templates_php_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221906_p_ci_templates_packer_monthly.yml b/config/metrics/counts_28d/20210901221906_p_ci_templates_packer_monthly.yml index b0b0690d770..af9f85bf1e4 100644 --- a/config/metrics/counts_28d/20210901221906_p_ci_templates_packer_monthly.yml +++ b/config/metrics/counts_28d/20210901221906_p_ci_templates_packer_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221915_p_ci_templates_terraform_monthly.yml b/config/metrics/counts_28d/20210901221915_p_ci_templates_terraform_monthly.yml index 41d3b97455c..743a1ec2013 100644 --- a/config/metrics/counts_28d/20210901221915_p_ci_templates_terraform_monthly.yml +++ b/config/metrics/counts_28d/20210901221915_p_ci_templates_terraform_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221923_p_ci_templates_mono_monthly.yml b/config/metrics/counts_28d/20210901221923_p_ci_templates_mono_monthly.yml index 63e4fdbeddf..d4e4b37c93c 100644 --- a/config/metrics/counts_28d/20210901221923_p_ci_templates_mono_monthly.yml +++ b/config/metrics/counts_28d/20210901221923_p_ci_templates_mono_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221932_p_ci_templates_serverless_monthly.yml b/config/metrics/counts_28d/20210901221932_p_ci_templates_serverless_monthly.yml index 975bda92f4c..9dab50a9e6c 100644 --- a/config/metrics/counts_28d/20210901221932_p_ci_templates_serverless_monthly.yml +++ b/config/metrics/counts_28d/20210901221932_p_ci_templates_serverless_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221941_p_ci_templates_go_monthly.yml b/config/metrics/counts_28d/20210901221941_p_ci_templates_go_monthly.yml index 977025ba482..25dce4f9013 100644 --- a/config/metrics/counts_28d/20210901221941_p_ci_templates_go_monthly.yml +++ b/config/metrics/counts_28d/20210901221941_p_ci_templates_go_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221950_p_ci_templates_scala_monthly.yml b/config/metrics/counts_28d/20210901221950_p_ci_templates_scala_monthly.yml index 39bf6627f27..2faeb424f2d 100644 --- a/config/metrics/counts_28d/20210901221950_p_ci_templates_scala_monthly.yml +++ b/config/metrics/counts_28d/20210901221950_p_ci_templates_scala_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901221958_p_ci_templates_latex_monthly.yml b/config/metrics/counts_28d/20210901221958_p_ci_templates_latex_monthly.yml index 2518ad71f3b..c7d1ea576fc 100644 --- a/config/metrics/counts_28d/20210901221958_p_ci_templates_latex_monthly.yml +++ b/config/metrics/counts_28d/20210901221958_p_ci_templates_latex_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222007_p_ci_templates_android_monthly.yml b/config/metrics/counts_28d/20210901222007_p_ci_templates_android_monthly.yml index d1339be55b0..2523dec8efd 100644 --- a/config/metrics/counts_28d/20210901222007_p_ci_templates_android_monthly.yml +++ b/config/metrics/counts_28d/20210901222007_p_ci_templates_android_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222016_p_ci_templates_indeni_cloudrail_monthly.yml b/config/metrics/counts_28d/20210901222016_p_ci_templates_indeni_cloudrail_monthly.yml index 0ff4e662db2..6841d54790a 100644 --- a/config/metrics/counts_28d/20210901222016_p_ci_templates_indeni_cloudrail_monthly.yml +++ b/config/metrics/counts_28d/20210901222016_p_ci_templates_indeni_cloudrail_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222025_p_ci_templates_deploy_ecs_monthly.yml b/config/metrics/counts_28d/20210901222025_p_ci_templates_deploy_ecs_monthly.yml index cb9847f4c06..9b2ec95d2c5 100644 --- a/config/metrics/counts_28d/20210901222025_p_ci_templates_deploy_ecs_monthly.yml +++ b/config/metrics/counts_28d/20210901222025_p_ci_templates_deploy_ecs_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222033_p_ci_templates_aws_cf_provision_and_deploy_ec2_monthly.yml b/config/metrics/counts_28d/20210901222033_p_ci_templates_aws_cf_provision_and_deploy_ec2_monthly.yml index cb20e1c65b2..d195c569a75 100644 --- a/config/metrics/counts_28d/20210901222033_p_ci_templates_aws_cf_provision_and_deploy_ec2_monthly.yml +++ b/config/metrics/counts_28d/20210901222033_p_ci_templates_aws_cf_provision_and_deploy_ec2_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222042_p_ci_templates_gradle_monthly.yml b/config/metrics/counts_28d/20210901222042_p_ci_templates_gradle_monthly.yml index 64f304b7b7e..c66530b37b7 100644 --- a/config/metrics/counts_28d/20210901222042_p_ci_templates_gradle_monthly.yml +++ b/config/metrics/counts_28d/20210901222042_p_ci_templates_gradle_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222051_p_ci_templates_chef_monthly.yml b/config/metrics/counts_28d/20210901222051_p_ci_templates_chef_monthly.yml index 382f4d49022..f9217f10ac6 100644 --- a/config/metrics/counts_28d/20210901222051_p_ci_templates_chef_monthly.yml +++ b/config/metrics/counts_28d/20210901222051_p_ci_templates_chef_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222100_p_ci_templates_jobs_dast_default_branch_deploy_monthly.yml b/config/metrics/counts_28d/20210901222100_p_ci_templates_jobs_dast_default_branch_deploy_monthly.yml index 1f404b1d82b..7efd539e992 100644 --- a/config/metrics/counts_28d/20210901222100_p_ci_templates_jobs_dast_default_branch_deploy_monthly.yml +++ b/config/metrics/counts_28d/20210901222100_p_ci_templates_jobs_dast_default_branch_deploy_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222108_p_ci_templates_jobs_load_performance_testing_monthly.yml b/config/metrics/counts_28d/20210901222108_p_ci_templates_jobs_load_performance_testing_monthly.yml index 9bd63178cc9..851855e76b0 100644 --- a/config/metrics/counts_28d/20210901222108_p_ci_templates_jobs_load_performance_testing_monthly.yml +++ b/config/metrics/counts_28d/20210901222108_p_ci_templates_jobs_load_performance_testing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222117_p_ci_templates_jobs_helm_2to3_monthly.yml b/config/metrics/counts_28d/20210901222117_p_ci_templates_jobs_helm_2to3_monthly.yml index 13804f19597..057ce9ab19a 100644 --- a/config/metrics/counts_28d/20210901222117_p_ci_templates_jobs_helm_2to3_monthly.yml +++ b/config/metrics/counts_28d/20210901222117_p_ci_templates_jobs_helm_2to3_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222126_p_ci_templates_jobs_sast_monthly.yml b/config/metrics/counts_28d/20210901222126_p_ci_templates_jobs_sast_monthly.yml index 76bedfba968..81b8196f348 100644 --- a/config/metrics/counts_28d/20210901222126_p_ci_templates_jobs_sast_monthly.yml +++ b/config/metrics/counts_28d/20210901222126_p_ci_templates_jobs_sast_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222135_p_ci_templates_jobs_secret_detection_monthly.yml b/config/metrics/counts_28d/20210901222135_p_ci_templates_jobs_secret_detection_monthly.yml index 6f9a39d6639..09de2ec628a 100644 --- a/config/metrics/counts_28d/20210901222135_p_ci_templates_jobs_secret_detection_monthly.yml +++ b/config/metrics/counts_28d/20210901222135_p_ci_templates_jobs_secret_detection_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222144_p_ci_templates_jobs_code_intelligence_monthly.yml b/config/metrics/counts_28d/20210901222144_p_ci_templates_jobs_code_intelligence_monthly.yml index 089fdd47fb6..98c1d5c752f 100644 --- a/config/metrics/counts_28d/20210901222144_p_ci_templates_jobs_code_intelligence_monthly.yml +++ b/config/metrics/counts_28d/20210901222144_p_ci_templates_jobs_code_intelligence_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222153_p_ci_templates_jobs_code_quality_monthly.yml b/config/metrics/counts_28d/20210901222153_p_ci_templates_jobs_code_quality_monthly.yml index e47621dc109..2780fb76618 100644 --- a/config/metrics/counts_28d/20210901222153_p_ci_templates_jobs_code_quality_monthly.yml +++ b/config/metrics/counts_28d/20210901222153_p_ci_templates_jobs_code_quality_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222202_p_ci_templates_jobs_deploy_ecs_monthly.yml b/config/metrics/counts_28d/20210901222202_p_ci_templates_jobs_deploy_ecs_monthly.yml index df2fd6953f0..0595e6a6c2f 100644 --- a/config/metrics/counts_28d/20210901222202_p_ci_templates_jobs_deploy_ecs_monthly.yml +++ b/config/metrics/counts_28d/20210901222202_p_ci_templates_jobs_deploy_ecs_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222211_p_ci_templates_jobs_deploy_ec2_monthly.yml b/config/metrics/counts_28d/20210901222211_p_ci_templates_jobs_deploy_ec2_monthly.yml index d1e67525027..701d6711c6b 100644 --- a/config/metrics/counts_28d/20210901222211_p_ci_templates_jobs_deploy_ec2_monthly.yml +++ b/config/metrics/counts_28d/20210901222211_p_ci_templates_jobs_deploy_ec2_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222220_p_ci_templates_jobs_deploy_monthly.yml b/config/metrics/counts_28d/20210901222220_p_ci_templates_jobs_deploy_monthly.yml index a3973016293..2c4f32e95dd 100644 --- a/config/metrics/counts_28d/20210901222220_p_ci_templates_jobs_deploy_monthly.yml +++ b/config/metrics/counts_28d/20210901222220_p_ci_templates_jobs_deploy_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222229_p_ci_templates_jobs_build_monthly.yml b/config/metrics/counts_28d/20210901222229_p_ci_templates_jobs_build_monthly.yml index a860235f38e..2c582ae2d5d 100644 --- a/config/metrics/counts_28d/20210901222229_p_ci_templates_jobs_build_monthly.yml +++ b/config/metrics/counts_28d/20210901222229_p_ci_templates_jobs_build_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222237_p_ci_templates_jobs_browser_performance_testing_monthly.yml b/config/metrics/counts_28d/20210901222237_p_ci_templates_jobs_browser_performance_testing_monthly.yml index e41e68ea0f7..f3907820de0 100644 --- a/config/metrics/counts_28d/20210901222237_p_ci_templates_jobs_browser_performance_testing_monthly.yml +++ b/config/metrics/counts_28d/20210901222237_p_ci_templates_jobs_browser_performance_testing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222246_p_ci_templates_jobs_test_monthly.yml b/config/metrics/counts_28d/20210901222246_p_ci_templates_jobs_test_monthly.yml index 131c1df34d6..d6b9a891d9c 100644 --- a/config/metrics/counts_28d/20210901222246_p_ci_templates_jobs_test_monthly.yml +++ b/config/metrics/counts_28d/20210901222246_p_ci_templates_jobs_test_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222256_p_ci_templates_jobs_deploy_latest_monthly.yml b/config/metrics/counts_28d/20210901222256_p_ci_templates_jobs_deploy_latest_monthly.yml index 622c278e50c..6a05970b675 100644 --- a/config/metrics/counts_28d/20210901222256_p_ci_templates_jobs_deploy_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901222256_p_ci_templates_jobs_deploy_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222304_p_ci_templates_jobs_browser_performance_testing_latest_monthly.yml b/config/metrics/counts_28d/20210901222304_p_ci_templates_jobs_browser_performance_testing_latest_monthly.yml index 05378d7ba1e..a1c568a7ff9 100644 --- a/config/metrics/counts_28d/20210901222304_p_ci_templates_jobs_browser_performance_testing_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901222304_p_ci_templates_jobs_browser_performance_testing_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222313_p_ci_templates_jobs_cf_provision_monthly.yml b/config/metrics/counts_28d/20210901222313_p_ci_templates_jobs_cf_provision_monthly.yml index 3715cc32b42..02fb579e03b 100644 --- a/config/metrics/counts_28d/20210901222313_p_ci_templates_jobs_cf_provision_monthly.yml +++ b/config/metrics/counts_28d/20210901222313_p_ci_templates_jobs_cf_provision_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222322_p_ci_templates_jobs_build_latest_monthly.yml b/config/metrics/counts_28d/20210901222322_p_ci_templates_jobs_build_latest_monthly.yml index c87e92e6f21..856cb3d7431 100644 --- a/config/metrics/counts_28d/20210901222322_p_ci_templates_jobs_build_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901222322_p_ci_templates_jobs_build_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222331_p_ci_templates_terraform_latest_monthly.yml b/config/metrics/counts_28d/20210901222331_p_ci_templates_terraform_latest_monthly.yml index bc1ad4f3d0d..920efea27ad 100644 --- a/config/metrics/counts_28d/20210901222331_p_ci_templates_terraform_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901222331_p_ci_templates_terraform_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222341_p_ci_templates_swift_monthly.yml b/config/metrics/counts_28d/20210901222341_p_ci_templates_swift_monthly.yml index 7efcc470e7b..d09907dc91b 100644 --- a/config/metrics/counts_28d/20210901222341_p_ci_templates_swift_monthly.yml +++ b/config/metrics/counts_28d/20210901222341_p_ci_templates_swift_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222707_p_ci_templates_pages_jekyll_monthly.yml b/config/metrics/counts_28d/20210901222707_p_ci_templates_pages_jekyll_monthly.yml index 9b9166ce7c4..9271873d5a5 100644 --- a/config/metrics/counts_28d/20210901222707_p_ci_templates_pages_jekyll_monthly.yml +++ b/config/metrics/counts_28d/20210901222707_p_ci_templates_pages_jekyll_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901222742_p_ci_templates_pages_harp_monthly.yml b/config/metrics/counts_28d/20210901222742_p_ci_templates_pages_harp_monthly.yml index 6a735cb1f0f..1a1666d961e 100644 --- a/config/metrics/counts_28d/20210901222742_p_ci_templates_pages_harp_monthly.yml +++ b/config/metrics/counts_28d/20210901222742_p_ci_templates_pages_harp_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223200_p_ci_templates_pages_octopress_monthly.yml b/config/metrics/counts_28d/20210901223200_p_ci_templates_pages_octopress_monthly.yml index d8972f8b158..e393a28d402 100644 --- a/config/metrics/counts_28d/20210901223200_p_ci_templates_pages_octopress_monthly.yml +++ b/config/metrics/counts_28d/20210901223200_p_ci_templates_pages_octopress_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223210_p_ci_templates_pages_brunch_monthly.yml b/config/metrics/counts_28d/20210901223210_p_ci_templates_pages_brunch_monthly.yml index 5a5c399eb7b..3e15963a0e4 100644 --- a/config/metrics/counts_28d/20210901223210_p_ci_templates_pages_brunch_monthly.yml +++ b/config/metrics/counts_28d/20210901223210_p_ci_templates_pages_brunch_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223219_p_ci_templates_pages_doxygen_monthly.yml b/config/metrics/counts_28d/20210901223219_p_ci_templates_pages_doxygen_monthly.yml index 8f514194430..3a847e76a4d 100644 --- a/config/metrics/counts_28d/20210901223219_p_ci_templates_pages_doxygen_monthly.yml +++ b/config/metrics/counts_28d/20210901223219_p_ci_templates_pages_doxygen_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223227_p_ci_templates_pages_hyde_monthly.yml b/config/metrics/counts_28d/20210901223227_p_ci_templates_pages_hyde_monthly.yml index 05b93a0986d..18cd9350c18 100644 --- a/config/metrics/counts_28d/20210901223227_p_ci_templates_pages_hyde_monthly.yml +++ b/config/metrics/counts_28d/20210901223227_p_ci_templates_pages_hyde_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223236_p_ci_templates_pages_lektor_monthly.yml b/config/metrics/counts_28d/20210901223236_p_ci_templates_pages_lektor_monthly.yml index 8a9c81149c1..8359a8b94a4 100644 --- a/config/metrics/counts_28d/20210901223236_p_ci_templates_pages_lektor_monthly.yml +++ b/config/metrics/counts_28d/20210901223236_p_ci_templates_pages_lektor_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223244_p_ci_templates_pages_jbake_monthly.yml b/config/metrics/counts_28d/20210901223244_p_ci_templates_pages_jbake_monthly.yml index fd53bc60718..8290dc0e832 100644 --- a/config/metrics/counts_28d/20210901223244_p_ci_templates_pages_jbake_monthly.yml +++ b/config/metrics/counts_28d/20210901223244_p_ci_templates_pages_jbake_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223253_p_ci_templates_pages_hexo_monthly.yml b/config/metrics/counts_28d/20210901223253_p_ci_templates_pages_hexo_monthly.yml index c8d6a1e7b20..45768b15c10 100644 --- a/config/metrics/counts_28d/20210901223253_p_ci_templates_pages_hexo_monthly.yml +++ b/config/metrics/counts_28d/20210901223253_p_ci_templates_pages_hexo_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223302_p_ci_templates_pages_middleman_monthly.yml b/config/metrics/counts_28d/20210901223302_p_ci_templates_pages_middleman_monthly.yml index 5e3b83d59c3..c7615209431 100644 --- a/config/metrics/counts_28d/20210901223302_p_ci_templates_pages_middleman_monthly.yml +++ b/config/metrics/counts_28d/20210901223302_p_ci_templates_pages_middleman_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223311_p_ci_templates_pages_hugo_monthly.yml b/config/metrics/counts_28d/20210901223311_p_ci_templates_pages_hugo_monthly.yml index 97a5c63952d..951a61d56ae 100644 --- a/config/metrics/counts_28d/20210901223311_p_ci_templates_pages_hugo_monthly.yml +++ b/config/metrics/counts_28d/20210901223311_p_ci_templates_pages_hugo_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223319_p_ci_templates_pages_pelican_monthly.yml b/config/metrics/counts_28d/20210901223319_p_ci_templates_pages_pelican_monthly.yml index dad58ef831e..fe749f92436 100644 --- a/config/metrics/counts_28d/20210901223319_p_ci_templates_pages_pelican_monthly.yml +++ b/config/metrics/counts_28d/20210901223319_p_ci_templates_pages_pelican_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223328_p_ci_templates_pages_nanoc_monthly.yml b/config/metrics/counts_28d/20210901223328_p_ci_templates_pages_nanoc_monthly.yml index 7ef5b5684a8..37b49978853 100644 --- a/config/metrics/counts_28d/20210901223328_p_ci_templates_pages_nanoc_monthly.yml +++ b/config/metrics/counts_28d/20210901223328_p_ci_templates_pages_nanoc_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223337_p_ci_templates_pages_swaggerui_monthly.yml b/config/metrics/counts_28d/20210901223337_p_ci_templates_pages_swaggerui_monthly.yml index edbb185b9e5..da09183e928 100644 --- a/config/metrics/counts_28d/20210901223337_p_ci_templates_pages_swaggerui_monthly.yml +++ b/config/metrics/counts_28d/20210901223337_p_ci_templates_pages_swaggerui_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223346_p_ci_templates_pages_jigsaw_monthly.yml b/config/metrics/counts_28d/20210901223346_p_ci_templates_pages_jigsaw_monthly.yml index 36fd5561c3c..5fadb6ce074 100644 --- a/config/metrics/counts_28d/20210901223346_p_ci_templates_pages_jigsaw_monthly.yml +++ b/config/metrics/counts_28d/20210901223346_p_ci_templates_pages_jigsaw_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223354_p_ci_templates_pages_metalsmith_monthly.yml b/config/metrics/counts_28d/20210901223354_p_ci_templates_pages_metalsmith_monthly.yml index 90e565b9564..1f46fd06db7 100644 --- a/config/metrics/counts_28d/20210901223354_p_ci_templates_pages_metalsmith_monthly.yml +++ b/config/metrics/counts_28d/20210901223354_p_ci_templates_pages_metalsmith_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223403_p_ci_templates_pages_gatsby_monthly.yml b/config/metrics/counts_28d/20210901223403_p_ci_templates_pages_gatsby_monthly.yml index 333d277b4fc..1132a4b95c2 100644 --- a/config/metrics/counts_28d/20210901223403_p_ci_templates_pages_gatsby_monthly.yml +++ b/config/metrics/counts_28d/20210901223403_p_ci_templates_pages_gatsby_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223412_p_ci_templates_pages_html_monthly.yml b/config/metrics/counts_28d/20210901223412_p_ci_templates_pages_html_monthly.yml index da3178eafc3..33ee3737f95 100644 --- a/config/metrics/counts_28d/20210901223412_p_ci_templates_pages_html_monthly.yml +++ b/config/metrics/counts_28d/20210901223412_p_ci_templates_pages_html_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223421_p_ci_templates_dart_monthly.yml b/config/metrics/counts_28d/20210901223421_p_ci_templates_dart_monthly.yml index 10c871b658e..eb93f5910ed 100644 --- a/config/metrics/counts_28d/20210901223421_p_ci_templates_dart_monthly.yml +++ b/config/metrics/counts_28d/20210901223421_p_ci_templates_dart_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223430_p_ci_templates_docker_monthly.yml b/config/metrics/counts_28d/20210901223430_p_ci_templates_docker_monthly.yml index 2c04f4177c4..390d155415e 100644 --- a/config/metrics/counts_28d/20210901223430_p_ci_templates_docker_monthly.yml +++ b/config/metrics/counts_28d/20210901223430_p_ci_templates_docker_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223439_p_ci_templates_julia_monthly.yml b/config/metrics/counts_28d/20210901223439_p_ci_templates_julia_monthly.yml index 1fde9c7fdcb..199718e6b1b 100644 --- a/config/metrics/counts_28d/20210901223439_p_ci_templates_julia_monthly.yml +++ b/config/metrics/counts_28d/20210901223439_p_ci_templates_julia_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223447_p_ci_templates_npm_monthly.yml b/config/metrics/counts_28d/20210901223447_p_ci_templates_npm_monthly.yml index 77e1efd1aa7..47aa49e8fb4 100644 --- a/config/metrics/counts_28d/20210901223447_p_ci_templates_npm_monthly.yml +++ b/config/metrics/counts_28d/20210901223447_p_ci_templates_npm_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223456_p_ci_templates_dotnet_core_monthly.yml b/config/metrics/counts_28d/20210901223456_p_ci_templates_dotnet_core_monthly.yml index b0c0849df75..5aadbcdd402 100644 --- a/config/metrics/counts_28d/20210901223456_p_ci_templates_dotnet_core_monthly.yml +++ b/config/metrics/counts_28d/20210901223456_p_ci_templates_dotnet_core_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223505_p_ci_templates_5_minute_production_app_monthly.yml b/config/metrics/counts_28d/20210901223505_p_ci_templates_5_minute_production_app_monthly.yml index b1ff551408b..43851ae9fb3 100644 --- a/config/metrics/counts_28d/20210901223505_p_ci_templates_5_minute_production_app_monthly.yml +++ b/config/metrics/counts_28d/20210901223505_p_ci_templates_5_minute_production_app_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223514_p_ci_templates_ruby_monthly.yml b/config/metrics/counts_28d/20210901223514_p_ci_templates_ruby_monthly.yml index d067eca042b..ce9d5065fc1 100644 --- a/config/metrics/counts_28d/20210901223514_p_ci_templates_ruby_monthly.yml +++ b/config/metrics/counts_28d/20210901223514_p_ci_templates_ruby_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223523_p_ci_templates_implicit_jobs_dast_default_branch_deploy_monthly.yml b/config/metrics/counts_28d/20210901223523_p_ci_templates_implicit_jobs_dast_default_branch_deploy_monthly.yml index 65d20fbb6a9..b52850bdca9 100644 --- a/config/metrics/counts_28d/20210901223523_p_ci_templates_implicit_jobs_dast_default_branch_deploy_monthly.yml +++ b/config/metrics/counts_28d/20210901223523_p_ci_templates_implicit_jobs_dast_default_branch_deploy_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223532_p_ci_templates_implicit_jobs_load_performance_testing_monthly.yml b/config/metrics/counts_28d/20210901223532_p_ci_templates_implicit_jobs_load_performance_testing_monthly.yml index d6a048011ca..c5ce964bfaa 100644 --- a/config/metrics/counts_28d/20210901223532_p_ci_templates_implicit_jobs_load_performance_testing_monthly.yml +++ b/config/metrics/counts_28d/20210901223532_p_ci_templates_implicit_jobs_load_performance_testing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223541_p_ci_templates_implicit_jobs_helm_2to3_monthly.yml b/config/metrics/counts_28d/20210901223541_p_ci_templates_implicit_jobs_helm_2to3_monthly.yml index 1730b7d742e..11c66d9dd11 100644 --- a/config/metrics/counts_28d/20210901223541_p_ci_templates_implicit_jobs_helm_2to3_monthly.yml +++ b/config/metrics/counts_28d/20210901223541_p_ci_templates_implicit_jobs_helm_2to3_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223550_p_ci_templates_implicit_jobs_sast_monthly.yml b/config/metrics/counts_28d/20210901223550_p_ci_templates_implicit_jobs_sast_monthly.yml index 4b805ca9185..e30f559b879 100644 --- a/config/metrics/counts_28d/20210901223550_p_ci_templates_implicit_jobs_sast_monthly.yml +++ b/config/metrics/counts_28d/20210901223550_p_ci_templates_implicit_jobs_sast_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223559_p_ci_templates_implicit_jobs_secret_detection_monthly.yml b/config/metrics/counts_28d/20210901223559_p_ci_templates_implicit_jobs_secret_detection_monthly.yml index 8898d7e71ff..7c56b16701b 100644 --- a/config/metrics/counts_28d/20210901223559_p_ci_templates_implicit_jobs_secret_detection_monthly.yml +++ b/config/metrics/counts_28d/20210901223559_p_ci_templates_implicit_jobs_secret_detection_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223608_p_ci_templates_implicit_jobs_code_intelligence_monthly.yml b/config/metrics/counts_28d/20210901223608_p_ci_templates_implicit_jobs_code_intelligence_monthly.yml index 1c67683a801..e52602a96c8 100644 --- a/config/metrics/counts_28d/20210901223608_p_ci_templates_implicit_jobs_code_intelligence_monthly.yml +++ b/config/metrics/counts_28d/20210901223608_p_ci_templates_implicit_jobs_code_intelligence_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223617_p_ci_templates_implicit_jobs_code_quality_monthly.yml b/config/metrics/counts_28d/20210901223617_p_ci_templates_implicit_jobs_code_quality_monthly.yml index 37d57ce8370..05bcdade966 100644 --- a/config/metrics/counts_28d/20210901223617_p_ci_templates_implicit_jobs_code_quality_monthly.yml +++ b/config/metrics/counts_28d/20210901223617_p_ci_templates_implicit_jobs_code_quality_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223626_p_ci_templates_implicit_jobs_deploy_ecs_monthly.yml b/config/metrics/counts_28d/20210901223626_p_ci_templates_implicit_jobs_deploy_ecs_monthly.yml index cfd9924af09..4bc50406910 100644 --- a/config/metrics/counts_28d/20210901223626_p_ci_templates_implicit_jobs_deploy_ecs_monthly.yml +++ b/config/metrics/counts_28d/20210901223626_p_ci_templates_implicit_jobs_deploy_ecs_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223635_p_ci_templates_implicit_jobs_deploy_ec2_monthly.yml b/config/metrics/counts_28d/20210901223635_p_ci_templates_implicit_jobs_deploy_ec2_monthly.yml index 9aa9cbd26ef..6c71d424338 100644 --- a/config/metrics/counts_28d/20210901223635_p_ci_templates_implicit_jobs_deploy_ec2_monthly.yml +++ b/config/metrics/counts_28d/20210901223635_p_ci_templates_implicit_jobs_deploy_ec2_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223644_p_ci_templates_implicit_jobs_browser_performance_testing_monthly.yml b/config/metrics/counts_28d/20210901223644_p_ci_templates_implicit_jobs_browser_performance_testing_monthly.yml index b05edeaf012..9c8f24f35b6 100644 --- a/config/metrics/counts_28d/20210901223644_p_ci_templates_implicit_jobs_browser_performance_testing_monthly.yml +++ b/config/metrics/counts_28d/20210901223644_p_ci_templates_implicit_jobs_browser_performance_testing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223653_p_ci_templates_implicit_jobs_test_monthly.yml b/config/metrics/counts_28d/20210901223653_p_ci_templates_implicit_jobs_test_monthly.yml index 02d8370e448..4424cf72a53 100644 --- a/config/metrics/counts_28d/20210901223653_p_ci_templates_implicit_jobs_test_monthly.yml +++ b/config/metrics/counts_28d/20210901223653_p_ci_templates_implicit_jobs_test_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223702_p_ci_templates_implicit_jobs_browser_performance_testing_latest_monthly.yml b/config/metrics/counts_28d/20210901223702_p_ci_templates_implicit_jobs_browser_performance_testing_latest_monthly.yml index fb462893ceb..5bd79adf6e5 100644 --- a/config/metrics/counts_28d/20210901223702_p_ci_templates_implicit_jobs_browser_performance_testing_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901223702_p_ci_templates_implicit_jobs_browser_performance_testing_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223711_p_ci_templates_implicit_jobs_cf_provision_monthly.yml b/config/metrics/counts_28d/20210901223711_p_ci_templates_implicit_jobs_cf_provision_monthly.yml index 26995278e08..362aed75e00 100644 --- a/config/metrics/counts_28d/20210901223711_p_ci_templates_implicit_jobs_cf_provision_monthly.yml +++ b/config/metrics/counts_28d/20210901223711_p_ci_templates_implicit_jobs_cf_provision_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223721_p_ci_templates_implicit_jobs_build_latest_monthly.yml b/config/metrics/counts_28d/20210901223721_p_ci_templates_implicit_jobs_build_latest_monthly.yml index e5c356a0c3f..d7c78554423 100644 --- a/config/metrics/counts_28d/20210901223721_p_ci_templates_implicit_jobs_build_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901223721_p_ci_templates_implicit_jobs_build_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223730_p_ci_templates_implicit_security_dast_runner_validation_monthly.yml b/config/metrics/counts_28d/20210901223730_p_ci_templates_implicit_security_dast_runner_validation_monthly.yml index 2b840723fbf..a688785bc0f 100644 --- a/config/metrics/counts_28d/20210901223730_p_ci_templates_implicit_security_dast_runner_validation_monthly.yml +++ b/config/metrics/counts_28d/20210901223730_p_ci_templates_implicit_security_dast_runner_validation_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223739_p_ci_templates_implicit_security_dast_on_demand_scan_monthly.yml b/config/metrics/counts_28d/20210901223739_p_ci_templates_implicit_security_dast_on_demand_scan_monthly.yml index ebe3bf3c2e3..97bd575f2f3 100644 --- a/config/metrics/counts_28d/20210901223739_p_ci_templates_implicit_security_dast_on_demand_scan_monthly.yml +++ b/config/metrics/counts_28d/20210901223739_p_ci_templates_implicit_security_dast_on_demand_scan_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223748_p_ci_templates_implicit_security_license_scanning_monthly.yml b/config/metrics/counts_28d/20210901223748_p_ci_templates_implicit_security_license_scanning_monthly.yml index f90de61bf13..0a22cf9e860 100644 --- a/config/metrics/counts_28d/20210901223748_p_ci_templates_implicit_security_license_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901223748_p_ci_templates_implicit_security_license_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223758_p_ci_templates_implicit_security_coverage_fuzzing_monthly.yml b/config/metrics/counts_28d/20210901223758_p_ci_templates_implicit_security_coverage_fuzzing_monthly.yml index e0bb410e810..8735c299082 100644 --- a/config/metrics/counts_28d/20210901223758_p_ci_templates_implicit_security_coverage_fuzzing_monthly.yml +++ b/config/metrics/counts_28d/20210901223758_p_ci_templates_implicit_security_coverage_fuzzing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223806_p_ci_templates_implicit_security_api_fuzzing_latest_monthly.yml b/config/metrics/counts_28d/20210901223806_p_ci_templates_implicit_security_api_fuzzing_latest_monthly.yml index febcaf5cb56..70f42f3861e 100644 --- a/config/metrics/counts_28d/20210901223806_p_ci_templates_implicit_security_api_fuzzing_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901223806_p_ci_templates_implicit_security_api_fuzzing_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223815_p_ci_templates_implicit_security_secure_binaries_monthly.yml b/config/metrics/counts_28d/20210901223815_p_ci_templates_implicit_security_secure_binaries_monthly.yml index 3de00cd5724..35235a85b19 100644 --- a/config/metrics/counts_28d/20210901223815_p_ci_templates_implicit_security_secure_binaries_monthly.yml +++ b/config/metrics/counts_28d/20210901223815_p_ci_templates_implicit_security_secure_binaries_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223824_p_ci_templates_implicit_security_dast_api_monthly.yml b/config/metrics/counts_28d/20210901223824_p_ci_templates_implicit_security_dast_api_monthly.yml index 58cf3ed625d..087a55fd275 100644 --- a/config/metrics/counts_28d/20210901223824_p_ci_templates_implicit_security_dast_api_monthly.yml +++ b/config/metrics/counts_28d/20210901223824_p_ci_templates_implicit_security_dast_api_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223832_p_ci_templates_implicit_security_container_scanning_monthly.yml b/config/metrics/counts_28d/20210901223832_p_ci_templates_implicit_security_container_scanning_monthly.yml index f5c3d909b85..c1281685678 100644 --- a/config/metrics/counts_28d/20210901223832_p_ci_templates_implicit_security_container_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901223832_p_ci_templates_implicit_security_container_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223841_p_ci_templates_implicit_security_dast_latest_monthly.yml b/config/metrics/counts_28d/20210901223841_p_ci_templates_implicit_security_dast_latest_monthly.yml index ce6973cead2..0adb938298c 100644 --- a/config/metrics/counts_28d/20210901223841_p_ci_templates_implicit_security_dast_latest_monthly.yml +++ b/config/metrics/counts_28d/20210901223841_p_ci_templates_implicit_security_dast_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223850_p_ci_templates_implicit_security_dependency_scanning_monthly.yml b/config/metrics/counts_28d/20210901223850_p_ci_templates_implicit_security_dependency_scanning_monthly.yml index 9353dd4e5f5..6e9ccb48983 100644 --- a/config/metrics/counts_28d/20210901223850_p_ci_templates_implicit_security_dependency_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901223850_p_ci_templates_implicit_security_dependency_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223858_p_ci_templates_implicit_security_api_fuzzing_monthly.yml b/config/metrics/counts_28d/20210901223858_p_ci_templates_implicit_security_api_fuzzing_monthly.yml index e38780d4a0e..85868e0c79c 100644 --- a/config/metrics/counts_28d/20210901223858_p_ci_templates_implicit_security_api_fuzzing_monthly.yml +++ b/config/metrics/counts_28d/20210901223858_p_ci_templates_implicit_security_api_fuzzing_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223907_p_ci_templates_implicit_security_dast_monthly.yml b/config/metrics/counts_28d/20210901223907_p_ci_templates_implicit_security_dast_monthly.yml index 7b0b6eddfdb..7b7ce070486 100644 --- a/config/metrics/counts_28d/20210901223907_p_ci_templates_implicit_security_dast_monthly.yml +++ b/config/metrics/counts_28d/20210901223907_p_ci_templates_implicit_security_dast_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210901223916_p_ci_templates_implicit_security_cluster_image_scanning_monthly.yml b/config/metrics/counts_28d/20210901223916_p_ci_templates_implicit_security_cluster_image_scanning_monthly.yml index 2b2401919b1..ddf785a71bd 100644 --- a/config/metrics/counts_28d/20210901223916_p_ci_templates_implicit_security_cluster_image_scanning_monthly.yml +++ b/config/metrics/counts_28d/20210901223916_p_ci_templates_implicit_security_cluster_image_scanning_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210902000813_p_ci_templates_implicit_auto_devops_deploy_latest_monthly.yml b/config/metrics/counts_28d/20210902000813_p_ci_templates_implicit_auto_devops_deploy_latest_monthly.yml index 47680931bf9..3b667e49f0d 100644 --- a/config/metrics/counts_28d/20210902000813_p_ci_templates_implicit_auto_devops_deploy_latest_monthly.yml +++ b/config/metrics/counts_28d/20210902000813_p_ci_templates_implicit_auto_devops_deploy_latest_monthly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 28d diff --git a/config/metrics/counts_28d/20210902191057_i_quickactions_unapprove_monthly.yml b/config/metrics/counts_28d/20210902191057_i_quickactions_unapprove_monthly.yml index 63561617139..ccefa1f5dd3 100644 --- a/config/metrics/counts_28d/20210902191057_i_quickactions_unapprove_monthly.yml +++ b/config/metrics/counts_28d/20210902191057_i_quickactions_unapprove_monthly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "14.3" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_7d/20210201124931_g_project_management_issue_title_changed_weekly.yml b/config/metrics/counts_7d/20210201124931_g_project_management_issue_title_changed_weekly.yml index 48e72f62caf..2a1a174f5a5 100644 --- a/config/metrics/counts_7d/20210201124931_g_project_management_issue_title_changed_weekly.yml +++ b/config/metrics/counts_7d/20210201124931_g_project_management_issue_title_changed_weekly.yml @@ -6,7 +6,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active milestone: "13.6" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/issues/229918 time_frame: 7d diff --git a/config/metrics/counts_7d/20210216175010_i_analytics_instance_statistics_weekly.yml b/config/metrics/counts_7d/20210216175010_i_analytics_instance_statistics_weekly.yml index 90073bddc76..c24d51412f8 100644 --- a/config/metrics/counts_7d/20210216175010_i_analytics_instance_statistics_weekly.yml +++ b/config/metrics/counts_7d/20210216175010_i_analytics_instance_statistics_weekly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175014_analytics_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216175014_analytics_total_unique_counts_weekly.yml index dff37bfa4ea..3a9efa3f962 100644 --- a/config/metrics/counts_7d/20210216175014_analytics_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216175014_analytics_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175111_merge_request_action_weekly.yml b/config/metrics/counts_7d/20210216175111_merge_request_action_weekly.yml index 1647550a100..da938f35fa9 100644 --- a/config/metrics/counts_7d/20210216175111_merge_request_action_weekly.yml +++ b/config/metrics/counts_7d/20210216175111_merge_request_action_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175114_i_source_code_code_intelligence_weekly.yml b/config/metrics/counts_7d/20210216175114_i_source_code_code_intelligence_weekly.yml index c4be5fac401..6814b32f2bf 100644 --- a/config/metrics/counts_7d/20210216175114_i_source_code_code_intelligence_weekly.yml +++ b/config/metrics/counts_7d/20210216175114_i_source_code_code_intelligence_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175118_i_code_review_mr_diffs_weekly.yml b/config/metrics/counts_7d/20210216175118_i_code_review_mr_diffs_weekly.yml index ed72cf70478..57987f98ab6 100644 --- a/config/metrics/counts_7d/20210216175118_i_code_review_mr_diffs_weekly.yml +++ b/config/metrics/counts_7d/20210216175118_i_code_review_mr_diffs_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175122_i_code_review_user_single_file_diffs_weekly.yml b/config/metrics/counts_7d/20210216175122_i_code_review_user_single_file_diffs_weekly.yml index a9549fbeadd..63a8442c4e6 100644 --- a/config/metrics/counts_7d/20210216175122_i_code_review_user_single_file_diffs_weekly.yml +++ b/config/metrics/counts_7d/20210216175122_i_code_review_user_single_file_diffs_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175126_i_code_review_mr_single_file_diffs_weekly.yml b/config/metrics/counts_7d/20210216175126_i_code_review_mr_single_file_diffs_weekly.yml index ae3b66c0962..2883082131e 100644 --- a/config/metrics/counts_7d/20210216175126_i_code_review_mr_single_file_diffs_weekly.yml +++ b/config/metrics/counts_7d/20210216175126_i_code_review_mr_single_file_diffs_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175130_i_code_review_user_create_mr_weekly.yml b/config/metrics/counts_7d/20210216175130_i_code_review_user_create_mr_weekly.yml index ac6039cd971..b7ceec20354 100644 --- a/config/metrics/counts_7d/20210216175130_i_code_review_user_create_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216175130_i_code_review_user_create_mr_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175134_i_code_review_user_close_mr_weekly.yml b/config/metrics/counts_7d/20210216175134_i_code_review_user_close_mr_weekly.yml index 5245cd49950..dd0cef04ca9 100644 --- a/config/metrics/counts_7d/20210216175134_i_code_review_user_close_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216175134_i_code_review_user_close_mr_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175138_i_code_review_user_reopen_mr_weekly.yml b/config/metrics/counts_7d/20210216175138_i_code_review_user_reopen_mr_weekly.yml index 984385a2b9a..3c79f72dd19 100644 --- a/config/metrics/counts_7d/20210216175138_i_code_review_user_reopen_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216175138_i_code_review_user_reopen_mr_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175142_i_code_review_user_merge_mr_weekly.yml b/config/metrics/counts_7d/20210216175142_i_code_review_user_merge_mr_weekly.yml index f47a9c490bf..ec5e7fbc032 100644 --- a/config/metrics/counts_7d/20210216175142_i_code_review_user_merge_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216175142_i_code_review_user_merge_mr_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175146_i_code_review_user_create_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216175146_i_code_review_user_create_mr_comment_weekly.yml index 0d3fbea4d50..d03ac5f1ef1 100644 --- a/config/metrics/counts_7d/20210216175146_i_code_review_user_create_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216175146_i_code_review_user_create_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175150_i_code_review_user_edit_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216175150_i_code_review_user_edit_mr_comment_weekly.yml index b07f7072363..01b6ac1ee34 100644 --- a/config/metrics/counts_7d/20210216175150_i_code_review_user_edit_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216175150_i_code_review_user_edit_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175154_i_code_review_user_remove_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216175154_i_code_review_user_remove_mr_comment_weekly.yml index 2d43720e07e..082cf4b5f0f 100644 --- a/config/metrics/counts_7d/20210216175154_i_code_review_user_remove_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216175154_i_code_review_user_remove_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175158_i_code_review_user_add_suggestion_weekly.yml b/config/metrics/counts_7d/20210216175158_i_code_review_user_add_suggestion_weekly.yml index 206a17e1444..a7faca5bc28 100644 --- a/config/metrics/counts_7d/20210216175158_i_code_review_user_add_suggestion_weekly.yml +++ b/config/metrics/counts_7d/20210216175158_i_code_review_user_add_suggestion_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216175201_i_code_review_user_apply_suggestion_weekly.yml b/config/metrics/counts_7d/20210216175201_i_code_review_user_apply_suggestion_weekly.yml index 0769a040741..d313eccb956 100644 --- a/config/metrics/counts_7d/20210216175201_i_code_review_user_apply_suggestion_weekly.yml +++ b/config/metrics/counts_7d/20210216175201_i_code_review_user_apply_suggestion_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180328_g_edit_by_web_ide_weekly.yml b/config/metrics/counts_7d/20210216180328_g_edit_by_web_ide_weekly.yml index abeb4443096..74d8cf777af 100644 --- a/config/metrics/counts_7d/20210216180328_g_edit_by_web_ide_weekly.yml +++ b/config/metrics/counts_7d/20210216180328_g_edit_by_web_ide_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180332_g_edit_by_sfe_weekly.yml b/config/metrics/counts_7d/20210216180332_g_edit_by_sfe_weekly.yml index fa18652e01e..8624ceac7d3 100644 --- a/config/metrics/counts_7d/20210216180332_g_edit_by_sfe_weekly.yml +++ b/config/metrics/counts_7d/20210216180332_g_edit_by_sfe_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180336_g_edit_by_snippet_ide_weekly.yml b/config/metrics/counts_7d/20210216180336_g_edit_by_snippet_ide_weekly.yml index b3e2a500d1f..299237ec022 100644 --- a/config/metrics/counts_7d/20210216180336_g_edit_by_snippet_ide_weekly.yml +++ b/config/metrics/counts_7d/20210216180336_g_edit_by_snippet_ide_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180339_ide_edit_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216180339_ide_edit_total_unique_counts_weekly.yml index 9e4c633950a..8e913a78a1f 100644 --- a/config/metrics/counts_7d/20210216180339_ide_edit_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216180339_ide_edit_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180422_i_search_total_weekly.yml b/config/metrics/counts_7d/20210216180422_i_search_total_weekly.yml index ae8011b1285..2c02c296a85 100644 --- a/config/metrics/counts_7d/20210216180422_i_search_total_weekly.yml +++ b/config/metrics/counts_7d/20210216180422_i_search_total_weekly.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180429_search_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216180429_search_total_unique_counts_weekly.yml index c34da9c09d6..55170e41c2c 100644 --- a/config/metrics/counts_7d/20210216180429_search_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216180429_search_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180513_incident_management_alerts_total_unique_counts.yml b/config/metrics/counts_7d/20210216180513_incident_management_alerts_total_unique_counts.yml index aedf400c95c..8501aca963d 100644 --- a/config/metrics/counts_7d/20210216180513_incident_management_alerts_total_unique_counts.yml +++ b/config/metrics/counts_7d/20210216180513_incident_management_alerts_total_unique_counts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll distribution: diff --git a/config/metrics/counts_7d/20210216180515_incident_management_incidents_total_unique_counts.yml b/config/metrics/counts_7d/20210216180515_incident_management_incidents_total_unique_counts.yml index 612d5636529..8e78722a377 100644 --- a/config/metrics/counts_7d/20210216180515_incident_management_incidents_total_unique_counts.yml +++ b/config/metrics/counts_7d/20210216180515_incident_management_incidents_total_unique_counts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll distribution: diff --git a/config/metrics/counts_7d/20210216180528_incident_management_alert_status_changed_weekly.yml b/config/metrics/counts_7d/20210216180528_incident_management_alert_status_changed_weekly.yml index 791cf955e62..cffbc350343 100644 --- a/config/metrics/counts_7d/20210216180528_incident_management_alert_status_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216180528_incident_management_alert_status_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180532_incident_management_alert_assigned_weekly.yml b/config/metrics/counts_7d/20210216180532_incident_management_alert_assigned_weekly.yml index 56cdf242222..bfc8fd42716 100644 --- a/config/metrics/counts_7d/20210216180532_incident_management_alert_assigned_weekly.yml +++ b/config/metrics/counts_7d/20210216180532_incident_management_alert_assigned_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180535_incident_management_alert_todo_weekly.yml b/config/metrics/counts_7d/20210216180535_incident_management_alert_todo_weekly.yml index 831e40774df..174c58230ca 100644 --- a/config/metrics/counts_7d/20210216180535_incident_management_alert_todo_weekly.yml +++ b/config/metrics/counts_7d/20210216180535_incident_management_alert_todo_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180539_incident_management_incident_created_weekly.yml b/config/metrics/counts_7d/20210216180539_incident_management_incident_created_weekly.yml index 5e188ec0239..953c7962708 100644 --- a/config/metrics/counts_7d/20210216180539_incident_management_incident_created_weekly.yml +++ b/config/metrics/counts_7d/20210216180539_incident_management_incident_created_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180543_incident_management_incident_reopened_weekly.yml b/config/metrics/counts_7d/20210216180543_incident_management_incident_reopened_weekly.yml index c9722dc0061..e7cac727367 100644 --- a/config/metrics/counts_7d/20210216180543_incident_management_incident_reopened_weekly.yml +++ b/config/metrics/counts_7d/20210216180543_incident_management_incident_reopened_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180546_incident_management_incident_closed_weekly.yml b/config/metrics/counts_7d/20210216180546_incident_management_incident_closed_weekly.yml index 51bfdf4a582..65780586fcc 100644 --- a/config/metrics/counts_7d/20210216180546_incident_management_incident_closed_weekly.yml +++ b/config/metrics/counts_7d/20210216180546_incident_management_incident_closed_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180550_incident_management_incident_assigned_weekly.yml b/config/metrics/counts_7d/20210216180550_incident_management_incident_assigned_weekly.yml index 046537ccbbd..f7dc966bb72 100644 --- a/config/metrics/counts_7d/20210216180550_incident_management_incident_assigned_weekly.yml +++ b/config/metrics/counts_7d/20210216180550_incident_management_incident_assigned_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180554_incident_management_incident_todo_weekly.yml b/config/metrics/counts_7d/20210216180554_incident_management_incident_todo_weekly.yml index 9cd0d7a589c..d21ba880611 100644 --- a/config/metrics/counts_7d/20210216180554_incident_management_incident_todo_weekly.yml +++ b/config/metrics/counts_7d/20210216180554_incident_management_incident_todo_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180558_incident_management_incident_comment_weekly.yml b/config/metrics/counts_7d/20210216180558_incident_management_incident_comment_weekly.yml index 50879658e09..f1f1ae465e6 100644 --- a/config/metrics/counts_7d/20210216180558_incident_management_incident_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216180558_incident_management_incident_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180601_incident_management_incident_zoom_meeting_weekly.yml b/config/metrics/counts_7d/20210216180601_incident_management_incident_zoom_meeting_weekly.yml index 777c1e9ff5a..45b0709bf25 100644 --- a/config/metrics/counts_7d/20210216180601_incident_management_incident_zoom_meeting_weekly.yml +++ b/config/metrics/counts_7d/20210216180601_incident_management_incident_zoom_meeting_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180609_incident_management_incident_relate_weekly.yml b/config/metrics/counts_7d/20210216180609_incident_management_incident_relate_weekly.yml index fb74b260b91..d0ef9bd6e52 100644 --- a/config/metrics/counts_7d/20210216180609_incident_management_incident_relate_weekly.yml +++ b/config/metrics/counts_7d/20210216180609_incident_management_incident_relate_weekly.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180612_incident_management_incident_unrelate_weekly.yml b/config/metrics/counts_7d/20210216180612_incident_management_incident_unrelate_weekly.yml index 2550a0ac39c..6755ffd46a6 100644 --- a/config/metrics/counts_7d/20210216180612_incident_management_incident_unrelate_weekly.yml +++ b/config/metrics/counts_7d/20210216180612_incident_management_incident_unrelate_weekly.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180616_incident_management_incident_change_confidential_weekly.yml b/config/metrics/counts_7d/20210216180616_incident_management_incident_change_confidential_weekly.yml index 46450fbb24f..2c6efe436cb 100644 --- a/config/metrics/counts_7d/20210216180616_incident_management_incident_change_confidential_weekly.yml +++ b/config/metrics/counts_7d/20210216180616_incident_management_incident_change_confidential_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180620_incident_management_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216180620_incident_management_total_unique_counts_weekly.yml index 7699dc412a8..f5d49e87d1c 100644 --- a/config/metrics/counts_7d/20210216180620_incident_management_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216180620_incident_management_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216180623_incident_management_alert_create_incident_weekly.yml b/config/metrics/counts_7d/20210216180623_incident_management_alert_create_incident_weekly.yml index 97c755b084d..24cd426e329 100644 --- a/config/metrics/counts_7d/20210216180623_incident_management_alert_create_incident_weekly.yml +++ b/config/metrics/counts_7d/20210216180623_incident_management_alert_create_incident_weekly.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181306_g_project_management_issue_description_changed_weekly.yml b/config/metrics/counts_7d/20210216181306_g_project_management_issue_description_changed_weekly.yml index 7792296ede1..9c2fbc1b9ac 100644 --- a/config/metrics/counts_7d/20210216181306_g_project_management_issue_description_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181306_g_project_management_issue_description_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181310_g_project_management_issue_assignee_changed_weekly.yml b/config/metrics/counts_7d/20210216181310_g_project_management_issue_assignee_changed_weekly.yml index 9b7b0aff5aa..be1e250f443 100644 --- a/config/metrics/counts_7d/20210216181310_g_project_management_issue_assignee_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181310_g_project_management_issue_assignee_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181313_g_project_management_issue_made_confidential_weekly.yml b/config/metrics/counts_7d/20210216181313_g_project_management_issue_made_confidential_weekly.yml index 9546d229dc5..49fa886e26f 100644 --- a/config/metrics/counts_7d/20210216181313_g_project_management_issue_made_confidential_weekly.yml +++ b/config/metrics/counts_7d/20210216181313_g_project_management_issue_made_confidential_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181317_g_project_management_issue_made_visible_weekly.yml b/config/metrics/counts_7d/20210216181317_g_project_management_issue_made_visible_weekly.yml index cca084385eb..e8a0b4dea52 100644 --- a/config/metrics/counts_7d/20210216181317_g_project_management_issue_made_visible_weekly.yml +++ b/config/metrics/counts_7d/20210216181317_g_project_management_issue_made_visible_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181321_g_project_management_issue_created_weekly.yml b/config/metrics/counts_7d/20210216181321_g_project_management_issue_created_weekly.yml index 314f68e1ffd..10a19c045cc 100644 --- a/config/metrics/counts_7d/20210216181321_g_project_management_issue_created_weekly.yml +++ b/config/metrics/counts_7d/20210216181321_g_project_management_issue_created_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181324_g_project_management_issue_closed_weekly.yml b/config/metrics/counts_7d/20210216181324_g_project_management_issue_closed_weekly.yml index 9a213878ac4..8b8348e479a 100644 --- a/config/metrics/counts_7d/20210216181324_g_project_management_issue_closed_weekly.yml +++ b/config/metrics/counts_7d/20210216181324_g_project_management_issue_closed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181328_g_project_management_issue_reopened_weekly.yml b/config/metrics/counts_7d/20210216181328_g_project_management_issue_reopened_weekly.yml index 82bade1fedb..36cfe848518 100644 --- a/config/metrics/counts_7d/20210216181328_g_project_management_issue_reopened_weekly.yml +++ b/config/metrics/counts_7d/20210216181328_g_project_management_issue_reopened_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181332_g_project_management_issue_label_changed_weekly.yml b/config/metrics/counts_7d/20210216181332_g_project_management_issue_label_changed_weekly.yml index 507bbe001fb..9a271f2a877 100644 --- a/config/metrics/counts_7d/20210216181332_g_project_management_issue_label_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181332_g_project_management_issue_label_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181336_g_project_management_issue_milestone_changed_weekly.yml b/config/metrics/counts_7d/20210216181336_g_project_management_issue_milestone_changed_weekly.yml index eeedf266af4..83a8c402c00 100644 --- a/config/metrics/counts_7d/20210216181336_g_project_management_issue_milestone_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181336_g_project_management_issue_milestone_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181347_g_project_management_issue_cross_referenced_weekly.yml b/config/metrics/counts_7d/20210216181347_g_project_management_issue_cross_referenced_weekly.yml index eaf3330514c..13094d1f7fd 100644 --- a/config/metrics/counts_7d/20210216181347_g_project_management_issue_cross_referenced_weekly.yml +++ b/config/metrics/counts_7d/20210216181347_g_project_management_issue_cross_referenced_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 28d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181350_g_project_management_issue_moved_weekly.yml b/config/metrics/counts_7d/20210216181350_g_project_management_issue_moved_weekly.yml index 67e067e743d..0f344e64f41 100644 --- a/config/metrics/counts_7d/20210216181350_g_project_management_issue_moved_weekly.yml +++ b/config/metrics/counts_7d/20210216181350_g_project_management_issue_moved_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181354_g_project_management_issue_related_weekly.yml b/config/metrics/counts_7d/20210216181354_g_project_management_issue_related_weekly.yml index 2f352581905..39ee0d124bd 100644 --- a/config/metrics/counts_7d/20210216181354_g_project_management_issue_related_weekly.yml +++ b/config/metrics/counts_7d/20210216181354_g_project_management_issue_related_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181358_g_project_management_issue_unrelated_weekly.yml b/config/metrics/counts_7d/20210216181358_g_project_management_issue_unrelated_weekly.yml index fa3532ffffc..38606e53f88 100644 --- a/config/metrics/counts_7d/20210216181358_g_project_management_issue_unrelated_weekly.yml +++ b/config/metrics/counts_7d/20210216181358_g_project_management_issue_unrelated_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181401_g_project_management_issue_marked_as_duplicate_weekly.yml b/config/metrics/counts_7d/20210216181401_g_project_management_issue_marked_as_duplicate_weekly.yml index ee5b10f73da..647e9504281 100644 --- a/config/metrics/counts_7d/20210216181401_g_project_management_issue_marked_as_duplicate_weekly.yml +++ b/config/metrics/counts_7d/20210216181401_g_project_management_issue_marked_as_duplicate_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181405_g_project_management_issue_locked_weekly.yml b/config/metrics/counts_7d/20210216181405_g_project_management_issue_locked_weekly.yml index a2a7fa469d8..de8177bd331 100644 --- a/config/metrics/counts_7d/20210216181405_g_project_management_issue_locked_weekly.yml +++ b/config/metrics/counts_7d/20210216181405_g_project_management_issue_locked_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181409_g_project_management_issue_unlocked_weekly.yml b/config/metrics/counts_7d/20210216181409_g_project_management_issue_unlocked_weekly.yml index da6c077355c..e514429b22d 100644 --- a/config/metrics/counts_7d/20210216181409_g_project_management_issue_unlocked_weekly.yml +++ b/config/metrics/counts_7d/20210216181409_g_project_management_issue_unlocked_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181422_g_project_management_issue_designs_added_weekly.yml b/config/metrics/counts_7d/20210216181422_g_project_management_issue_designs_added_weekly.yml index f1e65fca1f3..86b6b48f6a8 100644 --- a/config/metrics/counts_7d/20210216181422_g_project_management_issue_designs_added_weekly.yml +++ b/config/metrics/counts_7d/20210216181422_g_project_management_issue_designs_added_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181425_g_project_management_issue_designs_modified_weekly.yml b/config/metrics/counts_7d/20210216181425_g_project_management_issue_designs_modified_weekly.yml index 80de76e2ef4..da25aafd304 100644 --- a/config/metrics/counts_7d/20210216181425_g_project_management_issue_designs_modified_weekly.yml +++ b/config/metrics/counts_7d/20210216181425_g_project_management_issue_designs_modified_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181429_g_project_management_issue_designs_removed_weekly.yml b/config/metrics/counts_7d/20210216181429_g_project_management_issue_designs_removed_weekly.yml index b52d2747060..1ece28bef07 100644 --- a/config/metrics/counts_7d/20210216181429_g_project_management_issue_designs_removed_weekly.yml +++ b/config/metrics/counts_7d/20210216181429_g_project_management_issue_designs_removed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181433_g_project_management_issue_due_date_changed_weekly.yml b/config/metrics/counts_7d/20210216181433_g_project_management_issue_due_date_changed_weekly.yml index 126b74499e4..048bc6955b4 100644 --- a/config/metrics/counts_7d/20210216181433_g_project_management_issue_due_date_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181433_g_project_management_issue_due_date_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181437_g_project_management_issue_time_estimate_changed_weekly.yml b/config/metrics/counts_7d/20210216181437_g_project_management_issue_time_estimate_changed_weekly.yml index f0559566c4d..a839582fd15 100644 --- a/config/metrics/counts_7d/20210216181437_g_project_management_issue_time_estimate_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181437_g_project_management_issue_time_estimate_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181440_g_project_management_issue_time_spent_changed_weekly.yml b/config/metrics/counts_7d/20210216181440_g_project_management_issue_time_spent_changed_weekly.yml index ad6316b484e..f30fa4a93ac 100644 --- a/config/metrics/counts_7d/20210216181440_g_project_management_issue_time_spent_changed_weekly.yml +++ b/config/metrics/counts_7d/20210216181440_g_project_management_issue_time_spent_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181444_g_project_management_issue_comment_added_weekly.yml b/config/metrics/counts_7d/20210216181444_g_project_management_issue_comment_added_weekly.yml index 53213c0aee0..bf575481220 100644 --- a/config/metrics/counts_7d/20210216181444_g_project_management_issue_comment_added_weekly.yml +++ b/config/metrics/counts_7d/20210216181444_g_project_management_issue_comment_added_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181448_g_project_management_issue_comment_edited_weekly.yml b/config/metrics/counts_7d/20210216181448_g_project_management_issue_comment_edited_weekly.yml index 7e53b2658df..b1aa4e063ad 100644 --- a/config/metrics/counts_7d/20210216181448_g_project_management_issue_comment_edited_weekly.yml +++ b/config/metrics/counts_7d/20210216181448_g_project_management_issue_comment_edited_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181451_g_project_management_issue_comment_removed_weekly.yml b/config/metrics/counts_7d/20210216181451_g_project_management_issue_comment_removed_weekly.yml index 996ed40d474..1af96466839 100644 --- a/config/metrics/counts_7d/20210216181451_g_project_management_issue_comment_removed_weekly.yml +++ b/config/metrics/counts_7d/20210216181451_g_project_management_issue_comment_removed_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181459_g_project_management_issue_cloned_weekly.yml b/config/metrics/counts_7d/20210216181459_g_project_management_issue_cloned_weekly.yml index bf95aab5c22..6dd6c3db6c5 100644 --- a/config/metrics/counts_7d/20210216181459_g_project_management_issue_cloned_weekly.yml +++ b/config/metrics/counts_7d/20210216181459_g_project_management_issue_cloned_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181503_issues_edit_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216181503_issues_edit_total_unique_counts_weekly.yml index 012e8cd7364..ad741e44bb6 100644 --- a/config/metrics/counts_7d/20210216181503_issues_edit_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216181503_issues_edit_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181506_i_quickactions_approve_weekly.yml b/config/metrics/counts_7d/20210216181506_i_quickactions_approve_weekly.yml index 1f915d18840..8a9121e954c 100644 --- a/config/metrics/counts_7d/20210216181506_i_quickactions_approve_weekly.yml +++ b/config/metrics/counts_7d/20210216181506_i_quickactions_approve_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181510_i_quickactions_assign_single_weekly.yml b/config/metrics/counts_7d/20210216181510_i_quickactions_assign_single_weekly.yml index ed1ac1fc5a0..d89739ce6fc 100644 --- a/config/metrics/counts_7d/20210216181510_i_quickactions_assign_single_weekly.yml +++ b/config/metrics/counts_7d/20210216181510_i_quickactions_assign_single_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181517_i_quickactions_assign_self_weekly.yml b/config/metrics/counts_7d/20210216181517_i_quickactions_assign_self_weekly.yml index e336ccd4845..dfc0547fbf3 100644 --- a/config/metrics/counts_7d/20210216181517_i_quickactions_assign_self_weekly.yml +++ b/config/metrics/counts_7d/20210216181517_i_quickactions_assign_self_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181521_i_quickactions_assign_reviewer_weekly.yml b/config/metrics/counts_7d/20210216181521_i_quickactions_assign_reviewer_weekly.yml index d17f01ba74d..2482fa44596 100644 --- a/config/metrics/counts_7d/20210216181521_i_quickactions_assign_reviewer_weekly.yml +++ b/config/metrics/counts_7d/20210216181521_i_quickactions_assign_reviewer_weekly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181525_i_quickactions_award_weekly.yml b/config/metrics/counts_7d/20210216181525_i_quickactions_award_weekly.yml index bbf92d15732..f0a6f19180d 100644 --- a/config/metrics/counts_7d/20210216181525_i_quickactions_award_weekly.yml +++ b/config/metrics/counts_7d/20210216181525_i_quickactions_award_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181529_i_quickactions_board_move_weekly.yml b/config/metrics/counts_7d/20210216181529_i_quickactions_board_move_weekly.yml index 58cdfb3d26b..b036a1f2a9a 100644 --- a/config/metrics/counts_7d/20210216181529_i_quickactions_board_move_weekly.yml +++ b/config/metrics/counts_7d/20210216181529_i_quickactions_board_move_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181540_i_quickactions_clone_weekly.yml b/config/metrics/counts_7d/20210216181540_i_quickactions_clone_weekly.yml index 33017355699..cb9ed4dd02f 100644 --- a/config/metrics/counts_7d/20210216181540_i_quickactions_clone_weekly.yml +++ b/config/metrics/counts_7d/20210216181540_i_quickactions_clone_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181543_i_quickactions_close_weekly.yml b/config/metrics/counts_7d/20210216181543_i_quickactions_close_weekly.yml index 1a79c56d6e8..c2fbf0dfad1 100644 --- a/config/metrics/counts_7d/20210216181543_i_quickactions_close_weekly.yml +++ b/config/metrics/counts_7d/20210216181543_i_quickactions_close_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181547_i_quickactions_confidential_weekly.yml b/config/metrics/counts_7d/20210216181547_i_quickactions_confidential_weekly.yml index e45ac092719..952d089c404 100644 --- a/config/metrics/counts_7d/20210216181547_i_quickactions_confidential_weekly.yml +++ b/config/metrics/counts_7d/20210216181547_i_quickactions_confidential_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181551_i_quickactions_copy_metadata_merge_request_weekly.yml b/config/metrics/counts_7d/20210216181551_i_quickactions_copy_metadata_merge_request_weekly.yml index 8ec03c43d6b..66e0558593e 100644 --- a/config/metrics/counts_7d/20210216181551_i_quickactions_copy_metadata_merge_request_weekly.yml +++ b/config/metrics/counts_7d/20210216181551_i_quickactions_copy_metadata_merge_request_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181554_i_quickactions_copy_metadata_issue_weekly.yml b/config/metrics/counts_7d/20210216181554_i_quickactions_copy_metadata_issue_weekly.yml index 3e1767854c9..a55680b9a9f 100644 --- a/config/metrics/counts_7d/20210216181554_i_quickactions_copy_metadata_issue_weekly.yml +++ b/config/metrics/counts_7d/20210216181554_i_quickactions_copy_metadata_issue_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181558_i_quickactions_create_merge_request_weekly.yml b/config/metrics/counts_7d/20210216181558_i_quickactions_create_merge_request_weekly.yml index e030179038c..589f64cb96f 100644 --- a/config/metrics/counts_7d/20210216181558_i_quickactions_create_merge_request_weekly.yml +++ b/config/metrics/counts_7d/20210216181558_i_quickactions_create_merge_request_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181602_i_quickactions_done_weekly.yml b/config/metrics/counts_7d/20210216181602_i_quickactions_done_weekly.yml index 96ae0f4bdde..0d8379ef87c 100644 --- a/config/metrics/counts_7d/20210216181602_i_quickactions_done_weekly.yml +++ b/config/metrics/counts_7d/20210216181602_i_quickactions_done_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181605_i_quickactions_draft_weekly.yml b/config/metrics/counts_7d/20210216181605_i_quickactions_draft_weekly.yml index 6a94f46055c..4722680c905 100644 --- a/config/metrics/counts_7d/20210216181605_i_quickactions_draft_weekly.yml +++ b/config/metrics/counts_7d/20210216181605_i_quickactions_draft_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181609_i_quickactions_due_weekly.yml b/config/metrics/counts_7d/20210216181609_i_quickactions_due_weekly.yml index ad8ecd954cb..c1ab3be82a4 100644 --- a/config/metrics/counts_7d/20210216181609_i_quickactions_due_weekly.yml +++ b/config/metrics/counts_7d/20210216181609_i_quickactions_due_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181613_i_quickactions_duplicate_weekly.yml b/config/metrics/counts_7d/20210216181613_i_quickactions_duplicate_weekly.yml index b19f6c4e9c5..86e7e3f5fe7 100644 --- a/config/metrics/counts_7d/20210216181613_i_quickactions_duplicate_weekly.yml +++ b/config/metrics/counts_7d/20210216181613_i_quickactions_duplicate_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181620_i_quickactions_estimate_weekly.yml b/config/metrics/counts_7d/20210216181620_i_quickactions_estimate_weekly.yml index c2b1deca975..148a58433f7 100644 --- a/config/metrics/counts_7d/20210216181620_i_quickactions_estimate_weekly.yml +++ b/config/metrics/counts_7d/20210216181620_i_quickactions_estimate_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181628_i_quickactions_label_weekly.yml b/config/metrics/counts_7d/20210216181628_i_quickactions_label_weekly.yml index 33928740ec4..9312c4cad2e 100644 --- a/config/metrics/counts_7d/20210216181628_i_quickactions_label_weekly.yml +++ b/config/metrics/counts_7d/20210216181628_i_quickactions_label_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181631_i_quickactions_lock_weekly.yml b/config/metrics/counts_7d/20210216181631_i_quickactions_lock_weekly.yml index 8413b19c2ec..619c94b117b 100644 --- a/config/metrics/counts_7d/20210216181631_i_quickactions_lock_weekly.yml +++ b/config/metrics/counts_7d/20210216181631_i_quickactions_lock_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181635_i_quickactions_merge_weekly.yml b/config/metrics/counts_7d/20210216181635_i_quickactions_merge_weekly.yml index df13bddbd8e..6bacac4beb7 100644 --- a/config/metrics/counts_7d/20210216181635_i_quickactions_merge_weekly.yml +++ b/config/metrics/counts_7d/20210216181635_i_quickactions_merge_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181639_i_quickactions_milestone_weekly.yml b/config/metrics/counts_7d/20210216181639_i_quickactions_milestone_weekly.yml index 0137107ab43..1db5048970d 100644 --- a/config/metrics/counts_7d/20210216181639_i_quickactions_milestone_weekly.yml +++ b/config/metrics/counts_7d/20210216181639_i_quickactions_milestone_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181642_i_quickactions_move_weekly.yml b/config/metrics/counts_7d/20210216181642_i_quickactions_move_weekly.yml index 810818ffc70..00b5e9db85c 100644 --- a/config/metrics/counts_7d/20210216181642_i_quickactions_move_weekly.yml +++ b/config/metrics/counts_7d/20210216181642_i_quickactions_move_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181657_i_quickactions_reassign_weekly.yml b/config/metrics/counts_7d/20210216181657_i_quickactions_reassign_weekly.yml index a80048aed62..488f5dcd547 100644 --- a/config/metrics/counts_7d/20210216181657_i_quickactions_reassign_weekly.yml +++ b/config/metrics/counts_7d/20210216181657_i_quickactions_reassign_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181701_i_quickactions_reassign_reviewer_weekly.yml b/config/metrics/counts_7d/20210216181701_i_quickactions_reassign_reviewer_weekly.yml index 7e09271ddf3..be7648f6fc9 100644 --- a/config/metrics/counts_7d/20210216181701_i_quickactions_reassign_reviewer_weekly.yml +++ b/config/metrics/counts_7d/20210216181701_i_quickactions_reassign_reviewer_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181705_i_quickactions_rebase_weekly.yml b/config/metrics/counts_7d/20210216181705_i_quickactions_rebase_weekly.yml index bf596027a02..fd68d75a7d1 100644 --- a/config/metrics/counts_7d/20210216181705_i_quickactions_rebase_weekly.yml +++ b/config/metrics/counts_7d/20210216181705_i_quickactions_rebase_weekly.yml @@ -7,7 +7,7 @@ product_stage: source_code product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181708_i_quickactions_relabel_weekly.yml b/config/metrics/counts_7d/20210216181708_i_quickactions_relabel_weekly.yml index de85db7cb39..d25540e9127 100644 --- a/config/metrics/counts_7d/20210216181708_i_quickactions_relabel_weekly.yml +++ b/config/metrics/counts_7d/20210216181708_i_quickactions_relabel_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181712_i_quickactions_relate_weekly.yml b/config/metrics/counts_7d/20210216181712_i_quickactions_relate_weekly.yml index e80b23ea8de..6114b6340da 100644 --- a/config/metrics/counts_7d/20210216181712_i_quickactions_relate_weekly.yml +++ b/config/metrics/counts_7d/20210216181712_i_quickactions_relate_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181719_i_quickactions_remove_due_date_weekly.yml b/config/metrics/counts_7d/20210216181719_i_quickactions_remove_due_date_weekly.yml index 59b7e03fa13..b0fe3966750 100644 --- a/config/metrics/counts_7d/20210216181719_i_quickactions_remove_due_date_weekly.yml +++ b/config/metrics/counts_7d/20210216181719_i_quickactions_remove_due_date_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181727_i_quickactions_remove_estimate_weekly.yml b/config/metrics/counts_7d/20210216181727_i_quickactions_remove_estimate_weekly.yml index 8d9f7b59755..181533aa209 100644 --- a/config/metrics/counts_7d/20210216181727_i_quickactions_remove_estimate_weekly.yml +++ b/config/metrics/counts_7d/20210216181727_i_quickactions_remove_estimate_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181734_i_quickactions_remove_milestone_weekly.yml b/config/metrics/counts_7d/20210216181734_i_quickactions_remove_milestone_weekly.yml index 5ffdd8b8975..fa4c059c8a3 100644 --- a/config/metrics/counts_7d/20210216181734_i_quickactions_remove_milestone_weekly.yml +++ b/config/metrics/counts_7d/20210216181734_i_quickactions_remove_milestone_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181742_i_quickactions_remove_time_spent_weekly.yml b/config/metrics/counts_7d/20210216181742_i_quickactions_remove_time_spent_weekly.yml index d8212779775..884c0b82e08 100644 --- a/config/metrics/counts_7d/20210216181742_i_quickactions_remove_time_spent_weekly.yml +++ b/config/metrics/counts_7d/20210216181742_i_quickactions_remove_time_spent_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181745_i_quickactions_remove_zoom_weekly.yml b/config/metrics/counts_7d/20210216181745_i_quickactions_remove_zoom_weekly.yml index a2b3f2f86fa..5bace9a2061 100644 --- a/config/metrics/counts_7d/20210216181745_i_quickactions_remove_zoom_weekly.yml +++ b/config/metrics/counts_7d/20210216181745_i_quickactions_remove_zoom_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181749_i_quickactions_reopen_weekly.yml b/config/metrics/counts_7d/20210216181749_i_quickactions_reopen_weekly.yml index 8c1d5bfa600..fe59955bc03 100644 --- a/config/metrics/counts_7d/20210216181749_i_quickactions_reopen_weekly.yml +++ b/config/metrics/counts_7d/20210216181749_i_quickactions_reopen_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181753_i_quickactions_shrug_weekly.yml b/config/metrics/counts_7d/20210216181753_i_quickactions_shrug_weekly.yml index c7883a9ea2e..7e984753739 100644 --- a/config/metrics/counts_7d/20210216181753_i_quickactions_shrug_weekly.yml +++ b/config/metrics/counts_7d/20210216181753_i_quickactions_shrug_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181756_i_quickactions_spend_subtract_weekly.yml b/config/metrics/counts_7d/20210216181756_i_quickactions_spend_subtract_weekly.yml index bff255cb017..7225a40b37b 100644 --- a/config/metrics/counts_7d/20210216181756_i_quickactions_spend_subtract_weekly.yml +++ b/config/metrics/counts_7d/20210216181756_i_quickactions_spend_subtract_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: time_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181800_i_quickactions_spend_add_weekly.yml b/config/metrics/counts_7d/20210216181800_i_quickactions_spend_add_weekly.yml index 92f73c81547..5cc536093c5 100644 --- a/config/metrics/counts_7d/20210216181800_i_quickactions_spend_add_weekly.yml +++ b/config/metrics/counts_7d/20210216181800_i_quickactions_spend_add_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181804_i_quickactions_submit_review_weekly.yml b/config/metrics/counts_7d/20210216181804_i_quickactions_submit_review_weekly.yml index 55f71f96d00..9a70b3d8e26 100644 --- a/config/metrics/counts_7d/20210216181804_i_quickactions_submit_review_weekly.yml +++ b/config/metrics/counts_7d/20210216181804_i_quickactions_submit_review_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181808_i_quickactions_subscribe_weekly.yml b/config/metrics/counts_7d/20210216181808_i_quickactions_subscribe_weekly.yml index 4e9a79304ae..aeffa97de1f 100644 --- a/config/metrics/counts_7d/20210216181808_i_quickactions_subscribe_weekly.yml +++ b/config/metrics/counts_7d/20210216181808_i_quickactions_subscribe_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181811_i_quickactions_tableflip_weekly.yml b/config/metrics/counts_7d/20210216181811_i_quickactions_tableflip_weekly.yml index ad11e7956b3..0b2d759771a 100644 --- a/config/metrics/counts_7d/20210216181811_i_quickactions_tableflip_weekly.yml +++ b/config/metrics/counts_7d/20210216181811_i_quickactions_tableflip_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181815_i_quickactions_tag_weekly.yml b/config/metrics/counts_7d/20210216181815_i_quickactions_tag_weekly.yml index 4b5c11b0c72..d7073ac8378 100644 --- a/config/metrics/counts_7d/20210216181815_i_quickactions_tag_weekly.yml +++ b/config/metrics/counts_7d/20210216181815_i_quickactions_tag_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181819_i_quickactions_target_branch_weekly.yml b/config/metrics/counts_7d/20210216181819_i_quickactions_target_branch_weekly.yml index de097f7d2f9..6741280b2e4 100644 --- a/config/metrics/counts_7d/20210216181819_i_quickactions_target_branch_weekly.yml +++ b/config/metrics/counts_7d/20210216181819_i_quickactions_target_branch_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181822_i_quickactions_title_weekly.yml b/config/metrics/counts_7d/20210216181822_i_quickactions_title_weekly.yml index 775a8ee2d02..30b60d472ff 100644 --- a/config/metrics/counts_7d/20210216181822_i_quickactions_title_weekly.yml +++ b/config/metrics/counts_7d/20210216181822_i_quickactions_title_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181826_i_quickactions_todo_weekly.yml b/config/metrics/counts_7d/20210216181826_i_quickactions_todo_weekly.yml index 7116cf18e89..1752c3a4fd4 100644 --- a/config/metrics/counts_7d/20210216181826_i_quickactions_todo_weekly.yml +++ b/config/metrics/counts_7d/20210216181826_i_quickactions_todo_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181830_i_quickactions_unassign_specific_weekly.yml b/config/metrics/counts_7d/20210216181830_i_quickactions_unassign_specific_weekly.yml index 8eccbb4b823..fe8532e5e47 100644 --- a/config/metrics/counts_7d/20210216181830_i_quickactions_unassign_specific_weekly.yml +++ b/config/metrics/counts_7d/20210216181830_i_quickactions_unassign_specific_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181833_i_quickactions_unassign_all_weekly.yml b/config/metrics/counts_7d/20210216181833_i_quickactions_unassign_all_weekly.yml index 5d63011692c..c9b473cc2de 100644 --- a/config/metrics/counts_7d/20210216181833_i_quickactions_unassign_all_weekly.yml +++ b/config/metrics/counts_7d/20210216181833_i_quickactions_unassign_all_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181837_i_quickactions_unassign_reviewer_weekly.yml b/config/metrics/counts_7d/20210216181837_i_quickactions_unassign_reviewer_weekly.yml index b40e84af969..8b3be77a180 100644 --- a/config/metrics/counts_7d/20210216181837_i_quickactions_unassign_reviewer_weekly.yml +++ b/config/metrics/counts_7d/20210216181837_i_quickactions_unassign_reviewer_weekly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181841_i_quickactions_unlabel_specific_weekly.yml b/config/metrics/counts_7d/20210216181841_i_quickactions_unlabel_specific_weekly.yml index bc6869715d3..1725a41355f 100644 --- a/config/metrics/counts_7d/20210216181841_i_quickactions_unlabel_specific_weekly.yml +++ b/config/metrics/counts_7d/20210216181841_i_quickactions_unlabel_specific_weekly.yml @@ -8,7 +8,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181845_i_quickactions_unlabel_all_weekly.yml b/config/metrics/counts_7d/20210216181845_i_quickactions_unlabel_all_weekly.yml index bda75ebe100..314d0520116 100644 --- a/config/metrics/counts_7d/20210216181845_i_quickactions_unlabel_all_weekly.yml +++ b/config/metrics/counts_7d/20210216181845_i_quickactions_unlabel_all_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181848_i_quickactions_unlock_weekly.yml b/config/metrics/counts_7d/20210216181848_i_quickactions_unlock_weekly.yml index 7a25822cbc1..e43a93bcb14 100644 --- a/config/metrics/counts_7d/20210216181848_i_quickactions_unlock_weekly.yml +++ b/config/metrics/counts_7d/20210216181848_i_quickactions_unlock_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181852_i_quickactions_unsubscribe_weekly.yml b/config/metrics/counts_7d/20210216181852_i_quickactions_unsubscribe_weekly.yml index 8c0e0cb8d80..02d944eca4f 100644 --- a/config/metrics/counts_7d/20210216181852_i_quickactions_unsubscribe_weekly.yml +++ b/config/metrics/counts_7d/20210216181852_i_quickactions_unsubscribe_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181859_i_quickactions_wip_weekly.yml b/config/metrics/counts_7d/20210216181859_i_quickactions_wip_weekly.yml index bbfba240a9e..c5d3ed1a478 100644 --- a/config/metrics/counts_7d/20210216181859_i_quickactions_wip_weekly.yml +++ b/config/metrics/counts_7d/20210216181859_i_quickactions_wip_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216181903_i_quickactions_zoom_weekly.yml b/config/metrics/counts_7d/20210216181903_i_quickactions_zoom_weekly.yml index 3955f88e9b8..5f60ce53ab5 100644 --- a/config/metrics/counts_7d/20210216181903_i_quickactions_zoom_weekly.yml +++ b/config/metrics/counts_7d/20210216181903_i_quickactions_zoom_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216182100_wiki_action_weekly.yml b/config/metrics/counts_7d/20210216182100_wiki_action_weekly.yml index 3f0da3b37b4..550d825a1e8 100644 --- a/config/metrics/counts_7d/20210216182100_wiki_action_weekly.yml +++ b/config/metrics/counts_7d/20210216182100_wiki_action_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216182104_design_action_weekly.yml b/config/metrics/counts_7d/20210216182104_design_action_weekly.yml index f2431232de7..75b340a8ad5 100644 --- a/config/metrics/counts_7d/20210216182104_design_action_weekly.yml +++ b/config/metrics/counts_7d/20210216182104_design_action_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216182107_project_action_weekly.yml b/config/metrics/counts_7d/20210216182107_project_action_weekly.yml index f8156a1d893..21f857dac99 100644 --- a/config/metrics/counts_7d/20210216182107_project_action_weekly.yml +++ b/config/metrics/counts_7d/20210216182107_project_action_weekly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216182134_i_testing_test_case_parsed_weekly.yml b/config/metrics/counts_7d/20210216182134_i_testing_test_case_parsed_weekly.yml index 99ffc84ebef..94748444af5 100644 --- a/config/metrics/counts_7d/20210216182134_i_testing_test_case_parsed_weekly.yml +++ b/config/metrics/counts_7d/20210216182134_i_testing_test_case_parsed_weekly.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::testing product_category: code_testing value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184022_g_edit_by_sse_weekly.yml b/config/metrics/counts_7d/20210216184022_g_edit_by_sse_weekly.yml index f9e751ba88f..a903ce2ceea 100644 --- a/config/metrics/counts_7d/20210216184022_g_edit_by_sse_weekly.yml +++ b/config/metrics/counts_7d/20210216184022_g_edit_by_sse_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184045_git_write_action_weekly.yml b/config/metrics/counts_7d/20210216184045_git_write_action_weekly.yml index 7942c3827e2..7c49c843167 100644 --- a/config/metrics/counts_7d/20210216184045_git_write_action_weekly.yml +++ b/config/metrics/counts_7d/20210216184045_git_write_action_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184253_i_snippets_show_weekly.yml b/config/metrics/counts_7d/20210216184253_i_snippets_show_weekly.yml index 7464bb5363a..7fd1d24d098 100644 --- a/config/metrics/counts_7d/20210216184253_i_snippets_show_weekly.yml +++ b/config/metrics/counts_7d/20210216184253_i_snippets_show_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184257_p_terraform_state_api_unique_users_weekly.yml b/config/metrics/counts_7d/20210216184257_p_terraform_state_api_unique_users_weekly.yml index 0d3728cc73a..bb33cc5bed5 100644 --- a/config/metrics/counts_7d/20210216184257_p_terraform_state_api_unique_users_weekly.yml +++ b/config/metrics/counts_7d/20210216184257_p_terraform_state_api_unique_users_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184301_o_pipeline_authoring_unique_users_committing_ciconfigfile_weekly.yml b/config/metrics/counts_7d/20210216184301_o_pipeline_authoring_unique_users_committing_ciconfigfile_weekly.yml index 7384cb6f3d0..eaf4f7780cd 100644 --- a/config/metrics/counts_7d/20210216184301_o_pipeline_authoring_unique_users_committing_ciconfigfile_weekly.yml +++ b/config/metrics/counts_7d/20210216184301_o_pipeline_authoring_unique_users_committing_ciconfigfile_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184310_i_code_review_user_toggled_task_item_status_weekly.yml b/config/metrics/counts_7d/20210216184310_i_code_review_user_toggled_task_item_status_weekly.yml index ace60e321d0..892bafaadd6 100644 --- a/config/metrics/counts_7d/20210216184310_i_code_review_user_toggled_task_item_status_weekly.yml +++ b/config/metrics/counts_7d/20210216184310_i_code_review_user_toggled_task_item_status_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184320_i_code_review_user_approve_mr_weekly.yml b/config/metrics/counts_7d/20210216184320_i_code_review_user_approve_mr_weekly.yml index 627bd8b1c43..6f4de7ac49e 100644 --- a/config/metrics/counts_7d/20210216184320_i_code_review_user_approve_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216184320_i_code_review_user_approve_mr_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184324_i_code_review_user_unapprove_mr_weekly.yml b/config/metrics/counts_7d/20210216184324_i_code_review_user_unapprove_mr_weekly.yml index 927cfaa6455..756bbea7657 100644 --- a/config/metrics/counts_7d/20210216184324_i_code_review_user_unapprove_mr_weekly.yml +++ b/config/metrics/counts_7d/20210216184324_i_code_review_user_unapprove_mr_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184328_i_code_review_user_resolve_thread_weekly.yml b/config/metrics/counts_7d/20210216184328_i_code_review_user_resolve_thread_weekly.yml index a11d060c9eb..7cff71aa29c 100644 --- a/config/metrics/counts_7d/20210216184328_i_code_review_user_resolve_thread_weekly.yml +++ b/config/metrics/counts_7d/20210216184328_i_code_review_user_resolve_thread_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184332_i_code_review_user_unresolve_thread_weekly.yml b/config/metrics/counts_7d/20210216184332_i_code_review_user_unresolve_thread_weekly.yml index da806241cf2..20171f95fd3 100644 --- a/config/metrics/counts_7d/20210216184332_i_code_review_user_unresolve_thread_weekly.yml +++ b/config/metrics/counts_7d/20210216184332_i_code_review_user_unresolve_thread_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184336_i_code_review_edit_mr_title_weekly.yml b/config/metrics/counts_7d/20210216184336_i_code_review_edit_mr_title_weekly.yml index 4fcbf64ca40..5e56eaaa837 100644 --- a/config/metrics/counts_7d/20210216184336_i_code_review_edit_mr_title_weekly.yml +++ b/config/metrics/counts_7d/20210216184336_i_code_review_edit_mr_title_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184340_i_code_review_edit_mr_desc_weekly.yml b/config/metrics/counts_7d/20210216184340_i_code_review_edit_mr_desc_weekly.yml index d60e13e81e4..3c7a7f7d82a 100644 --- a/config/metrics/counts_7d/20210216184340_i_code_review_edit_mr_desc_weekly.yml +++ b/config/metrics/counts_7d/20210216184340_i_code_review_edit_mr_desc_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184351_i_code_review_user_create_review_note_weekly.yml b/config/metrics/counts_7d/20210216184351_i_code_review_user_create_review_note_weekly.yml index 37a0c331d7d..6b91ab4102f 100644 --- a/config/metrics/counts_7d/20210216184351_i_code_review_user_create_review_note_weekly.yml +++ b/config/metrics/counts_7d/20210216184351_i_code_review_user_create_review_note_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184355_i_code_review_user_publish_review_weekly.yml b/config/metrics/counts_7d/20210216184355_i_code_review_user_publish_review_weekly.yml index aea4044fb8e..20c4c9cef5e 100644 --- a/config/metrics/counts_7d/20210216184355_i_code_review_user_publish_review_weekly.yml +++ b/config/metrics/counts_7d/20210216184355_i_code_review_user_publish_review_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184359_i_code_review_user_create_multiline_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216184359_i_code_review_user_create_multiline_mr_comment_weekly.yml index 501f9312a89..26300d52dce 100644 --- a/config/metrics/counts_7d/20210216184359_i_code_review_user_create_multiline_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216184359_i_code_review_user_create_multiline_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184403_i_code_review_user_edit_multiline_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216184403_i_code_review_user_edit_multiline_mr_comment_weekly.yml index 28f343965f4..2cbae1dff37 100644 --- a/config/metrics/counts_7d/20210216184403_i_code_review_user_edit_multiline_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216184403_i_code_review_user_edit_multiline_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184407_i_code_review_user_remove_multiline_mr_comment_weekly.yml b/config/metrics/counts_7d/20210216184407_i_code_review_user_remove_multiline_mr_comment_weekly.yml index 4e288fb4985..1d80969f63a 100644 --- a/config/metrics/counts_7d/20210216184407_i_code_review_user_remove_multiline_mr_comment_weekly.yml +++ b/config/metrics/counts_7d/20210216184407_i_code_review_user_remove_multiline_mr_comment_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184416_i_code_review_user_assigned_weekly.yml b/config/metrics/counts_7d/20210216184416_i_code_review_user_assigned_weekly.yml index f7ec2075678..741f8ff83fc 100644 --- a/config/metrics/counts_7d/20210216184416_i_code_review_user_assigned_weekly.yml +++ b/config/metrics/counts_7d/20210216184416_i_code_review_user_assigned_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184420_i_code_review_user_marked_as_draft_weekly.yml b/config/metrics/counts_7d/20210216184420_i_code_review_user_marked_as_draft_weekly.yml index dd37cefc18d..960a9b18987 100644 --- a/config/metrics/counts_7d/20210216184420_i_code_review_user_marked_as_draft_weekly.yml +++ b/config/metrics/counts_7d/20210216184420_i_code_review_user_marked_as_draft_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184424_i_code_review_user_unmarked_as_draft_weekly.yml b/config/metrics/counts_7d/20210216184424_i_code_review_user_unmarked_as_draft_weekly.yml index eb7abf2d1b7..76a7a4a97ab 100644 --- a/config/metrics/counts_7d/20210216184424_i_code_review_user_unmarked_as_draft_weekly.yml +++ b/config/metrics/counts_7d/20210216184424_i_code_review_user_unmarked_as_draft_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184428_i_code_review_user_review_requested_weekly.yml b/config/metrics/counts_7d/20210216184428_i_code_review_user_review_requested_weekly.yml index d0423ec2cb0..70b88e97e20 100644 --- a/config/metrics/counts_7d/20210216184428_i_code_review_user_review_requested_weekly.yml +++ b/config/metrics/counts_7d/20210216184428_i_code_review_user_review_requested_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184432_i_code_review_user_approval_rule_added_weekly.yml b/config/metrics/counts_7d/20210216184432_i_code_review_user_approval_rule_added_weekly.yml index eecd6f8a8bf..038f53b62a9 100644 --- a/config/metrics/counts_7d/20210216184432_i_code_review_user_approval_rule_added_weekly.yml +++ b/config/metrics/counts_7d/20210216184432_i_code_review_user_approval_rule_added_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184436_i_code_review_user_approval_rule_deleted_weekly.yml b/config/metrics/counts_7d/20210216184436_i_code_review_user_approval_rule_deleted_weekly.yml index 9e103b54f2c..8a7b2c31194 100644 --- a/config/metrics/counts_7d/20210216184436_i_code_review_user_approval_rule_deleted_weekly.yml +++ b/config/metrics/counts_7d/20210216184436_i_code_review_user_approval_rule_deleted_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184440_i_code_review_user_approval_rule_edited_weekly.yml b/config/metrics/counts_7d/20210216184440_i_code_review_user_approval_rule_edited_weekly.yml index 7c07dc5aa9b..b5831569160 100644 --- a/config/metrics/counts_7d/20210216184440_i_code_review_user_approval_rule_edited_weekly.yml +++ b/config/metrics/counts_7d/20210216184440_i_code_review_user_approval_rule_edited_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184444_i_code_review_user_vs_code_api_request_weekly.yml b/config/metrics/counts_7d/20210216184444_i_code_review_user_vs_code_api_request_weekly.yml index 9c4f70f94ff..cab4aa62b43 100644 --- a/config/metrics/counts_7d/20210216184444_i_code_review_user_vs_code_api_request_weekly.yml +++ b/config/metrics/counts_7d/20210216184444_i_code_review_user_vs_code_api_request_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: editor_extension value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184448_i_code_review_user_create_mr_from_issue_weekly.yml b/config/metrics/counts_7d/20210216184448_i_code_review_user_create_mr_from_issue_weekly.yml index ff94cbe89e7..53a18b79605 100644 --- a/config/metrics/counts_7d/20210216184448_i_code_review_user_create_mr_from_issue_weekly.yml +++ b/config/metrics/counts_7d/20210216184448_i_code_review_user_create_mr_from_issue_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184452_code_review_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216184452_code_review_total_unique_counts_weekly.yml index 79d205695b5..24f82a6a442 100644 --- a/config/metrics/counts_7d/20210216184452_code_review_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216184452_code_review_total_unique_counts_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184456_p_ci_templates_implicit_auto_devops_weekly.yml b/config/metrics/counts_7d/20210216184456_p_ci_templates_implicit_auto_devops_weekly.yml index 7f9172b070d..a6db13c8904 100644 --- a/config/metrics/counts_7d/20210216184456_p_ci_templates_implicit_auto_devops_weekly.yml +++ b/config/metrics/counts_7d/20210216184456_p_ci_templates_implicit_auto_devops_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184500_p_ci_templates_implicit_auto_devops_build_weekly.yml b/config/metrics/counts_7d/20210216184500_p_ci_templates_implicit_auto_devops_build_weekly.yml index 8f342298fcf..fbfb93ded5a 100644 --- a/config/metrics/counts_7d/20210216184500_p_ci_templates_implicit_auto_devops_build_weekly.yml +++ b/config/metrics/counts_7d/20210216184500_p_ci_templates_implicit_auto_devops_build_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184504_p_ci_templates_implicit_auto_devops_deploy_weekly.yml b/config/metrics/counts_7d/20210216184504_p_ci_templates_implicit_auto_devops_deploy_weekly.yml index 8fdf265ca3e..0b05e776c70 100644 --- a/config/metrics/counts_7d/20210216184504_p_ci_templates_implicit_auto_devops_deploy_weekly.yml +++ b/config/metrics/counts_7d/20210216184504_p_ci_templates_implicit_auto_devops_deploy_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184508_p_ci_templates_implicit_security_sast_weekly.yml b/config/metrics/counts_7d/20210216184508_p_ci_templates_implicit_security_sast_weekly.yml index 055607feaa5..2a70231dcac 100644 --- a/config/metrics/counts_7d/20210216184508_p_ci_templates_implicit_security_sast_weekly.yml +++ b/config/metrics/counts_7d/20210216184508_p_ci_templates_implicit_security_sast_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: SAST value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184512_p_ci_templates_implicit_security_secret_detection_weekly.yml b/config/metrics/counts_7d/20210216184512_p_ci_templates_implicit_security_secret_detection_weekly.yml index e23ce374339..c7673adedfd 100644 --- a/config/metrics/counts_7d/20210216184512_p_ci_templates_implicit_security_secret_detection_weekly.yml +++ b/config/metrics/counts_7d/20210216184512_p_ci_templates_implicit_security_secret_detection_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: secret_detection value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184515_p_ci_templates_5_min_production_app_weekly.yml b/config/metrics/counts_7d/20210216184515_p_ci_templates_5_min_production_app_weekly.yml index 54aa24ca548..45fe5e380f5 100644 --- a/config/metrics/counts_7d/20210216184515_p_ci_templates_5_min_production_app_weekly.yml +++ b/config/metrics/counts_7d/20210216184515_p_ci_templates_5_min_production_app_weekly.yml @@ -7,7 +7,7 @@ product_stage: deploy product_group: group::5-min-app product_category: five_minute_production_app value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184520_p_ci_templates_auto_devops_weekly.yml b/config/metrics/counts_7d/20210216184520_p_ci_templates_auto_devops_weekly.yml index 3e4063ead11..606fed4b823 100644 --- a/config/metrics/counts_7d/20210216184520_p_ci_templates_auto_devops_weekly.yml +++ b/config/metrics/counts_7d/20210216184520_p_ci_templates_auto_devops_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184524_p_ci_templates_aws_cf_deploy_ec2_weekly.yml b/config/metrics/counts_7d/20210216184524_p_ci_templates_aws_cf_deploy_ec2_weekly.yml index de19f9d176c..adc12342146 100644 --- a/config/metrics/counts_7d/20210216184524_p_ci_templates_aws_cf_deploy_ec2_weekly.yml +++ b/config/metrics/counts_7d/20210216184524_p_ci_templates_aws_cf_deploy_ec2_weekly.yml @@ -8,7 +8,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184528_p_ci_templates_aws_deploy_ecs_weekly.yml b/config/metrics/counts_7d/20210216184528_p_ci_templates_aws_deploy_ecs_weekly.yml index ac3725c6425..f5e03b1fbcb 100644 --- a/config/metrics/counts_7d/20210216184528_p_ci_templates_aws_deploy_ecs_weekly.yml +++ b/config/metrics/counts_7d/20210216184528_p_ci_templates_aws_deploy_ecs_weekly.yml @@ -8,7 +8,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184536_p_ci_templates_auto_devops_deploy_weekly.yml b/config/metrics/counts_7d/20210216184536_p_ci_templates_auto_devops_deploy_weekly.yml index bedada35d03..b01a0288228 100644 --- a/config/metrics/counts_7d/20210216184536_p_ci_templates_auto_devops_deploy_weekly.yml +++ b/config/metrics/counts_7d/20210216184536_p_ci_templates_auto_devops_deploy_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210216184540_p_ci_templates_auto_devops_deploy_latest_weekly.yml b/config/metrics/counts_7d/20210216184540_p_ci_templates_auto_devops_deploy_latest_weekly.yml index c65e7471058..59f9f25aa06 100644 --- a/config/metrics/counts_7d/20210216184540_p_ci_templates_auto_devops_deploy_latest_weekly.yml +++ b/config/metrics/counts_7d/20210216184540_p_ci_templates_auto_devops_deploy_latest_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184544_p_ci_templates_security_sast_weekly.yml b/config/metrics/counts_7d/20210216184544_p_ci_templates_security_sast_weekly.yml index 904b9f43c68..07fa0b9ca40 100644 --- a/config/metrics/counts_7d/20210216184544_p_ci_templates_security_sast_weekly.yml +++ b/config/metrics/counts_7d/20210216184544_p_ci_templates_security_sast_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: SAST value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184549_p_ci_templates_security_secret_detection_weekly.yml b/config/metrics/counts_7d/20210216184549_p_ci_templates_security_secret_detection_weekly.yml index 8140f435ae1..d73981915e1 100644 --- a/config/metrics/counts_7d/20210216184549_p_ci_templates_security_secret_detection_weekly.yml +++ b/config/metrics/counts_7d/20210216184549_p_ci_templates_security_secret_detection_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: "group::static analysis" product_category: secret_detection value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184553_p_ci_templates_terraform_base_latest_weekly.yml b/config/metrics/counts_7d/20210216184553_p_ci_templates_terraform_base_latest_weekly.yml index 499b8dd7a73..d17d8c10e55 100644 --- a/config/metrics/counts_7d/20210216184553_p_ci_templates_terraform_base_latest_weekly.yml +++ b/config/metrics/counts_7d/20210216184553_p_ci_templates_terraform_base_latest_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184801_quickactions_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216184801_quickactions_total_unique_counts_weekly.yml index 19271e4192e..e4826e6575c 100644 --- a/config/metrics/counts_7d/20210216184801_quickactions_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216184801_quickactions_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184808_i_package_conan_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184808_i_package_conan_deploy_token_weekly.yml index b4935dfe474..f2c52f8b08a 100644 --- a/config/metrics/counts_7d/20210216184808_i_package_conan_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184808_i_package_conan_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184820_i_package_generic_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184820_i_package_generic_deploy_token_weekly.yml index ffee733e5b8..02bc59f30d8 100644 --- a/config/metrics/counts_7d/20210216184820_i_package_generic_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184820_i_package_generic_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184828_i_package_maven_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184828_i_package_maven_deploy_token_weekly.yml index 496c431a57f..e4edfff33a7 100644 --- a/config/metrics/counts_7d/20210216184828_i_package_maven_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184828_i_package_maven_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184832_i_package_npm_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184832_i_package_npm_deploy_token_weekly.yml index 8f3f42d6de9..95e1f413b12 100644 --- a/config/metrics/counts_7d/20210216184832_i_package_npm_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184832_i_package_npm_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184836_i_package_nuget_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184836_i_package_nuget_deploy_token_weekly.yml index 95389779948..55d3a87db45 100644 --- a/config/metrics/counts_7d/20210216184836_i_package_nuget_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184836_i_package_nuget_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184840_i_package_pypi_deploy_token_weekly.yml b/config/metrics/counts_7d/20210216184840_i_package_pypi_deploy_token_weekly.yml index b949da1246b..14c71a5ab70 100644 --- a/config/metrics/counts_7d/20210216184840_i_package_pypi_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210216184840_i_package_pypi_deploy_token_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184848_deploy_token_packages_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216184848_deploy_token_packages_total_unique_counts_weekly.yml index 2f7b4bbcd56..4a90ff637d6 100644 --- a/config/metrics/counts_7d/20210216184848_deploy_token_packages_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216184848_deploy_token_packages_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184852_i_package_composer_user_weekly.yml b/config/metrics/counts_7d/20210216184852_i_package_composer_user_weekly.yml index 4f3e5272af0..8ffcc7acc57 100644 --- a/config/metrics/counts_7d/20210216184852_i_package_composer_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184852_i_package_composer_user_weekly.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184856_i_package_conan_user_weekly.yml b/config/metrics/counts_7d/20210216184856_i_package_conan_user_weekly.yml index 1a9376cda80..dbca15deac9 100644 --- a/config/metrics/counts_7d/20210216184856_i_package_conan_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184856_i_package_conan_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184916_i_package_maven_user_weekly.yml b/config/metrics/counts_7d/20210216184916_i_package_maven_user_weekly.yml index 2d2e9b135d3..170c03065e5 100644 --- a/config/metrics/counts_7d/20210216184916_i_package_maven_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184916_i_package_maven_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184919_i_package_npm_user_weekly.yml b/config/metrics/counts_7d/20210216184919_i_package_npm_user_weekly.yml index e0ceebc835f..6f340c74ae9 100644 --- a/config/metrics/counts_7d/20210216184919_i_package_npm_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184919_i_package_npm_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184923_i_package_nuget_user_weekly.yml b/config/metrics/counts_7d/20210216184923_i_package_nuget_user_weekly.yml index f71ac914e7f..ff0c7edfe44 100644 --- a/config/metrics/counts_7d/20210216184923_i_package_nuget_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184923_i_package_nuget_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184927_i_package_pypi_user_weekly.yml b/config/metrics/counts_7d/20210216184927_i_package_pypi_user_weekly.yml index 9a0e63ec183..9d227bf4d9e 100644 --- a/config/metrics/counts_7d/20210216184927_i_package_pypi_user_weekly.yml +++ b/config/metrics/counts_7d/20210216184927_i_package_pypi_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184935_user_packages_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216184935_user_packages_total_unique_counts_weekly.yml index 8d2dbc3e4f8..1bd4181f952 100644 --- a/config/metrics/counts_7d/20210216184935_user_packages_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216184935_user_packages_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184939_i_ecosystem_jira_service_close_issue_weekly.yml b/config/metrics/counts_7d/20210216184939_i_ecosystem_jira_service_close_issue_weekly.yml index 3d3d04efae2..33004c0a8a8 100644 --- a/config/metrics/counts_7d/20210216184939_i_ecosystem_jira_service_close_issue_weekly.yml +++ b/config/metrics/counts_7d/20210216184939_i_ecosystem_jira_service_close_issue_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184943_i_ecosystem_jira_service_cross_reference_weekly.yml b/config/metrics/counts_7d/20210216184943_i_ecosystem_jira_service_cross_reference_weekly.yml index 2c9de3b6509..193fe8cef3a 100644 --- a/config/metrics/counts_7d/20210216184943_i_ecosystem_jira_service_cross_reference_weekly.yml +++ b/config/metrics/counts_7d/20210216184943_i_ecosystem_jira_service_cross_reference_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210216184955_ecosystem_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210216184955_ecosystem_total_unique_counts_weekly.yml index e5c32cb611a..6f1332ca69e 100644 --- a/config/metrics/counts_7d/20210216184955_ecosystem_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210216184955_ecosystem_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: 7d data_source: redis_hll instrumentation_class: RedisHLLMetric diff --git a/config/metrics/counts_7d/20210301144209_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_weekly.yml b/config/metrics/counts_7d/20210301144209_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_weekly.yml index d5ae76cfb97..a9622709a20 100644 --- a/config/metrics/counts_7d/20210301144209_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_weekly.yml +++ b/config/metrics/counts_7d/20210301144209_o_pipeline_authoring_unique_users_pushing_mr_ciconfigfile_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54707 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103002_i_ecosystem_slack_service_issue_notification_weekly.yml b/config/metrics/counts_7d/20210302103002_i_ecosystem_slack_service_issue_notification_weekly.yml index 3049dc64068..343f01e8223 100644 --- a/config/metrics/counts_7d/20210302103002_i_ecosystem_slack_service_issue_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302103002_i_ecosystem_slack_service_issue_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103539_i_code_review_user_time_estimate_changed_weekly.yml b/config/metrics/counts_7d/20210302103539_i_code_review_user_time_estimate_changed_weekly.yml index 42817360fb6..ae24bce7880 100644 --- a/config/metrics/counts_7d/20210302103539_i_code_review_user_time_estimate_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302103539_i_code_review_user_time_estimate_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55046 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103615_i_code_review_user_time_spent_changed_weekly.yml b/config/metrics/counts_7d/20210302103615_i_code_review_user_time_spent_changed_weekly.yml index 6acc51a14ee..1f184726f6e 100644 --- a/config/metrics/counts_7d/20210302103615_i_code_review_user_time_spent_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302103615_i_code_review_user_time_spent_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55046 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103629_i_ecosystem_slack_service_push_notification_weekly.yml b/config/metrics/counts_7d/20210302103629_i_ecosystem_slack_service_push_notification_weekly.yml index 55cb6bcbcb2..7dc1fef5996 100644 --- a/config/metrics/counts_7d/20210302103629_i_ecosystem_slack_service_push_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302103629_i_ecosystem_slack_service_push_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103755_i_ecosystem_slack_service_deployment_notification_weekly.yml b/config/metrics/counts_7d/20210302103755_i_ecosystem_slack_service_deployment_notification_weekly.yml index 76c34c102b1..7c5df5c4d30 100644 --- a/config/metrics/counts_7d/20210302103755_i_ecosystem_slack_service_deployment_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302103755_i_ecosystem_slack_service_deployment_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302103907_i_ecosystem_slack_service_wiki_page_notification_weekly.yml b/config/metrics/counts_7d/20210302103907_i_ecosystem_slack_service_wiki_page_notification_weekly.yml index 0a223b45493..1ff2ae4bfbe 100644 --- a/config/metrics/counts_7d/20210302103907_i_ecosystem_slack_service_wiki_page_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302103907_i_ecosystem_slack_service_wiki_page_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302104007_i_ecosystem_slack_service_merge_request_notification_weekly.yml b/config/metrics/counts_7d/20210302104007_i_ecosystem_slack_service_merge_request_notification_weekly.yml index d7e05f2672a..0d5259cd109 100644 --- a/config/metrics/counts_7d/20210302104007_i_ecosystem_slack_service_merge_request_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302104007_i_ecosystem_slack_service_merge_request_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302104047_i_ecosystem_slack_service_note_notification_weekly.yml b/config/metrics/counts_7d/20210302104047_i_ecosystem_slack_service_note_notification_weekly.yml index 4ee7fc088d0..502633cf2e4 100644 --- a/config/metrics/counts_7d/20210302104047_i_ecosystem_slack_service_note_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302104047_i_ecosystem_slack_service_note_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302104144_i_ecosystem_slack_service_tag_push_notification_weekly.yml b/config/metrics/counts_7d/20210302104144_i_ecosystem_slack_service_tag_push_notification_weekly.yml index 938ca77e933..462e3a936bd 100644 --- a/config/metrics/counts_7d/20210302104144_i_ecosystem_slack_service_tag_push_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302104144_i_ecosystem_slack_service_tag_push_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302104556_i_ecosystem_slack_service_confidential_note_notification_weekly.yml b/config/metrics/counts_7d/20210302104556_i_ecosystem_slack_service_confidential_note_notification_weekly.yml index 1b8fb7a47e1..ed317741522 100644 --- a/config/metrics/counts_7d/20210302104556_i_ecosystem_slack_service_confidential_note_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302104556_i_ecosystem_slack_service_confidential_note_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302104814_i_ecosystem_slack_service_confidential_issue_notification_weekly.yml b/config/metrics/counts_7d/20210302104814_i_ecosystem_slack_service_confidential_issue_notification_weekly.yml index 09fbb902bc7..7f3ec3d463e 100644 --- a/config/metrics/counts_7d/20210302104814_i_ecosystem_slack_service_confidential_issue_notification_weekly.yml +++ b/config/metrics/counts_7d/20210302104814_i_ecosystem_slack_service_confidential_issue_notification_weekly.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54347 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302105258_i_code_review_user_mr_discussion_unlocked_weekly.yml b/config/metrics/counts_7d/20210302105258_i_code_review_user_mr_discussion_unlocked_weekly.yml index b3704a4232a..0ab35b83efb 100644 --- a/config/metrics/counts_7d/20210302105258_i_code_review_user_mr_discussion_unlocked_weekly.yml +++ b/config/metrics/counts_7d/20210302105258_i_code_review_user_mr_discussion_unlocked_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302105318_i_code_review_user_mr_discussion_locked_weekly.yml b/config/metrics/counts_7d/20210302105318_i_code_review_user_mr_discussion_locked_weekly.yml index aaba247ea02..05850bd0ecf 100644 --- a/config/metrics/counts_7d/20210302105318_i_code_review_user_mr_discussion_locked_weekly.yml +++ b/config/metrics/counts_7d/20210302105318_i_code_review_user_mr_discussion_locked_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55069 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302110403_i_code_review_user_milestone_changed_weekly.yml b/config/metrics/counts_7d/20210302110403_i_code_review_user_milestone_changed_weekly.yml index eed67a4cda6..d0becbb1f82 100644 --- a/config/metrics/counts_7d/20210302110403_i_code_review_user_milestone_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302110403_i_code_review_user_milestone_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55484 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302110548_i_code_review_user_labels_changed_weekly.yml b/config/metrics/counts_7d/20210302110548_i_code_review_user_labels_changed_weekly.yml index b003c999c23..84102e9d620 100644 --- a/config/metrics/counts_7d/20210302110548_i_code_review_user_labels_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302110548_i_code_review_user_labels_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55484 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302114202_i_code_review_user_assignees_changed_weekly.yml b/config/metrics/counts_7d/20210302114202_i_code_review_user_assignees_changed_weekly.yml index 57a1a8bf307..7be4524a57e 100644 --- a/config/metrics/counts_7d/20210302114202_i_code_review_user_assignees_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302114202_i_code_review_user_assignees_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55486 time_frame: 7d diff --git a/config/metrics/counts_7d/20210302114235_i_code_review_user_reviewers_changed_weekly.yml b/config/metrics/counts_7d/20210302114235_i_code_review_user_reviewers_changed_weekly.yml index bd792b7cb7b..9f7603e1669 100644 --- a/config/metrics/counts_7d/20210302114235_i_code_review_user_reviewers_changed_weekly.yml +++ b/config/metrics/counts_7d/20210302114235_i_code_review_user_reviewers_changed_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55486 time_frame: 7d diff --git a/config/metrics/counts_7d/20210303154557_i_quickactions_invite_email_single_weekly.yml b/config/metrics/counts_7d/20210303154557_i_quickactions_invite_email_single_weekly.yml index b0f1ceebbfd..6668773a8a1 100644 --- a/config/metrics/counts_7d/20210303154557_i_quickactions_invite_email_single_weekly.yml +++ b/config/metrics/counts_7d/20210303154557_i_quickactions_invite_email_single_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: issue_tracking value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/49264 time_frame: 7d diff --git a/config/metrics/counts_7d/20210303154600_i_quickactions_invite_email_multiple_weekly.yml b/config/metrics/counts_7d/20210303154600_i_quickactions_invite_email_multiple_weekly.yml index da29ef10c7f..4e395cbaa75 100644 --- a/config/metrics/counts_7d/20210303154600_i_quickactions_invite_email_multiple_weekly.yml +++ b/config/metrics/counts_7d/20210303154600_i_quickactions_invite_email_multiple_weekly.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: issue_tracking value_type: number -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/49264 time_frame: 7d diff --git a/config/metrics/counts_7d/20210303154624_i_package_rubygems_deploy_token_weekly.yml b/config/metrics/counts_7d/20210303154624_i_package_rubygems_deploy_token_weekly.yml index c4218863207..dcbe3878463 100644 --- a/config/metrics/counts_7d/20210303154624_i_package_rubygems_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210303154624_i_package_rubygems_deploy_token_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: 7d diff --git a/config/metrics/counts_7d/20210303154652_i_package_rubygems_user_weekly.yml b/config/metrics/counts_7d/20210303154652_i_package_rubygems_user_weekly.yml index 8d4027cd86e..e8871c1868e 100644 --- a/config/metrics/counts_7d/20210303154652_i_package_rubygems_user_weekly.yml +++ b/config/metrics/counts_7d/20210303154652_i_package_rubygems_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: 7d diff --git a/config/metrics/counts_7d/20210409095855_users_expanding_secure_security_report_weekly.yml b/config/metrics/counts_7d/20210409095855_users_expanding_secure_security_report_weekly.yml index c8ad3b64364..ebe67adad33 100644 --- a/config/metrics/counts_7d/20210409095855_users_expanding_secure_security_report_weekly.yml +++ b/config/metrics/counts_7d/20210409095855_users_expanding_secure_security_report_weekly.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: dependency_scanning value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 7d diff --git a/config/metrics/counts_7d/20210409100451_users_expanding_testing_code_quality_report_weekly.yml b/config/metrics/counts_7d/20210409100451_users_expanding_testing_code_quality_report_weekly.yml index 278bd1691cd..e4f3d64e93c 100644 --- a/config/metrics/counts_7d/20210409100451_users_expanding_testing_code_quality_report_weekly.yml +++ b/config/metrics/counts_7d/20210409100451_users_expanding_testing_code_quality_report_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: code_quality value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 7d diff --git a/config/metrics/counts_7d/20210409100628_users_expanding_testing_accessibility_report_weekly.yml b/config/metrics/counts_7d/20210409100628_users_expanding_testing_accessibility_report_weekly.yml index 3cde67e9c1e..6a4d2184190 100644 --- a/config/metrics/counts_7d/20210409100628_users_expanding_testing_accessibility_report_weekly.yml +++ b/config/metrics/counts_7d/20210409100628_users_expanding_testing_accessibility_report_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: accessibility_testing value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57133 time_frame: 7d diff --git a/config/metrics/counts_7d/20210410012207_i_package_terraform_module_deploy_token_weekly.yml b/config/metrics/counts_7d/20210410012207_i_package_terraform_module_deploy_token_weekly.yml index d68d290e662..8325cb2620d 100644 --- a/config/metrics/counts_7d/20210410012207_i_package_terraform_module_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210410012207_i_package_terraform_module_deploy_token_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: 7d diff --git a/config/metrics/counts_7d/20210410012209_i_package_terraform_module_user_weekly.yml b/config/metrics/counts_7d/20210410012209_i_package_terraform_module_user_weekly.yml index f78f2276183..90a8a3bad22 100644 --- a/config/metrics/counts_7d/20210410012209_i_package_terraform_module_user_weekly.yml +++ b/config/metrics/counts_7d/20210410012209_i_package_terraform_module_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: 7d diff --git a/config/metrics/counts_7d/20210413205507_i_testing_summary_widget_total_weekly.yml b/config/metrics/counts_7d/20210413205507_i_testing_summary_widget_total_weekly.yml index 96994ba0dc2..6adf4d0c092 100644 --- a/config/metrics/counts_7d/20210413205507_i_testing_summary_widget_total_weekly.yml +++ b/config/metrics/counts_7d/20210413205507_i_testing_summary_widget_total_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::testing product_category: testing value_type: number -status: data_available +status: active milestone: "13.11" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59316 time_frame: 7d diff --git a/config/metrics/counts_7d/20210421144349_i_code_review_click_single_file_mode_setting_weekly.yml b/config/metrics/counts_7d/20210421144349_i_code_review_click_single_file_mode_setting_weekly.yml index ec3e664e464..027fd5d31d7 100644 --- a/config/metrics/counts_7d/20210421144349_i_code_review_click_single_file_mode_setting_weekly.yml +++ b/config/metrics/counts_7d/20210421144349_i_code_review_click_single_file_mode_setting_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210421145814_i_code_review_click_file_browser_setting_weekly.yml b/config/metrics/counts_7d/20210421145814_i_code_review_click_file_browser_setting_weekly.yml index eed8def8793..76a53ef1b37 100644 --- a/config/metrics/counts_7d/20210421145814_i_code_review_click_file_browser_setting_weekly.yml +++ b/config/metrics/counts_7d/20210421145814_i_code_review_click_file_browser_setting_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210421145942_i_code_review_click_whitespace_setting_weekly.yml b/config/metrics/counts_7d/20210421145942_i_code_review_click_whitespace_setting_weekly.yml index 354e2e01443..7d3f82bfbaf 100644 --- a/config/metrics/counts_7d/20210421145942_i_code_review_click_whitespace_setting_weekly.yml +++ b/config/metrics/counts_7d/20210421145942_i_code_review_click_whitespace_setting_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422101512_i_code_review_diff_view_inline_weekly.yml b/config/metrics/counts_7d/20210422101512_i_code_review_diff_view_inline_weekly.yml index 4332d62b411..8e12608620d 100644 --- a/config/metrics/counts_7d/20210422101512_i_code_review_diff_view_inline_weekly.yml +++ b/config/metrics/counts_7d/20210422101512_i_code_review_diff_view_inline_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422101609_i_code_review_diff_view_parallel_weekly.yml b/config/metrics/counts_7d/20210422101609_i_code_review_diff_view_parallel_weekly.yml index 21f757638d3..bcef87a890b 100644 --- a/config/metrics/counts_7d/20210422101609_i_code_review_diff_view_parallel_weekly.yml +++ b/config/metrics/counts_7d/20210422101609_i_code_review_diff_view_parallel_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422101750_i_code_review_file_browser_tree_view_weekly.yml b/config/metrics/counts_7d/20210422101750_i_code_review_file_browser_tree_view_weekly.yml index 03d83daa800..1a2e4fcf83e 100644 --- a/config/metrics/counts_7d/20210422101750_i_code_review_file_browser_tree_view_weekly.yml +++ b/config/metrics/counts_7d/20210422101750_i_code_review_file_browser_tree_view_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422101849_i_code_review_file_browser_list_view_weekly.yml b/config/metrics/counts_7d/20210422101849_i_code_review_file_browser_list_view_weekly.yml index ea6ce090c2f..813641cb82d 100644 --- a/config/metrics/counts_7d/20210422101849_i_code_review_file_browser_list_view_weekly.yml +++ b/config/metrics/counts_7d/20210422101849_i_code_review_file_browser_list_view_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422101925_i_code_review_diff_show_whitespace_weekly.yml b/config/metrics/counts_7d/20210422101925_i_code_review_diff_show_whitespace_weekly.yml index 2042dc2bcca..f11db5ceacd 100644 --- a/config/metrics/counts_7d/20210422101925_i_code_review_diff_show_whitespace_weekly.yml +++ b/config/metrics/counts_7d/20210422101925_i_code_review_diff_show_whitespace_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422102007_i_code_review_diff_hide_whitespace_weekly.yml b/config/metrics/counts_7d/20210422102007_i_code_review_diff_hide_whitespace_weekly.yml index 2104698319e..c2282fc9bc3 100644 --- a/config/metrics/counts_7d/20210422102007_i_code_review_diff_hide_whitespace_weekly.yml +++ b/config/metrics/counts_7d/20210422102007_i_code_review_diff_hide_whitespace_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422102118_i_code_review_diff_single_file_weekly.yml b/config/metrics/counts_7d/20210422102118_i_code_review_diff_single_file_weekly.yml index 2e11afbf0c5..32318d1c4ff 100644 --- a/config/metrics/counts_7d/20210422102118_i_code_review_diff_single_file_weekly.yml +++ b/config/metrics/counts_7d/20210422102118_i_code_review_diff_single_file_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210422102159_i_code_review_diff_multiple_files_weekly.yml b/config/metrics/counts_7d/20210422102159_i_code_review_diff_multiple_files_weekly.yml index 99e470b7a9b..e83bd92cfd3 100644 --- a/config/metrics/counts_7d/20210422102159_i_code_review_diff_multiple_files_weekly.yml +++ b/config/metrics/counts_7d/20210422102159_i_code_review_diff_multiple_files_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210427103328_code_review_group_monthly_active_users.yml b/config/metrics/counts_7d/20210427103328_code_review_group_monthly_active_users.yml index b57387c34ac..112e8655d37 100644 --- a/config/metrics/counts_7d/20210427103328_code_review_group_monthly_active_users.yml +++ b/config/metrics/counts_7d/20210427103328_code_review_group_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 7d data_source: redis_hll diff --git a/config/metrics/counts_7d/20210427103407_code_review_category_monthly_active_users.yml b/config/metrics/counts_7d/20210427103407_code_review_category_monthly_active_users.yml index 7351b607677..8680e59f141 100644 --- a/config/metrics/counts_7d/20210427103407_code_review_category_monthly_active_users.yml +++ b/config/metrics/counts_7d/20210427103407_code_review_category_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53553/ time_frame: 7d diff --git a/config/metrics/counts_7d/20210427103452_code_review_extension_category_monthly_active_users.yml b/config/metrics/counts_7d/20210427103452_code_review_extension_category_monthly_active_users.yml index e878772f4da..29e52e07a14 100644 --- a/config/metrics/counts_7d/20210427103452_code_review_extension_category_monthly_active_users.yml +++ b/config/metrics/counts_7d/20210427103452_code_review_extension_category_monthly_active_users.yml @@ -7,7 +7,7 @@ product_stage: devops::create product_group: group::code review product_category: value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: time_frame: 7d diff --git a/config/metrics/counts_7d/20210427105030_pipeline_authoring_total_unique_counts_weekly.yml b/config/metrics/counts_7d/20210427105030_pipeline_authoring_total_unique_counts_weekly.yml index 55f3d5461e3..fcaeed5faf6 100644 --- a/config/metrics/counts_7d/20210427105030_pipeline_authoring_total_unique_counts_weekly.yml +++ b/config/metrics/counts_7d/20210427105030_pipeline_authoring_total_unique_counts_weekly.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline authoring product_category: pipeline_authoring value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: time_frame: 7d diff --git a/config/metrics/counts_7d/20210514013544_i_code_review_user_load_conflict_ui_weekly.yml b/config/metrics/counts_7d/20210514013544_i_code_review_user_load_conflict_ui_weekly.yml index 75841e1a340..1402f3fd574 100644 --- a/config/metrics/counts_7d/20210514013544_i_code_review_user_load_conflict_ui_weekly.yml +++ b/config/metrics/counts_7d/20210514013544_i_code_review_user_load_conflict_ui_weekly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 7d data_source: redis_hll diff --git a/config/metrics/counts_7d/20210514013545_i_code_review_user_resolve_conflict_weekly.yml b/config/metrics/counts_7d/20210514013545_i_code_review_user_resolve_conflict_weekly.yml index 485797cf199..a60f6a23a76 100644 --- a/config/metrics/counts_7d/20210514013545_i_code_review_user_resolve_conflict_weekly.yml +++ b/config/metrics/counts_7d/20210514013545_i_code_review_user_resolve_conflict_weekly.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "13.12" time_frame: 28d data_source: redis_hll diff --git a/config/metrics/counts_7d/20210517074851_i_package_helm_deploy_token_weekly.yml b/config/metrics/counts_7d/20210517074851_i_package_helm_deploy_token_weekly.yml index a41d9b758f0..80ed666e376 100644 --- a/config/metrics/counts_7d/20210517074851_i_package_helm_deploy_token_weekly.yml +++ b/config/metrics/counts_7d/20210517074851_i_package_helm_deploy_token_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014 time_frame: 7d diff --git a/config/metrics/counts_7d/20210517075252_i_package_helm_user_weekly.yml b/config/metrics/counts_7d/20210517075252_i_package_helm_user_weekly.yml index aa1795925de..a3aede72682 100644 --- a/config/metrics/counts_7d/20210517075252_i_package_helm_user_weekly.yml +++ b/config/metrics/counts_7d/20210517075252_i_package_helm_user_weekly.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014 time_frame: 7d diff --git a/config/metrics/counts_7d/20210607113552_i_code_review_click_diff_view_setting_weekly.yml b/config/metrics/counts_7d/20210607113552_i_code_review_click_diff_view_setting_weekly.yml index a3cb9e2c400..01ff67560ba 100644 --- a/config/metrics/counts_7d/20210607113552_i_code_review_click_diff_view_setting_weekly.yml +++ b/config/metrics/counts_7d/20210607113552_i_code_review_click_diff_view_setting_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: '13.12' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59979 time_frame: 7d diff --git a/config/metrics/counts_7d/20210720144005_i_code_review_user_searches_diff_weekly.yml b/config/metrics/counts_7d/20210720144005_i_code_review_user_searches_diff_weekly.yml index ac63687acfb..18a5f85d719 100644 --- a/config/metrics/counts_7d/20210720144005_i_code_review_user_searches_diff_weekly.yml +++ b/config/metrics/counts_7d/20210720144005_i_code_review_user_searches_diff_weekly.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: '14.2' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66522 time_frame: 7d diff --git a/config/metrics/counts_7d/20210721042223_i_quickactions_severity_weekly.yml b/config/metrics/counts_7d/20210721042223_i_quickactions_severity_weekly.yml index 911aec604b1..abce1f1b04b 100644 --- a/config/metrics/counts_7d/20210721042223_i_quickactions_severity_weekly.yml +++ b/config/metrics/counts_7d/20210721042223_i_quickactions_severity_weekly.yml @@ -6,7 +6,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66422 time_frame: 7d diff --git a/config/metrics/counts_7d/20210816144119_i_code_review_total_suggestions_added_weekly.yml b/config/metrics/counts_7d/20210816144119_i_code_review_total_suggestions_added_weekly.yml index 694bb55a190..4460136d6fa 100644 --- a/config/metrics/counts_7d/20210816144119_i_code_review_total_suggestions_added_weekly.yml +++ b/config/metrics/counts_7d/20210816144119_i_code_review_total_suggestions_added_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: "14.3" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67525 time_frame: 7d diff --git a/config/metrics/counts_7d/20210816144247_i_code_review_total_suggestions_applied_weekly.yml b/config/metrics/counts_7d/20210816144247_i_code_review_total_suggestions_applied_weekly.yml index 3bfb5014cff..9388bad2024 100644 --- a/config/metrics/counts_7d/20210816144247_i_code_review_total_suggestions_applied_weekly.yml +++ b/config/metrics/counts_7d/20210816144247_i_code_review_total_suggestions_applied_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: "14.3" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67525 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221237_p_ci_templates_terraform_base_weekly.yml b/config/metrics/counts_7d/20210901221237_p_ci_templates_terraform_base_weekly.yml index 16e9a5de233..4601cfb0860 100644 --- a/config/metrics/counts_7d/20210901221237_p_ci_templates_terraform_base_weekly.yml +++ b/config/metrics/counts_7d/20210901221237_p_ci_templates_terraform_base_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221246_p_ci_templates_dotnet_weekly.yml b/config/metrics/counts_7d/20210901221246_p_ci_templates_dotnet_weekly.yml index 3499f3d5d9e..8b2c8de3e40 100644 --- a/config/metrics/counts_7d/20210901221246_p_ci_templates_dotnet_weekly.yml +++ b/config/metrics/counts_7d/20210901221246_p_ci_templates_dotnet_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221255_p_ci_templates_nodejs_weekly.yml b/config/metrics/counts_7d/20210901221255_p_ci_templates_nodejs_weekly.yml index 9a657ebd538..3f10b6c28ef 100644 --- a/config/metrics/counts_7d/20210901221255_p_ci_templates_nodejs_weekly.yml +++ b/config/metrics/counts_7d/20210901221255_p_ci_templates_nodejs_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221304_p_ci_templates_openshift_weekly.yml b/config/metrics/counts_7d/20210901221304_p_ci_templates_openshift_weekly.yml index dcfdfaee224..70f7ac7f736 100644 --- a/config/metrics/counts_7d/20210901221304_p_ci_templates_openshift_weekly.yml +++ b/config/metrics/counts_7d/20210901221304_p_ci_templates_openshift_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221313_p_ci_templates_bash_weekly.yml b/config/metrics/counts_7d/20210901221313_p_ci_templates_bash_weekly.yml index 3258a5f3b58..26d3d7780f4 100644 --- a/config/metrics/counts_7d/20210901221313_p_ci_templates_bash_weekly.yml +++ b/config/metrics/counts_7d/20210901221313_p_ci_templates_bash_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221322_p_ci_templates_rust_weekly.yml b/config/metrics/counts_7d/20210901221322_p_ci_templates_rust_weekly.yml index 402d193287a..5d22da58b33 100644 --- a/config/metrics/counts_7d/20210901221322_p_ci_templates_rust_weekly.yml +++ b/config/metrics/counts_7d/20210901221322_p_ci_templates_rust_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221330_p_ci_templates_elixir_weekly.yml b/config/metrics/counts_7d/20210901221330_p_ci_templates_elixir_weekly.yml index e470c578aa4..f0bf840127f 100644 --- a/config/metrics/counts_7d/20210901221330_p_ci_templates_elixir_weekly.yml +++ b/config/metrics/counts_7d/20210901221330_p_ci_templates_elixir_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221339_p_ci_templates_clojure_weekly.yml b/config/metrics/counts_7d/20210901221339_p_ci_templates_clojure_weekly.yml index a1d1a6f3815..e191ce5b162 100644 --- a/config/metrics/counts_7d/20210901221339_p_ci_templates_clojure_weekly.yml +++ b/config/metrics/counts_7d/20210901221339_p_ci_templates_clojure_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221348_p_ci_templates_crystal_weekly.yml b/config/metrics/counts_7d/20210901221348_p_ci_templates_crystal_weekly.yml index b91ec74a858..1659cb016ab 100644 --- a/config/metrics/counts_7d/20210901221348_p_ci_templates_crystal_weekly.yml +++ b/config/metrics/counts_7d/20210901221348_p_ci_templates_crystal_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221357_p_ci_templates_getting_started_weekly.yml b/config/metrics/counts_7d/20210901221357_p_ci_templates_getting_started_weekly.yml index b61a84d52e7..438f0eb337a 100644 --- a/config/metrics/counts_7d/20210901221357_p_ci_templates_getting_started_weekly.yml +++ b/config/metrics/counts_7d/20210901221357_p_ci_templates_getting_started_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221405_p_ci_templates_code_quality_weekly.yml b/config/metrics/counts_7d/20210901221405_p_ci_templates_code_quality_weekly.yml index fd0076cf7e4..33a4ec10464 100644 --- a/config/metrics/counts_7d/20210901221405_p_ci_templates_code_quality_weekly.yml +++ b/config/metrics/counts_7d/20210901221405_p_ci_templates_code_quality_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221414_p_ci_templates_verify_load_performance_testing_weekly.yml b/config/metrics/counts_7d/20210901221414_p_ci_templates_verify_load_performance_testing_weekly.yml index 7ce184fa39f..ca61949b607 100644 --- a/config/metrics/counts_7d/20210901221414_p_ci_templates_verify_load_performance_testing_weekly.yml +++ b/config/metrics/counts_7d/20210901221414_p_ci_templates_verify_load_performance_testing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221423_p_ci_templates_verify_accessibility_weekly.yml b/config/metrics/counts_7d/20210901221423_p_ci_templates_verify_accessibility_weekly.yml index 0174ff47099..1d4f411e4fa 100644 --- a/config/metrics/counts_7d/20210901221423_p_ci_templates_verify_accessibility_weekly.yml +++ b/config/metrics/counts_7d/20210901221423_p_ci_templates_verify_accessibility_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221432_p_ci_templates_verify_failfast_weekly.yml b/config/metrics/counts_7d/20210901221432_p_ci_templates_verify_failfast_weekly.yml index f09aac674af..97cd0ecd07d 100644 --- a/config/metrics/counts_7d/20210901221432_p_ci_templates_verify_failfast_weekly.yml +++ b/config/metrics/counts_7d/20210901221432_p_ci_templates_verify_failfast_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221440_p_ci_templates_verify_browser_performance_weekly.yml b/config/metrics/counts_7d/20210901221440_p_ci_templates_verify_browser_performance_weekly.yml index b33a9f48256..0fb29c0c686 100644 --- a/config/metrics/counts_7d/20210901221440_p_ci_templates_verify_browser_performance_weekly.yml +++ b/config/metrics/counts_7d/20210901221440_p_ci_templates_verify_browser_performance_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221449_p_ci_templates_verify_browser_performance_latest_weekly.yml b/config/metrics/counts_7d/20210901221449_p_ci_templates_verify_browser_performance_latest_weekly.yml index 2bb798292b1..424aaebc483 100644 --- a/config/metrics/counts_7d/20210901221449_p_ci_templates_verify_browser_performance_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901221449_p_ci_templates_verify_browser_performance_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221458_p_ci_templates_grails_weekly.yml b/config/metrics/counts_7d/20210901221458_p_ci_templates_grails_weekly.yml index b759f0a9a6f..f6c5386cc45 100644 --- a/config/metrics/counts_7d/20210901221458_p_ci_templates_grails_weekly.yml +++ b/config/metrics/counts_7d/20210901221458_p_ci_templates_grails_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221507_p_ci_templates_security_dast_runner_validation_weekly.yml b/config/metrics/counts_7d/20210901221507_p_ci_templates_security_dast_runner_validation_weekly.yml index 0a69d555fc0..2947546da57 100644 --- a/config/metrics/counts_7d/20210901221507_p_ci_templates_security_dast_runner_validation_weekly.yml +++ b/config/metrics/counts_7d/20210901221507_p_ci_templates_security_dast_runner_validation_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221516_p_ci_templates_security_dast_on_demand_scan_weekly.yml b/config/metrics/counts_7d/20210901221516_p_ci_templates_security_dast_on_demand_scan_weekly.yml index 6bf069cb8de..bfe8a69c98b 100644 --- a/config/metrics/counts_7d/20210901221516_p_ci_templates_security_dast_on_demand_scan_weekly.yml +++ b/config/metrics/counts_7d/20210901221516_p_ci_templates_security_dast_on_demand_scan_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221525_p_ci_templates_security_license_scanning_weekly.yml b/config/metrics/counts_7d/20210901221525_p_ci_templates_security_license_scanning_weekly.yml index 5915179db91..589f51e1582 100644 --- a/config/metrics/counts_7d/20210901221525_p_ci_templates_security_license_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901221525_p_ci_templates_security_license_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221534_p_ci_templates_security_coverage_fuzzing_weekly.yml b/config/metrics/counts_7d/20210901221534_p_ci_templates_security_coverage_fuzzing_weekly.yml index 09f7014d4e8..89edc13d128 100644 --- a/config/metrics/counts_7d/20210901221534_p_ci_templates_security_coverage_fuzzing_weekly.yml +++ b/config/metrics/counts_7d/20210901221534_p_ci_templates_security_coverage_fuzzing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221542_p_ci_templates_security_api_fuzzing_latest_weekly.yml b/config/metrics/counts_7d/20210901221542_p_ci_templates_security_api_fuzzing_latest_weekly.yml index 8c1b7d9bc92..b6925668794 100644 --- a/config/metrics/counts_7d/20210901221542_p_ci_templates_security_api_fuzzing_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901221542_p_ci_templates_security_api_fuzzing_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221551_p_ci_templates_security_secure_binaries_weekly.yml b/config/metrics/counts_7d/20210901221551_p_ci_templates_security_secure_binaries_weekly.yml index 1ab47dbe69e..dbf739de6e3 100644 --- a/config/metrics/counts_7d/20210901221551_p_ci_templates_security_secure_binaries_weekly.yml +++ b/config/metrics/counts_7d/20210901221551_p_ci_templates_security_secure_binaries_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221600_p_ci_templates_security_dast_api_weekly.yml b/config/metrics/counts_7d/20210901221600_p_ci_templates_security_dast_api_weekly.yml index 3e18940b356..4718fe841d1 100644 --- a/config/metrics/counts_7d/20210901221600_p_ci_templates_security_dast_api_weekly.yml +++ b/config/metrics/counts_7d/20210901221600_p_ci_templates_security_dast_api_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221609_p_ci_templates_security_container_scanning_weekly.yml b/config/metrics/counts_7d/20210901221609_p_ci_templates_security_container_scanning_weekly.yml index ba2ac329c36..84f33f2548c 100644 --- a/config/metrics/counts_7d/20210901221609_p_ci_templates_security_container_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901221609_p_ci_templates_security_container_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221618_p_ci_templates_security_dast_latest_weekly.yml b/config/metrics/counts_7d/20210901221618_p_ci_templates_security_dast_latest_weekly.yml index 39ac357b50d..38c0485f8e1 100644 --- a/config/metrics/counts_7d/20210901221618_p_ci_templates_security_dast_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901221618_p_ci_templates_security_dast_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221627_p_ci_templates_security_dependency_scanning_weekly.yml b/config/metrics/counts_7d/20210901221627_p_ci_templates_security_dependency_scanning_weekly.yml index 60ae9ec1e6e..f4954107d43 100644 --- a/config/metrics/counts_7d/20210901221627_p_ci_templates_security_dependency_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901221627_p_ci_templates_security_dependency_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221636_p_ci_templates_security_api_fuzzing_weekly.yml b/config/metrics/counts_7d/20210901221636_p_ci_templates_security_api_fuzzing_weekly.yml index f36dd9da528..8998597261b 100644 --- a/config/metrics/counts_7d/20210901221636_p_ci_templates_security_api_fuzzing_weekly.yml +++ b/config/metrics/counts_7d/20210901221636_p_ci_templates_security_api_fuzzing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221645_p_ci_templates_security_dast_weekly.yml b/config/metrics/counts_7d/20210901221645_p_ci_templates_security_dast_weekly.yml index 80ed7184786..6216a39d9f7 100644 --- a/config/metrics/counts_7d/20210901221645_p_ci_templates_security_dast_weekly.yml +++ b/config/metrics/counts_7d/20210901221645_p_ci_templates_security_dast_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221654_p_ci_templates_security_cluster_image_scanning_weekly.yml b/config/metrics/counts_7d/20210901221654_p_ci_templates_security_cluster_image_scanning_weekly.yml index ce3f4e59e9e..200f46ac22d 100644 --- a/config/metrics/counts_7d/20210901221654_p_ci_templates_security_cluster_image_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901221654_p_ci_templates_security_cluster_image_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221703_p_ci_templates_ios_fastlane_weekly.yml b/config/metrics/counts_7d/20210901221703_p_ci_templates_ios_fastlane_weekly.yml index de9ca16495b..0ff048bd50a 100644 --- a/config/metrics/counts_7d/20210901221703_p_ci_templates_ios_fastlane_weekly.yml +++ b/config/metrics/counts_7d/20210901221703_p_ci_templates_ios_fastlane_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221712_p_ci_templates_composer_weekly.yml b/config/metrics/counts_7d/20210901221712_p_ci_templates_composer_weekly.yml index 338bada19e6..91f7fd8a29f 100644 --- a/config/metrics/counts_7d/20210901221712_p_ci_templates_composer_weekly.yml +++ b/config/metrics/counts_7d/20210901221712_p_ci_templates_composer_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221722_p_ci_templates_c_weekly.yml b/config/metrics/counts_7d/20210901221722_p_ci_templates_c_weekly.yml index 7a856dfce52..7e1a97b3d78 100644 --- a/config/metrics/counts_7d/20210901221722_p_ci_templates_c_weekly.yml +++ b/config/metrics/counts_7d/20210901221722_p_ci_templates_c_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221731_p_ci_templates_python_weekly.yml b/config/metrics/counts_7d/20210901221731_p_ci_templates_python_weekly.yml index 62b229a3bbe..3a739ac16eb 100644 --- a/config/metrics/counts_7d/20210901221731_p_ci_templates_python_weekly.yml +++ b/config/metrics/counts_7d/20210901221731_p_ci_templates_python_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221740_p_ci_templates_android_fastlane_weekly.yml b/config/metrics/counts_7d/20210901221740_p_ci_templates_android_fastlane_weekly.yml index bf105e185ed..12b2d3445e3 100644 --- a/config/metrics/counts_7d/20210901221740_p_ci_templates_android_fastlane_weekly.yml +++ b/config/metrics/counts_7d/20210901221740_p_ci_templates_android_fastlane_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221749_p_ci_templates_django_weekly.yml b/config/metrics/counts_7d/20210901221749_p_ci_templates_django_weekly.yml index de127d20ccc..5161260f733 100644 --- a/config/metrics/counts_7d/20210901221749_p_ci_templates_django_weekly.yml +++ b/config/metrics/counts_7d/20210901221749_p_ci_templates_django_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221758_p_ci_templates_maven_weekly.yml b/config/metrics/counts_7d/20210901221758_p_ci_templates_maven_weekly.yml index f4eba4d50f5..6771363d4f0 100644 --- a/config/metrics/counts_7d/20210901221758_p_ci_templates_maven_weekly.yml +++ b/config/metrics/counts_7d/20210901221758_p_ci_templates_maven_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221807_p_ci_templates_flutter_weekly.yml b/config/metrics/counts_7d/20210901221807_p_ci_templates_flutter_weekly.yml index 575292cb294..f0597215cdb 100644 --- a/config/metrics/counts_7d/20210901221807_p_ci_templates_flutter_weekly.yml +++ b/config/metrics/counts_7d/20210901221807_p_ci_templates_flutter_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221817_p_ci_templates_workflows_branch_pipelines_weekly.yml b/config/metrics/counts_7d/20210901221817_p_ci_templates_workflows_branch_pipelines_weekly.yml index 2e2b1e8b435..e5ee6349a68 100644 --- a/config/metrics/counts_7d/20210901221817_p_ci_templates_workflows_branch_pipelines_weekly.yml +++ b/config/metrics/counts_7d/20210901221817_p_ci_templates_workflows_branch_pipelines_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221826_p_ci_templates_workflows_mergerequest_pipelines_weekly.yml b/config/metrics/counts_7d/20210901221826_p_ci_templates_workflows_mergerequest_pipelines_weekly.yml index 8b2ed9ab22d..c36507c86c1 100644 --- a/config/metrics/counts_7d/20210901221826_p_ci_templates_workflows_mergerequest_pipelines_weekly.yml +++ b/config/metrics/counts_7d/20210901221826_p_ci_templates_workflows_mergerequest_pipelines_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221836_p_ci_templates_laravel_weekly.yml b/config/metrics/counts_7d/20210901221836_p_ci_templates_laravel_weekly.yml index f3897141d53..4f994b3b21e 100644 --- a/config/metrics/counts_7d/20210901221836_p_ci_templates_laravel_weekly.yml +++ b/config/metrics/counts_7d/20210901221836_p_ci_templates_laravel_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221844_p_ci_templates_managed_cluster_applications_weekly.yml b/config/metrics/counts_7d/20210901221844_p_ci_templates_managed_cluster_applications_weekly.yml index 0ac4f1b98c9..592f52a0681 100644 --- a/config/metrics/counts_7d/20210901221844_p_ci_templates_managed_cluster_applications_weekly.yml +++ b/config/metrics/counts_7d/20210901221844_p_ci_templates_managed_cluster_applications_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221853_p_ci_templates_php_weekly.yml b/config/metrics/counts_7d/20210901221853_p_ci_templates_php_weekly.yml index 910b8764917..b1dbd64ae25 100644 --- a/config/metrics/counts_7d/20210901221853_p_ci_templates_php_weekly.yml +++ b/config/metrics/counts_7d/20210901221853_p_ci_templates_php_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221902_p_ci_templates_packer_weekly.yml b/config/metrics/counts_7d/20210901221902_p_ci_templates_packer_weekly.yml index d5dd9ad0b24..7b813f3c1c8 100644 --- a/config/metrics/counts_7d/20210901221902_p_ci_templates_packer_weekly.yml +++ b/config/metrics/counts_7d/20210901221902_p_ci_templates_packer_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221910_p_ci_templates_terraform_weekly.yml b/config/metrics/counts_7d/20210901221910_p_ci_templates_terraform_weekly.yml index 85267d44e72..833a103b424 100644 --- a/config/metrics/counts_7d/20210901221910_p_ci_templates_terraform_weekly.yml +++ b/config/metrics/counts_7d/20210901221910_p_ci_templates_terraform_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221919_p_ci_templates_mono_weekly.yml b/config/metrics/counts_7d/20210901221919_p_ci_templates_mono_weekly.yml index be9268f697f..5ca5b632ed7 100644 --- a/config/metrics/counts_7d/20210901221919_p_ci_templates_mono_weekly.yml +++ b/config/metrics/counts_7d/20210901221919_p_ci_templates_mono_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221928_p_ci_templates_serverless_weekly.yml b/config/metrics/counts_7d/20210901221928_p_ci_templates_serverless_weekly.yml index 780495a135f..86c3ca6e3df 100644 --- a/config/metrics/counts_7d/20210901221928_p_ci_templates_serverless_weekly.yml +++ b/config/metrics/counts_7d/20210901221928_p_ci_templates_serverless_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221936_p_ci_templates_go_weekly.yml b/config/metrics/counts_7d/20210901221936_p_ci_templates_go_weekly.yml index 8891f0e2a46..b297836dbf5 100644 --- a/config/metrics/counts_7d/20210901221936_p_ci_templates_go_weekly.yml +++ b/config/metrics/counts_7d/20210901221936_p_ci_templates_go_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221945_p_ci_templates_scala_weekly.yml b/config/metrics/counts_7d/20210901221945_p_ci_templates_scala_weekly.yml index f33860b32b9..bdc019f53bc 100644 --- a/config/metrics/counts_7d/20210901221945_p_ci_templates_scala_weekly.yml +++ b/config/metrics/counts_7d/20210901221945_p_ci_templates_scala_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901221954_p_ci_templates_latex_weekly.yml b/config/metrics/counts_7d/20210901221954_p_ci_templates_latex_weekly.yml index 0a0b5e966c2..5eeb0b587f7 100644 --- a/config/metrics/counts_7d/20210901221954_p_ci_templates_latex_weekly.yml +++ b/config/metrics/counts_7d/20210901221954_p_ci_templates_latex_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222003_p_ci_templates_android_weekly.yml b/config/metrics/counts_7d/20210901222003_p_ci_templates_android_weekly.yml index 93075b90944..be803873da2 100644 --- a/config/metrics/counts_7d/20210901222003_p_ci_templates_android_weekly.yml +++ b/config/metrics/counts_7d/20210901222003_p_ci_templates_android_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222011_p_ci_templates_indeni_cloudrail_weekly.yml b/config/metrics/counts_7d/20210901222011_p_ci_templates_indeni_cloudrail_weekly.yml index 03ddeb17908..02848df7032 100644 --- a/config/metrics/counts_7d/20210901222011_p_ci_templates_indeni_cloudrail_weekly.yml +++ b/config/metrics/counts_7d/20210901222011_p_ci_templates_indeni_cloudrail_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222020_p_ci_templates_deploy_ecs_weekly.yml b/config/metrics/counts_7d/20210901222020_p_ci_templates_deploy_ecs_weekly.yml index 82635b857bd..31f8f31344f 100644 --- a/config/metrics/counts_7d/20210901222020_p_ci_templates_deploy_ecs_weekly.yml +++ b/config/metrics/counts_7d/20210901222020_p_ci_templates_deploy_ecs_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222029_p_ci_templates_aws_cf_provision_and_deploy_ec2_weekly.yml b/config/metrics/counts_7d/20210901222029_p_ci_templates_aws_cf_provision_and_deploy_ec2_weekly.yml index 3f98e1b459c..1df7de7867f 100644 --- a/config/metrics/counts_7d/20210901222029_p_ci_templates_aws_cf_provision_and_deploy_ec2_weekly.yml +++ b/config/metrics/counts_7d/20210901222029_p_ci_templates_aws_cf_provision_and_deploy_ec2_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222038_p_ci_templates_gradle_weekly.yml b/config/metrics/counts_7d/20210901222038_p_ci_templates_gradle_weekly.yml index d04e952036b..ffee4a62bef 100644 --- a/config/metrics/counts_7d/20210901222038_p_ci_templates_gradle_weekly.yml +++ b/config/metrics/counts_7d/20210901222038_p_ci_templates_gradle_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222046_p_ci_templates_chef_weekly.yml b/config/metrics/counts_7d/20210901222046_p_ci_templates_chef_weekly.yml index 67e837d736f..b9601085fe1 100644 --- a/config/metrics/counts_7d/20210901222046_p_ci_templates_chef_weekly.yml +++ b/config/metrics/counts_7d/20210901222046_p_ci_templates_chef_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222055_p_ci_templates_jobs_dast_default_branch_deploy_weekly.yml b/config/metrics/counts_7d/20210901222055_p_ci_templates_jobs_dast_default_branch_deploy_weekly.yml index be95e28f68d..3efb9e7e435 100644 --- a/config/metrics/counts_7d/20210901222055_p_ci_templates_jobs_dast_default_branch_deploy_weekly.yml +++ b/config/metrics/counts_7d/20210901222055_p_ci_templates_jobs_dast_default_branch_deploy_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222104_p_ci_templates_jobs_load_performance_testing_weekly.yml b/config/metrics/counts_7d/20210901222104_p_ci_templates_jobs_load_performance_testing_weekly.yml index 6d65fae6b21..efdab0f1c35 100644 --- a/config/metrics/counts_7d/20210901222104_p_ci_templates_jobs_load_performance_testing_weekly.yml +++ b/config/metrics/counts_7d/20210901222104_p_ci_templates_jobs_load_performance_testing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222113_p_ci_templates_jobs_helm_2to3_weekly.yml b/config/metrics/counts_7d/20210901222113_p_ci_templates_jobs_helm_2to3_weekly.yml index d4306971b2e..878e5d1f08b 100644 --- a/config/metrics/counts_7d/20210901222113_p_ci_templates_jobs_helm_2to3_weekly.yml +++ b/config/metrics/counts_7d/20210901222113_p_ci_templates_jobs_helm_2to3_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222122_p_ci_templates_jobs_sast_weekly.yml b/config/metrics/counts_7d/20210901222122_p_ci_templates_jobs_sast_weekly.yml index ab4425a8707..bc7c9914c31 100644 --- a/config/metrics/counts_7d/20210901222122_p_ci_templates_jobs_sast_weekly.yml +++ b/config/metrics/counts_7d/20210901222122_p_ci_templates_jobs_sast_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222131_p_ci_templates_jobs_secret_detection_weekly.yml b/config/metrics/counts_7d/20210901222131_p_ci_templates_jobs_secret_detection_weekly.yml index f8e86717be9..c627098b569 100644 --- a/config/metrics/counts_7d/20210901222131_p_ci_templates_jobs_secret_detection_weekly.yml +++ b/config/metrics/counts_7d/20210901222131_p_ci_templates_jobs_secret_detection_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222139_p_ci_templates_jobs_code_intelligence_weekly.yml b/config/metrics/counts_7d/20210901222139_p_ci_templates_jobs_code_intelligence_weekly.yml index 029b3d9d42c..9997a733c84 100644 --- a/config/metrics/counts_7d/20210901222139_p_ci_templates_jobs_code_intelligence_weekly.yml +++ b/config/metrics/counts_7d/20210901222139_p_ci_templates_jobs_code_intelligence_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222148_p_ci_templates_jobs_code_quality_weekly.yml b/config/metrics/counts_7d/20210901222148_p_ci_templates_jobs_code_quality_weekly.yml index 46d79339dde..6286fb00725 100644 --- a/config/metrics/counts_7d/20210901222148_p_ci_templates_jobs_code_quality_weekly.yml +++ b/config/metrics/counts_7d/20210901222148_p_ci_templates_jobs_code_quality_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222157_p_ci_templates_jobs_deploy_ecs_weekly.yml b/config/metrics/counts_7d/20210901222157_p_ci_templates_jobs_deploy_ecs_weekly.yml index b5f19887ddb..abe645e059a 100644 --- a/config/metrics/counts_7d/20210901222157_p_ci_templates_jobs_deploy_ecs_weekly.yml +++ b/config/metrics/counts_7d/20210901222157_p_ci_templates_jobs_deploy_ecs_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222206_p_ci_templates_jobs_deploy_ec2_weekly.yml b/config/metrics/counts_7d/20210901222206_p_ci_templates_jobs_deploy_ec2_weekly.yml index c28e4c4fafd..3f3c491acf5 100644 --- a/config/metrics/counts_7d/20210901222206_p_ci_templates_jobs_deploy_ec2_weekly.yml +++ b/config/metrics/counts_7d/20210901222206_p_ci_templates_jobs_deploy_ec2_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222215_p_ci_templates_jobs_deploy_weekly.yml b/config/metrics/counts_7d/20210901222215_p_ci_templates_jobs_deploy_weekly.yml index 8ecf821ad79..f5036c5bd7c 100644 --- a/config/metrics/counts_7d/20210901222215_p_ci_templates_jobs_deploy_weekly.yml +++ b/config/metrics/counts_7d/20210901222215_p_ci_templates_jobs_deploy_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222224_p_ci_templates_jobs_build_weekly.yml b/config/metrics/counts_7d/20210901222224_p_ci_templates_jobs_build_weekly.yml index 1b320fbc169..80dfa5e52ee 100644 --- a/config/metrics/counts_7d/20210901222224_p_ci_templates_jobs_build_weekly.yml +++ b/config/metrics/counts_7d/20210901222224_p_ci_templates_jobs_build_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222233_p_ci_templates_jobs_browser_performance_testing_weekly.yml b/config/metrics/counts_7d/20210901222233_p_ci_templates_jobs_browser_performance_testing_weekly.yml index 010a8c1e491..a0b5145dc32 100644 --- a/config/metrics/counts_7d/20210901222233_p_ci_templates_jobs_browser_performance_testing_weekly.yml +++ b/config/metrics/counts_7d/20210901222233_p_ci_templates_jobs_browser_performance_testing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222242_p_ci_templates_jobs_test_weekly.yml b/config/metrics/counts_7d/20210901222242_p_ci_templates_jobs_test_weekly.yml index 74acfd65062..ffbac5590cc 100644 --- a/config/metrics/counts_7d/20210901222242_p_ci_templates_jobs_test_weekly.yml +++ b/config/metrics/counts_7d/20210901222242_p_ci_templates_jobs_test_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222251_p_ci_templates_jobs_deploy_latest_weekly.yml b/config/metrics/counts_7d/20210901222251_p_ci_templates_jobs_deploy_latest_weekly.yml index c4e25638e98..c076bfed8f0 100644 --- a/config/metrics/counts_7d/20210901222251_p_ci_templates_jobs_deploy_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901222251_p_ci_templates_jobs_deploy_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222300_p_ci_templates_jobs_browser_performance_testing_latest_weekly.yml b/config/metrics/counts_7d/20210901222300_p_ci_templates_jobs_browser_performance_testing_latest_weekly.yml index 064607beea7..97d8bb1f7a8 100644 --- a/config/metrics/counts_7d/20210901222300_p_ci_templates_jobs_browser_performance_testing_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901222300_p_ci_templates_jobs_browser_performance_testing_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222309_p_ci_templates_jobs_cf_provision_weekly.yml b/config/metrics/counts_7d/20210901222309_p_ci_templates_jobs_cf_provision_weekly.yml index ce7339ed165..f14bd662bb4 100644 --- a/config/metrics/counts_7d/20210901222309_p_ci_templates_jobs_cf_provision_weekly.yml +++ b/config/metrics/counts_7d/20210901222309_p_ci_templates_jobs_cf_provision_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222318_p_ci_templates_jobs_build_latest_weekly.yml b/config/metrics/counts_7d/20210901222318_p_ci_templates_jobs_build_latest_weekly.yml index 35016093539..91e8e6d7126 100644 --- a/config/metrics/counts_7d/20210901222318_p_ci_templates_jobs_build_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901222318_p_ci_templates_jobs_build_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222327_p_ci_templates_terraform_latest_weekly.yml b/config/metrics/counts_7d/20210901222327_p_ci_templates_terraform_latest_weekly.yml index 04627603342..98d7cae5c2f 100644 --- a/config/metrics/counts_7d/20210901222327_p_ci_templates_terraform_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901222327_p_ci_templates_terraform_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222336_p_ci_templates_swift_weekly.yml b/config/metrics/counts_7d/20210901222336_p_ci_templates_swift_weekly.yml index a688047afb2..8b2fb8cd127 100644 --- a/config/metrics/counts_7d/20210901222336_p_ci_templates_swift_weekly.yml +++ b/config/metrics/counts_7d/20210901222336_p_ci_templates_swift_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222703_p_ci_templates_pages_jekyll_weekly.yml b/config/metrics/counts_7d/20210901222703_p_ci_templates_pages_jekyll_weekly.yml index 5779dc1290f..e641f623c60 100644 --- a/config/metrics/counts_7d/20210901222703_p_ci_templates_pages_jekyll_weekly.yml +++ b/config/metrics/counts_7d/20210901222703_p_ci_templates_pages_jekyll_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901222719_p_ci_templates_pages_harp_weekly.yml b/config/metrics/counts_7d/20210901222719_p_ci_templates_pages_harp_weekly.yml index 36cb32963dd..1419e5894bb 100644 --- a/config/metrics/counts_7d/20210901222719_p_ci_templates_pages_harp_weekly.yml +++ b/config/metrics/counts_7d/20210901222719_p_ci_templates_pages_harp_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223156_p_ci_templates_pages_octopress_weekly.yml b/config/metrics/counts_7d/20210901223156_p_ci_templates_pages_octopress_weekly.yml index 82205617704..d7d7e62b256 100644 --- a/config/metrics/counts_7d/20210901223156_p_ci_templates_pages_octopress_weekly.yml +++ b/config/metrics/counts_7d/20210901223156_p_ci_templates_pages_octopress_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223206_p_ci_templates_pages_brunch_weekly.yml b/config/metrics/counts_7d/20210901223206_p_ci_templates_pages_brunch_weekly.yml index d11b1c513f6..9a521247591 100644 --- a/config/metrics/counts_7d/20210901223206_p_ci_templates_pages_brunch_weekly.yml +++ b/config/metrics/counts_7d/20210901223206_p_ci_templates_pages_brunch_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223215_p_ci_templates_pages_doxygen_weekly.yml b/config/metrics/counts_7d/20210901223215_p_ci_templates_pages_doxygen_weekly.yml index 9ec459bc84a..caca2d80d85 100644 --- a/config/metrics/counts_7d/20210901223215_p_ci_templates_pages_doxygen_weekly.yml +++ b/config/metrics/counts_7d/20210901223215_p_ci_templates_pages_doxygen_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223223_p_ci_templates_pages_hyde_weekly.yml b/config/metrics/counts_7d/20210901223223_p_ci_templates_pages_hyde_weekly.yml index 3ba135a369b..f87d5663cd0 100644 --- a/config/metrics/counts_7d/20210901223223_p_ci_templates_pages_hyde_weekly.yml +++ b/config/metrics/counts_7d/20210901223223_p_ci_templates_pages_hyde_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223232_p_ci_templates_pages_lektor_weekly.yml b/config/metrics/counts_7d/20210901223232_p_ci_templates_pages_lektor_weekly.yml index 151aec966d0..e5a5664aee3 100644 --- a/config/metrics/counts_7d/20210901223232_p_ci_templates_pages_lektor_weekly.yml +++ b/config/metrics/counts_7d/20210901223232_p_ci_templates_pages_lektor_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223240_p_ci_templates_pages_jbake_weekly.yml b/config/metrics/counts_7d/20210901223240_p_ci_templates_pages_jbake_weekly.yml index 1e3f46c134f..fa44a295b65 100644 --- a/config/metrics/counts_7d/20210901223240_p_ci_templates_pages_jbake_weekly.yml +++ b/config/metrics/counts_7d/20210901223240_p_ci_templates_pages_jbake_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223249_p_ci_templates_pages_hexo_weekly.yml b/config/metrics/counts_7d/20210901223249_p_ci_templates_pages_hexo_weekly.yml index 1ab64930cab..2adf9a396ef 100644 --- a/config/metrics/counts_7d/20210901223249_p_ci_templates_pages_hexo_weekly.yml +++ b/config/metrics/counts_7d/20210901223249_p_ci_templates_pages_hexo_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223257_p_ci_templates_pages_middleman_weekly.yml b/config/metrics/counts_7d/20210901223257_p_ci_templates_pages_middleman_weekly.yml index 218dfd3219d..a920ff72b7b 100644 --- a/config/metrics/counts_7d/20210901223257_p_ci_templates_pages_middleman_weekly.yml +++ b/config/metrics/counts_7d/20210901223257_p_ci_templates_pages_middleman_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223306_p_ci_templates_pages_hugo_weekly.yml b/config/metrics/counts_7d/20210901223306_p_ci_templates_pages_hugo_weekly.yml index d0cf7e5b6fc..10183e79f80 100644 --- a/config/metrics/counts_7d/20210901223306_p_ci_templates_pages_hugo_weekly.yml +++ b/config/metrics/counts_7d/20210901223306_p_ci_templates_pages_hugo_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223315_p_ci_templates_pages_pelican_weekly.yml b/config/metrics/counts_7d/20210901223315_p_ci_templates_pages_pelican_weekly.yml index d313cba53de..0d2e5ca9122 100644 --- a/config/metrics/counts_7d/20210901223315_p_ci_templates_pages_pelican_weekly.yml +++ b/config/metrics/counts_7d/20210901223315_p_ci_templates_pages_pelican_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223324_p_ci_templates_pages_nanoc_weekly.yml b/config/metrics/counts_7d/20210901223324_p_ci_templates_pages_nanoc_weekly.yml index 92d0520d41d..5cad30c5f0c 100644 --- a/config/metrics/counts_7d/20210901223324_p_ci_templates_pages_nanoc_weekly.yml +++ b/config/metrics/counts_7d/20210901223324_p_ci_templates_pages_nanoc_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223332_p_ci_templates_pages_swaggerui_weekly.yml b/config/metrics/counts_7d/20210901223332_p_ci_templates_pages_swaggerui_weekly.yml index 9fde86b7385..5fcd652a26a 100644 --- a/config/metrics/counts_7d/20210901223332_p_ci_templates_pages_swaggerui_weekly.yml +++ b/config/metrics/counts_7d/20210901223332_p_ci_templates_pages_swaggerui_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223341_p_ci_templates_pages_jigsaw_weekly.yml b/config/metrics/counts_7d/20210901223341_p_ci_templates_pages_jigsaw_weekly.yml index dcb7cb94523..f0f2afd434e 100644 --- a/config/metrics/counts_7d/20210901223341_p_ci_templates_pages_jigsaw_weekly.yml +++ b/config/metrics/counts_7d/20210901223341_p_ci_templates_pages_jigsaw_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223350_p_ci_templates_pages_metalsmith_weekly.yml b/config/metrics/counts_7d/20210901223350_p_ci_templates_pages_metalsmith_weekly.yml index f5d990e8712..3ca7a23618b 100644 --- a/config/metrics/counts_7d/20210901223350_p_ci_templates_pages_metalsmith_weekly.yml +++ b/config/metrics/counts_7d/20210901223350_p_ci_templates_pages_metalsmith_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223359_p_ci_templates_pages_gatsby_weekly.yml b/config/metrics/counts_7d/20210901223359_p_ci_templates_pages_gatsby_weekly.yml index 3d6d314a76a..6c8db9b7058 100644 --- a/config/metrics/counts_7d/20210901223359_p_ci_templates_pages_gatsby_weekly.yml +++ b/config/metrics/counts_7d/20210901223359_p_ci_templates_pages_gatsby_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223408_p_ci_templates_pages_html_weekly.yml b/config/metrics/counts_7d/20210901223408_p_ci_templates_pages_html_weekly.yml index 4ba1ff9e0a8..4a7c592cd09 100644 --- a/config/metrics/counts_7d/20210901223408_p_ci_templates_pages_html_weekly.yml +++ b/config/metrics/counts_7d/20210901223408_p_ci_templates_pages_html_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223416_p_ci_templates_dart_weekly.yml b/config/metrics/counts_7d/20210901223416_p_ci_templates_dart_weekly.yml index dcce6bac61c..d2942ef6f6b 100644 --- a/config/metrics/counts_7d/20210901223416_p_ci_templates_dart_weekly.yml +++ b/config/metrics/counts_7d/20210901223416_p_ci_templates_dart_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223425_p_ci_templates_docker_weekly.yml b/config/metrics/counts_7d/20210901223425_p_ci_templates_docker_weekly.yml index 29ac48e243e..307df73a622 100644 --- a/config/metrics/counts_7d/20210901223425_p_ci_templates_docker_weekly.yml +++ b/config/metrics/counts_7d/20210901223425_p_ci_templates_docker_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223434_p_ci_templates_julia_weekly.yml b/config/metrics/counts_7d/20210901223434_p_ci_templates_julia_weekly.yml index 785d7ac7dcc..6624697c56c 100644 --- a/config/metrics/counts_7d/20210901223434_p_ci_templates_julia_weekly.yml +++ b/config/metrics/counts_7d/20210901223434_p_ci_templates_julia_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223443_p_ci_templates_npm_weekly.yml b/config/metrics/counts_7d/20210901223443_p_ci_templates_npm_weekly.yml index f97b2a3f911..97de705a4de 100644 --- a/config/metrics/counts_7d/20210901223443_p_ci_templates_npm_weekly.yml +++ b/config/metrics/counts_7d/20210901223443_p_ci_templates_npm_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223452_p_ci_templates_dotnet_core_weekly.yml b/config/metrics/counts_7d/20210901223452_p_ci_templates_dotnet_core_weekly.yml index 0d3be9cd893..b89ef58fbc1 100644 --- a/config/metrics/counts_7d/20210901223452_p_ci_templates_dotnet_core_weekly.yml +++ b/config/metrics/counts_7d/20210901223452_p_ci_templates_dotnet_core_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223501_p_ci_templates_5_minute_production_app_weekly.yml b/config/metrics/counts_7d/20210901223501_p_ci_templates_5_minute_production_app_weekly.yml index 861c403f51a..ee6c2eaa60b 100644 --- a/config/metrics/counts_7d/20210901223501_p_ci_templates_5_minute_production_app_weekly.yml +++ b/config/metrics/counts_7d/20210901223501_p_ci_templates_5_minute_production_app_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223510_p_ci_templates_ruby_weekly.yml b/config/metrics/counts_7d/20210901223510_p_ci_templates_ruby_weekly.yml index 9be5a827157..414eb9bc7ff 100644 --- a/config/metrics/counts_7d/20210901223510_p_ci_templates_ruby_weekly.yml +++ b/config/metrics/counts_7d/20210901223510_p_ci_templates_ruby_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223519_p_ci_templates_implicit_jobs_dast_default_branch_deploy_weekly.yml b/config/metrics/counts_7d/20210901223519_p_ci_templates_implicit_jobs_dast_default_branch_deploy_weekly.yml index fdab2c7b80b..982257506b1 100644 --- a/config/metrics/counts_7d/20210901223519_p_ci_templates_implicit_jobs_dast_default_branch_deploy_weekly.yml +++ b/config/metrics/counts_7d/20210901223519_p_ci_templates_implicit_jobs_dast_default_branch_deploy_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223528_p_ci_templates_implicit_jobs_load_performance_testing_weekly.yml b/config/metrics/counts_7d/20210901223528_p_ci_templates_implicit_jobs_load_performance_testing_weekly.yml index 6ad9f155c17..a38c2396a5f 100644 --- a/config/metrics/counts_7d/20210901223528_p_ci_templates_implicit_jobs_load_performance_testing_weekly.yml +++ b/config/metrics/counts_7d/20210901223528_p_ci_templates_implicit_jobs_load_performance_testing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223537_p_ci_templates_implicit_jobs_helm_2to3_weekly.yml b/config/metrics/counts_7d/20210901223537_p_ci_templates_implicit_jobs_helm_2to3_weekly.yml index dc1cd6acc61..4e2dfe4e7e7 100644 --- a/config/metrics/counts_7d/20210901223537_p_ci_templates_implicit_jobs_helm_2to3_weekly.yml +++ b/config/metrics/counts_7d/20210901223537_p_ci_templates_implicit_jobs_helm_2to3_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223546_p_ci_templates_implicit_jobs_sast_weekly.yml b/config/metrics/counts_7d/20210901223546_p_ci_templates_implicit_jobs_sast_weekly.yml index 86acac437c1..13a7628fd56 100644 --- a/config/metrics/counts_7d/20210901223546_p_ci_templates_implicit_jobs_sast_weekly.yml +++ b/config/metrics/counts_7d/20210901223546_p_ci_templates_implicit_jobs_sast_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223554_p_ci_templates_implicit_jobs_secret_detection_weekly.yml b/config/metrics/counts_7d/20210901223554_p_ci_templates_implicit_jobs_secret_detection_weekly.yml index 5a808c79df8..59bae76f3e5 100644 --- a/config/metrics/counts_7d/20210901223554_p_ci_templates_implicit_jobs_secret_detection_weekly.yml +++ b/config/metrics/counts_7d/20210901223554_p_ci_templates_implicit_jobs_secret_detection_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223603_p_ci_templates_implicit_jobs_code_intelligence_weekly.yml b/config/metrics/counts_7d/20210901223603_p_ci_templates_implicit_jobs_code_intelligence_weekly.yml index ed5a723529e..0237f2914ae 100644 --- a/config/metrics/counts_7d/20210901223603_p_ci_templates_implicit_jobs_code_intelligence_weekly.yml +++ b/config/metrics/counts_7d/20210901223603_p_ci_templates_implicit_jobs_code_intelligence_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223612_p_ci_templates_implicit_jobs_code_quality_weekly.yml b/config/metrics/counts_7d/20210901223612_p_ci_templates_implicit_jobs_code_quality_weekly.yml index 8adb07feeda..05e1a9ab017 100644 --- a/config/metrics/counts_7d/20210901223612_p_ci_templates_implicit_jobs_code_quality_weekly.yml +++ b/config/metrics/counts_7d/20210901223612_p_ci_templates_implicit_jobs_code_quality_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223621_p_ci_templates_implicit_jobs_deploy_ecs_weekly.yml b/config/metrics/counts_7d/20210901223621_p_ci_templates_implicit_jobs_deploy_ecs_weekly.yml index 78f0d1946ca..88c9db04884 100644 --- a/config/metrics/counts_7d/20210901223621_p_ci_templates_implicit_jobs_deploy_ecs_weekly.yml +++ b/config/metrics/counts_7d/20210901223621_p_ci_templates_implicit_jobs_deploy_ecs_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223630_p_ci_templates_implicit_jobs_deploy_ec2_weekly.yml b/config/metrics/counts_7d/20210901223630_p_ci_templates_implicit_jobs_deploy_ec2_weekly.yml index 6aca066be2f..060f5b70ca8 100644 --- a/config/metrics/counts_7d/20210901223630_p_ci_templates_implicit_jobs_deploy_ec2_weekly.yml +++ b/config/metrics/counts_7d/20210901223630_p_ci_templates_implicit_jobs_deploy_ec2_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223639_p_ci_templates_implicit_jobs_browser_performance_testing_weekly.yml b/config/metrics/counts_7d/20210901223639_p_ci_templates_implicit_jobs_browser_performance_testing_weekly.yml index ff08bf26b79..67d2a02358a 100644 --- a/config/metrics/counts_7d/20210901223639_p_ci_templates_implicit_jobs_browser_performance_testing_weekly.yml +++ b/config/metrics/counts_7d/20210901223639_p_ci_templates_implicit_jobs_browser_performance_testing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223649_p_ci_templates_implicit_jobs_test_weekly.yml b/config/metrics/counts_7d/20210901223649_p_ci_templates_implicit_jobs_test_weekly.yml index 6c8a9213a2c..f5ceb651ef1 100644 --- a/config/metrics/counts_7d/20210901223649_p_ci_templates_implicit_jobs_test_weekly.yml +++ b/config/metrics/counts_7d/20210901223649_p_ci_templates_implicit_jobs_test_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223658_p_ci_templates_implicit_jobs_browser_performance_testing_latest_weekly.yml b/config/metrics/counts_7d/20210901223658_p_ci_templates_implicit_jobs_browser_performance_testing_latest_weekly.yml index 81d61fb4fdb..2c1aee4d4ca 100644 --- a/config/metrics/counts_7d/20210901223658_p_ci_templates_implicit_jobs_browser_performance_testing_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901223658_p_ci_templates_implicit_jobs_browser_performance_testing_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223707_p_ci_templates_implicit_jobs_cf_provision_weekly.yml b/config/metrics/counts_7d/20210901223707_p_ci_templates_implicit_jobs_cf_provision_weekly.yml index 901c6d62ae7..d325ed2644f 100644 --- a/config/metrics/counts_7d/20210901223707_p_ci_templates_implicit_jobs_cf_provision_weekly.yml +++ b/config/metrics/counts_7d/20210901223707_p_ci_templates_implicit_jobs_cf_provision_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223716_p_ci_templates_implicit_jobs_build_latest_weekly.yml b/config/metrics/counts_7d/20210901223716_p_ci_templates_implicit_jobs_build_latest_weekly.yml index 7e3ce95020d..8936d4ce21a 100644 --- a/config/metrics/counts_7d/20210901223716_p_ci_templates_implicit_jobs_build_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901223716_p_ci_templates_implicit_jobs_build_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223725_p_ci_templates_implicit_security_dast_runner_validation_weekly.yml b/config/metrics/counts_7d/20210901223725_p_ci_templates_implicit_security_dast_runner_validation_weekly.yml index 2864b23c181..c0d3299d9bf 100644 --- a/config/metrics/counts_7d/20210901223725_p_ci_templates_implicit_security_dast_runner_validation_weekly.yml +++ b/config/metrics/counts_7d/20210901223725_p_ci_templates_implicit_security_dast_runner_validation_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223735_p_ci_templates_implicit_security_dast_on_demand_scan_weekly.yml b/config/metrics/counts_7d/20210901223735_p_ci_templates_implicit_security_dast_on_demand_scan_weekly.yml index a3bd6786c7f..8d39fc698a8 100644 --- a/config/metrics/counts_7d/20210901223735_p_ci_templates_implicit_security_dast_on_demand_scan_weekly.yml +++ b/config/metrics/counts_7d/20210901223735_p_ci_templates_implicit_security_dast_on_demand_scan_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223744_p_ci_templates_implicit_security_license_scanning_weekly.yml b/config/metrics/counts_7d/20210901223744_p_ci_templates_implicit_security_license_scanning_weekly.yml index 222c7b7dce8..9655f006c44 100644 --- a/config/metrics/counts_7d/20210901223744_p_ci_templates_implicit_security_license_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901223744_p_ci_templates_implicit_security_license_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223753_p_ci_templates_implicit_security_coverage_fuzzing_weekly.yml b/config/metrics/counts_7d/20210901223753_p_ci_templates_implicit_security_coverage_fuzzing_weekly.yml index c07a231b0f1..97a44953b1e 100644 --- a/config/metrics/counts_7d/20210901223753_p_ci_templates_implicit_security_coverage_fuzzing_weekly.yml +++ b/config/metrics/counts_7d/20210901223753_p_ci_templates_implicit_security_coverage_fuzzing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223802_p_ci_templates_implicit_security_api_fuzzing_latest_weekly.yml b/config/metrics/counts_7d/20210901223802_p_ci_templates_implicit_security_api_fuzzing_latest_weekly.yml index 5cae34a38a8..4f4e3a05b4d 100644 --- a/config/metrics/counts_7d/20210901223802_p_ci_templates_implicit_security_api_fuzzing_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901223802_p_ci_templates_implicit_security_api_fuzzing_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223811_p_ci_templates_implicit_security_secure_binaries_weekly.yml b/config/metrics/counts_7d/20210901223811_p_ci_templates_implicit_security_secure_binaries_weekly.yml index 319dbbc4f46..08f8340acbd 100644 --- a/config/metrics/counts_7d/20210901223811_p_ci_templates_implicit_security_secure_binaries_weekly.yml +++ b/config/metrics/counts_7d/20210901223811_p_ci_templates_implicit_security_secure_binaries_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223819_p_ci_templates_implicit_security_dast_api_weekly.yml b/config/metrics/counts_7d/20210901223819_p_ci_templates_implicit_security_dast_api_weekly.yml index af52453edce..b4197326e5c 100644 --- a/config/metrics/counts_7d/20210901223819_p_ci_templates_implicit_security_dast_api_weekly.yml +++ b/config/metrics/counts_7d/20210901223819_p_ci_templates_implicit_security_dast_api_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223828_p_ci_templates_implicit_security_container_scanning_weekly.yml b/config/metrics/counts_7d/20210901223828_p_ci_templates_implicit_security_container_scanning_weekly.yml index f1c9a06674c..5e40e73ec83 100644 --- a/config/metrics/counts_7d/20210901223828_p_ci_templates_implicit_security_container_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901223828_p_ci_templates_implicit_security_container_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223837_p_ci_templates_implicit_security_dast_latest_weekly.yml b/config/metrics/counts_7d/20210901223837_p_ci_templates_implicit_security_dast_latest_weekly.yml index 953a86dd4eb..2c804015f3b 100644 --- a/config/metrics/counts_7d/20210901223837_p_ci_templates_implicit_security_dast_latest_weekly.yml +++ b/config/metrics/counts_7d/20210901223837_p_ci_templates_implicit_security_dast_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223845_p_ci_templates_implicit_security_dependency_scanning_weekly.yml b/config/metrics/counts_7d/20210901223845_p_ci_templates_implicit_security_dependency_scanning_weekly.yml index 92f6ae3fff4..777413e4f5f 100644 --- a/config/metrics/counts_7d/20210901223845_p_ci_templates_implicit_security_dependency_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901223845_p_ci_templates_implicit_security_dependency_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223854_p_ci_templates_implicit_security_api_fuzzing_weekly.yml b/config/metrics/counts_7d/20210901223854_p_ci_templates_implicit_security_api_fuzzing_weekly.yml index 67ad7031bb2..f79388fdfc5 100644 --- a/config/metrics/counts_7d/20210901223854_p_ci_templates_implicit_security_api_fuzzing_weekly.yml +++ b/config/metrics/counts_7d/20210901223854_p_ci_templates_implicit_security_api_fuzzing_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223903_p_ci_templates_implicit_security_dast_weekly.yml b/config/metrics/counts_7d/20210901223903_p_ci_templates_implicit_security_dast_weekly.yml index dc924933208..2ba2a04de1c 100644 --- a/config/metrics/counts_7d/20210901223903_p_ci_templates_implicit_security_dast_weekly.yml +++ b/config/metrics/counts_7d/20210901223903_p_ci_templates_implicit_security_dast_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210901223912_p_ci_templates_implicit_security_cluster_image_scanning_weekly.yml b/config/metrics/counts_7d/20210901223912_p_ci_templates_implicit_security_cluster_image_scanning_weekly.yml index 1b68e8265c4..e1ee3f9fd1d 100644 --- a/config/metrics/counts_7d/20210901223912_p_ci_templates_implicit_security_cluster_image_scanning_weekly.yml +++ b/config/metrics/counts_7d/20210901223912_p_ci_templates_implicit_security_cluster_image_scanning_weekly.yml @@ -6,7 +6,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210902000809_p_ci_templates_implicit_auto_devops_deploy_latest_weekly.yml b/config/metrics/counts_7d/20210902000809_p_ci_templates_implicit_auto_devops_deploy_latest_weekly.yml index 36222836ecb..7f674324a31 100644 --- a/config/metrics/counts_7d/20210902000809_p_ci_templates_implicit_auto_devops_deploy_latest_weekly.yml +++ b/config/metrics/counts_7d/20210902000809_p_ci_templates_implicit_auto_devops_deploy_latest_weekly.yml @@ -6,7 +6,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: implemented +status: active milestone: '14.3' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69204 time_frame: 7d diff --git a/config/metrics/counts_7d/20210902191054_i_quickactions_unapprove_weekly.yml b/config/metrics/counts_7d/20210902191054_i_quickactions_unapprove_weekly.yml index 70de82e6925..38659cdba82 100644 --- a/config/metrics/counts_7d/20210902191054_i_quickactions_unapprove_weekly.yml +++ b/config/metrics/counts_7d/20210902191054_i_quickactions_unapprove_weekly.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active milestone: "14.3" time_frame: 7d data_source: redis_hll diff --git a/config/metrics/counts_all/20210201124934_deployments.yml b/config/metrics/counts_all/20210201124934_deployments.yml index a25586f27e8..edf11470cb3 100644 --- a/config/metrics/counts_all/20210201124934_deployments.yml +++ b/config/metrics/counts_all/20210201124934_deployments.yml @@ -6,7 +6,7 @@ product_section: ops product_stage: release product_group: group::release value_type: number -status: data_available +status: active milestone: "8.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/735 time_frame: all diff --git a/config/metrics/counts_all/20210204124930_servers.yml b/config/metrics/counts_all/20210204124930_servers.yml index 0bf9cc64380..0e478dc5882 100644 --- a/config/metrics/counts_all/20210204124930_servers.yml +++ b/config/metrics/counts_all/20210204124930_servers.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: number -status: data_available +status: active time_frame: all data_source: distribution: diff --git a/config/metrics/counts_all/20210204124932_clusters.yml b/config/metrics/counts_all/20210204124932_clusters.yml index 27bdf43f1dc..07d402ed965 100644 --- a/config/metrics/counts_all/20210204124932_clusters.yml +++ b/config/metrics/counts_all/20210204124932_clusters.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: number -status: data_available +status: active time_frame: all data_source: distribution: diff --git a/config/metrics/counts_all/20210216174832_cycle_analytics_views.yml b/config/metrics/counts_all/20210216174832_cycle_analytics_views.yml index d214c23cd64..324ceb8ec84 100644 --- a/config/metrics/counts_all/20210216174832_cycle_analytics_views.yml +++ b/config/metrics/counts_all/20210216174832_cycle_analytics_views.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216174846_p_analytics_pipelines.yml b/config/metrics/counts_all/20210216174846_p_analytics_pipelines.yml index 069596b92a9..c34f5644053 100644 --- a/config/metrics/counts_all/20210216174846_p_analytics_pipelines.yml +++ b/config/metrics/counts_all/20210216174846_p_analytics_pipelines.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174850_p_analytics_valuestream.yml b/config/metrics/counts_all/20210216174850_p_analytics_valuestream.yml index 61d209ddb3d..671cd9a10b3 100644 --- a/config/metrics/counts_all/20210216174850_p_analytics_valuestream.yml +++ b/config/metrics/counts_all/20210216174850_p_analytics_valuestream.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174856_p_analytics_repo.yml b/config/metrics/counts_all/20210216174856_p_analytics_repo.yml index 252a7475466..5e6e308d8d2 100644 --- a/config/metrics/counts_all/20210216174856_p_analytics_repo.yml +++ b/config/metrics/counts_all/20210216174856_p_analytics_repo.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174858_i_analytics_cohorts.yml b/config/metrics/counts_all/20210216174858_i_analytics_cohorts.yml index 467f3fc33a2..9a06f4c44df 100644 --- a/config/metrics/counts_all/20210216174858_i_analytics_cohorts.yml +++ b/config/metrics/counts_all/20210216174858_i_analytics_cohorts.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174900_i_analytics_dev_ops_score.yml b/config/metrics/counts_all/20210216174900_i_analytics_dev_ops_score.yml index 17e650151ac..9130eb837e7 100644 --- a/config/metrics/counts_all/20210216174900_i_analytics_dev_ops_score.yml +++ b/config/metrics/counts_all/20210216174900_i_analytics_dev_ops_score.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174906_i_analytics_instance_statistics.yml b/config/metrics/counts_all/20210216174906_i_analytics_instance_statistics.yml index 57212a505ca..5ee75f27529 100644 --- a/config/metrics/counts_all/20210216174906_i_analytics_instance_statistics.yml +++ b/config/metrics/counts_all/20210216174906_i_analytics_instance_statistics.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216174908_analytics_unique_visits_for_any_target.yml b/config/metrics/counts_all/20210216174908_analytics_unique_visits_for_any_target.yml index d0fde8141f6..488bb48be0e 100644 --- a/config/metrics/counts_all/20210216174908_analytics_unique_visits_for_any_target.yml +++ b/config/metrics/counts_all/20210216174908_analytics_unique_visits_for_any_target.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216175024_service_desk_enabled_projects.yml b/config/metrics/counts_all/20210216175024_service_desk_enabled_projects.yml index 98c5ae12ff5..6c96cc69601 100644 --- a/config/metrics/counts_all/20210216175024_service_desk_enabled_projects.yml +++ b/config/metrics/counts_all/20210216175024_service_desk_enabled_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::certify product_category: service_desk value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175026_service_desk_issues.yml b/config/metrics/counts_all/20210216175026_service_desk_issues.yml index 2b46e53b904..139f8716978 100644 --- a/config/metrics/counts_all/20210216175026_service_desk_issues.yml +++ b/config/metrics/counts_all/20210216175026_service_desk_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::certify product_category: service_desk value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175037_suggestions.yml b/config/metrics/counts_all/20210216175037_suggestions.yml index b380c78158e..a1ba75cd51a 100644 --- a/config/metrics/counts_all/20210216175037_suggestions.yml +++ b/config/metrics/counts_all/20210216175037_suggestions.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175039_merge_requests.yml b/config/metrics/counts_all/20210216175039_merge_requests.yml index 64418431cae..e7d46f138b5 100644 --- a/config/metrics/counts_all/20210216175039_merge_requests.yml +++ b/config/metrics/counts_all/20210216175039_merge_requests.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175041_merge_request_comment.yml b/config/metrics/counts_all/20210216175041_merge_request_comment.yml index dbc8995993b..2e14d7f87ab 100644 --- a/config/metrics/counts_all/20210216175041_merge_request_comment.yml +++ b/config/metrics/counts_all/20210216175041_merge_request_comment.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216175043_merge_request_create.yml b/config/metrics/counts_all/20210216175043_merge_request_create.yml index b3302b6bf72..4986a4f3f6e 100644 --- a/config/metrics/counts_all/20210216175043_merge_request_create.yml +++ b/config/metrics/counts_all/20210216175043_merge_request_create.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216175045_merge_requests.yml b/config/metrics/counts_all/20210216175045_merge_requests.yml index b6211db1e5a..179a6258a15 100644 --- a/config/metrics/counts_all/20210216175045_merge_requests.yml +++ b/config/metrics/counts_all/20210216175045_merge_requests.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175053_suggestions.yml b/config/metrics/counts_all/20210216175053_suggestions.yml index cad2f44921e..f09a64efc0c 100644 --- a/config/metrics/counts_all/20210216175053_suggestions.yml +++ b/config/metrics/counts_all/20210216175053_suggestions.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175206_merged_merge_requests_using_approval_rules.yml b/config/metrics/counts_all/20210216175206_merged_merge_requests_using_approval_rules.yml index b3cd765c1a3..d71c35ef2e2 100644 --- a/config/metrics/counts_all/20210216175206_merged_merge_requests_using_approval_rules.yml +++ b/config/metrics/counts_all/20210216175206_merged_merge_requests_using_approval_rules.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::compliance product_category: compliance_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175229_auto_devops_enabled.yml b/config/metrics/counts_all/20210216175229_auto_devops_enabled.yml index 35b29615793..0a26577ae8d 100644 --- a/config/metrics/counts_all/20210216175229_auto_devops_enabled.yml +++ b/config/metrics/counts_all/20210216175229_auto_devops_enabled.yml @@ -8,7 +8,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175231_auto_devops_disabled.yml b/config/metrics/counts_all/20210216175231_auto_devops_disabled.yml index 8f5863a87ed..19089c21eb4 100644 --- a/config/metrics/counts_all/20210216175231_auto_devops_disabled.yml +++ b/config/metrics/counts_all/20210216175231_auto_devops_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175232_clusters.yml b/config/metrics/counts_all/20210216175232_clusters.yml index 4be60f970e0..e642c22a735 100644 --- a/config/metrics/counts_all/20210216175232_clusters.yml +++ b/config/metrics/counts_all/20210216175232_clusters.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175234_clusters_enabled.yml b/config/metrics/counts_all/20210216175234_clusters_enabled.yml index a553baa7717..cc230c6a201 100644 --- a/config/metrics/counts_all/20210216175234_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175234_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175236_project_clusters_enabled.yml b/config/metrics/counts_all/20210216175236_project_clusters_enabled.yml index a0f51ae8fd2..f12ec1f7301 100644 --- a/config/metrics/counts_all/20210216175236_project_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175236_project_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175238_group_clusters_enabled.yml b/config/metrics/counts_all/20210216175238_group_clusters_enabled.yml index 462c0d2b85f..2fa75d87214 100644 --- a/config/metrics/counts_all/20210216175238_group_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175238_group_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175240_instance_clusters_enabled.yml b/config/metrics/counts_all/20210216175240_instance_clusters_enabled.yml index ccac6de0c49..201d1f72b8d 100644 --- a/config/metrics/counts_all/20210216175240_instance_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175240_instance_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175242_clusters_disabled.yml b/config/metrics/counts_all/20210216175242_clusters_disabled.yml index 6cfb6ffe32e..00fdee27e2c 100644 --- a/config/metrics/counts_all/20210216175242_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175242_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175244_project_clusters_disabled.yml b/config/metrics/counts_all/20210216175244_project_clusters_disabled.yml index 9014e933306..21d704b5090 100644 --- a/config/metrics/counts_all/20210216175244_project_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175244_project_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175246_group_clusters_disabled.yml b/config/metrics/counts_all/20210216175246_group_clusters_disabled.yml index 0abb445762b..b31c129496c 100644 --- a/config/metrics/counts_all/20210216175246_group_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175246_group_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175248_instance_clusters_disabled.yml b/config/metrics/counts_all/20210216175248_instance_clusters_disabled.yml index 40ac2625702..e60c7a13fcf 100644 --- a/config/metrics/counts_all/20210216175248_instance_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175248_instance_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175250_clusters_platforms_eks.yml b/config/metrics/counts_all/20210216175250_clusters_platforms_eks.yml index 93dd97dadab..343275db3f7 100644 --- a/config/metrics/counts_all/20210216175250_clusters_platforms_eks.yml +++ b/config/metrics/counts_all/20210216175250_clusters_platforms_eks.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175251_clusters_platforms_gke.yml b/config/metrics/counts_all/20210216175251_clusters_platforms_gke.yml index a92b1e00891..4f7c85953ed 100644 --- a/config/metrics/counts_all/20210216175251_clusters_platforms_gke.yml +++ b/config/metrics/counts_all/20210216175251_clusters_platforms_gke.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175253_clusters_platforms_user.yml b/config/metrics/counts_all/20210216175253_clusters_platforms_user.yml index a011a677388..c0cce763b21 100644 --- a/config/metrics/counts_all/20210216175253_clusters_platforms_user.yml +++ b/config/metrics/counts_all/20210216175253_clusters_platforms_user.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175255_clusters_applications_helm.yml b/config/metrics/counts_all/20210216175255_clusters_applications_helm.yml index 0f0c0661767..661d809ae65 100644 --- a/config/metrics/counts_all/20210216175255_clusters_applications_helm.yml +++ b/config/metrics/counts_all/20210216175255_clusters_applications_helm.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175257_clusters_applications_ingress.yml b/config/metrics/counts_all/20210216175257_clusters_applications_ingress.yml index f351288707e..889e701a8d7 100644 --- a/config/metrics/counts_all/20210216175257_clusters_applications_ingress.yml +++ b/config/metrics/counts_all/20210216175257_clusters_applications_ingress.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175259_clusters_applications_cert_managers.yml b/config/metrics/counts_all/20210216175259_clusters_applications_cert_managers.yml index 833ac69009d..a22cf9dd848 100644 --- a/config/metrics/counts_all/20210216175259_clusters_applications_cert_managers.yml +++ b/config/metrics/counts_all/20210216175259_clusters_applications_cert_managers.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175301_clusters_applications_crossplane.yml b/config/metrics/counts_all/20210216175301_clusters_applications_crossplane.yml index 3aa03996d2e..1fc50c89bdc 100644 --- a/config/metrics/counts_all/20210216175301_clusters_applications_crossplane.yml +++ b/config/metrics/counts_all/20210216175301_clusters_applications_crossplane.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175303_clusters_applications_prometheus.yml b/config/metrics/counts_all/20210216175303_clusters_applications_prometheus.yml index 44ae7c860e0..b883f9cdd1b 100644 --- a/config/metrics/counts_all/20210216175303_clusters_applications_prometheus.yml +++ b/config/metrics/counts_all/20210216175303_clusters_applications_prometheus.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175305_clusters_applications_runner.yml b/config/metrics/counts_all/20210216175305_clusters_applications_runner.yml index 2a98d48cbca..5f9c9a9c0d0 100644 --- a/config/metrics/counts_all/20210216175305_clusters_applications_runner.yml +++ b/config/metrics/counts_all/20210216175305_clusters_applications_runner.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175307_clusters_applications_knative.yml b/config/metrics/counts_all/20210216175307_clusters_applications_knative.yml index 37b5654f824..8b5f50c6c7f 100644 --- a/config/metrics/counts_all/20210216175307_clusters_applications_knative.yml +++ b/config/metrics/counts_all/20210216175307_clusters_applications_knative.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175309_clusters_applications_elastic_stack.yml b/config/metrics/counts_all/20210216175309_clusters_applications_elastic_stack.yml index 849f6a7b4c5..fafbf8a7d47 100644 --- a/config/metrics/counts_all/20210216175309_clusters_applications_elastic_stack.yml +++ b/config/metrics/counts_all/20210216175309_clusters_applications_elastic_stack.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175310_clusters_applications_jupyter.yml b/config/metrics/counts_all/20210216175310_clusters_applications_jupyter.yml index 7d292a636bc..89c8116f0d8 100644 --- a/config/metrics/counts_all/20210216175310_clusters_applications_jupyter.yml +++ b/config/metrics/counts_all/20210216175310_clusters_applications_jupyter.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175312_clusters_applications_cilium.yml b/config/metrics/counts_all/20210216175312_clusters_applications_cilium.yml index bc08549cc2a..faf7f486d32 100644 --- a/config/metrics/counts_all/20210216175312_clusters_applications_cilium.yml +++ b/config/metrics/counts_all/20210216175312_clusters_applications_cilium.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175314_clusters_management_project.yml b/config/metrics/counts_all/20210216175314_clusters_management_project.yml index fa63d02ef3c..fb8421d4bf2 100644 --- a/config/metrics/counts_all/20210216175314_clusters_management_project.yml +++ b/config/metrics/counts_all/20210216175314_clusters_management_project.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175320_projects_with_terraform_reports.yml b/config/metrics/counts_all/20210216175320_projects_with_terraform_reports.yml index 5dcae874ea2..1008e17211d 100644 --- a/config/metrics/counts_all/20210216175320_projects_with_terraform_reports.yml +++ b/config/metrics/counts_all/20210216175320_projects_with_terraform_reports.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175322_projects_with_terraform_states.yml b/config/metrics/counts_all/20210216175322_projects_with_terraform_states.yml index c21d969f376..14621390630 100644 --- a/config/metrics/counts_all/20210216175322_projects_with_terraform_states.yml +++ b/config/metrics/counts_all/20210216175322_projects_with_terraform_states.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175324_terraform_reports.yml b/config/metrics/counts_all/20210216175324_terraform_reports.yml index 029478506ea..69e21a7d63e 100644 --- a/config/metrics/counts_all/20210216175324_terraform_reports.yml +++ b/config/metrics/counts_all/20210216175324_terraform_reports.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175326_terraform_states.yml b/config/metrics/counts_all/20210216175326_terraform_states.yml index be641fbb6bd..06b6e6d7928 100644 --- a/config/metrics/counts_all/20210216175326_terraform_states.yml +++ b/config/metrics/counts_all/20210216175326_terraform_states.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175329_clusters_applications_cert_managers.yml b/config/metrics/counts_all/20210216175329_clusters_applications_cert_managers.yml index 2f6791a362b..185ab921fd6 100644 --- a/config/metrics/counts_all/20210216175329_clusters_applications_cert_managers.yml +++ b/config/metrics/counts_all/20210216175329_clusters_applications_cert_managers.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175331_clusters_applications_helm.yml b/config/metrics/counts_all/20210216175331_clusters_applications_helm.yml index 378d3fc787f..4561338a3cb 100644 --- a/config/metrics/counts_all/20210216175331_clusters_applications_helm.yml +++ b/config/metrics/counts_all/20210216175331_clusters_applications_helm.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175333_clusters_applications_ingress.yml b/config/metrics/counts_all/20210216175333_clusters_applications_ingress.yml index 9f3f629e96e..8336b6a4048 100644 --- a/config/metrics/counts_all/20210216175333_clusters_applications_ingress.yml +++ b/config/metrics/counts_all/20210216175333_clusters_applications_ingress.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175335_clusters_applications_knative.yml b/config/metrics/counts_all/20210216175335_clusters_applications_knative.yml index d77595eee86..c5979093a18 100644 --- a/config/metrics/counts_all/20210216175335_clusters_applications_knative.yml +++ b/config/metrics/counts_all/20210216175335_clusters_applications_knative.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175337_clusters_management_project.yml b/config/metrics/counts_all/20210216175337_clusters_management_project.yml index 84b012338b9..8ed91a5e0f0 100644 --- a/config/metrics/counts_all/20210216175337_clusters_management_project.yml +++ b/config/metrics/counts_all/20210216175337_clusters_management_project.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175339_clusters_disabled.yml b/config/metrics/counts_all/20210216175339_clusters_disabled.yml index d88a1426a5c..5490df2a311 100644 --- a/config/metrics/counts_all/20210216175339_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175339_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175341_clusters_enabled.yml b/config/metrics/counts_all/20210216175341_clusters_enabled.yml index e3b351b0647..a5b64e3490b 100644 --- a/config/metrics/counts_all/20210216175341_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175341_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175343_clusters_platforms_gke.yml b/config/metrics/counts_all/20210216175343_clusters_platforms_gke.yml index 67cfa0fc572..3be2ae9259b 100644 --- a/config/metrics/counts_all/20210216175343_clusters_platforms_gke.yml +++ b/config/metrics/counts_all/20210216175343_clusters_platforms_gke.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175345_clusters_platforms_eks.yml b/config/metrics/counts_all/20210216175345_clusters_platforms_eks.yml index 0542d1957e4..898db74ceed 100644 --- a/config/metrics/counts_all/20210216175345_clusters_platforms_eks.yml +++ b/config/metrics/counts_all/20210216175345_clusters_platforms_eks.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175346_clusters_platforms_user.yml b/config/metrics/counts_all/20210216175346_clusters_platforms_user.yml index 819e5188967..d6fe1d162c4 100644 --- a/config/metrics/counts_all/20210216175346_clusters_platforms_user.yml +++ b/config/metrics/counts_all/20210216175346_clusters_platforms_user.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175348_instance_clusters_disabled.yml b/config/metrics/counts_all/20210216175348_instance_clusters_disabled.yml index e606ac1e211..4c8c3ccac9d 100644 --- a/config/metrics/counts_all/20210216175348_instance_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175348_instance_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175350_instance_clusters_enabled.yml b/config/metrics/counts_all/20210216175350_instance_clusters_enabled.yml index bc9ef763eb8..4f065bb0506 100644 --- a/config/metrics/counts_all/20210216175350_instance_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175350_instance_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175352_group_clusters_disabled.yml b/config/metrics/counts_all/20210216175352_group_clusters_disabled.yml index c483f64f9c7..902fd31a5f3 100644 --- a/config/metrics/counts_all/20210216175352_group_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175352_group_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175354_group_clusters_enabled.yml b/config/metrics/counts_all/20210216175354_group_clusters_enabled.yml index b1d6e734e0d..197f0a7ea1b 100644 --- a/config/metrics/counts_all/20210216175354_group_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175354_group_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175356_project_clusters_disabled.yml b/config/metrics/counts_all/20210216175356_project_clusters_disabled.yml index 05f339c7e63..cd406c21eed 100644 --- a/config/metrics/counts_all/20210216175356_project_clusters_disabled.yml +++ b/config/metrics/counts_all/20210216175356_project_clusters_disabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175358_project_clusters_enabled.yml b/config/metrics/counts_all/20210216175358_project_clusters_enabled.yml index 16c2cb0a7e3..e106a31c4b6 100644 --- a/config/metrics/counts_all/20210216175358_project_clusters_enabled.yml +++ b/config/metrics/counts_all/20210216175358_project_clusters_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175446_network_policy_forwards.yml b/config/metrics/counts_all/20210216175446_network_policy_forwards.yml index e0a037ffedb..ef2b37bb001 100644 --- a/config/metrics/counts_all/20210216175446_network_policy_forwards.yml +++ b/config/metrics/counts_all/20210216175446_network_policy_forwards.yml @@ -8,7 +8,7 @@ product_stage: protect product_group: group::container security product_category: container_network_security value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216175448_network_policy_drops.yml b/config/metrics/counts_all/20210216175448_network_policy_drops.yml index 84f12746762..933363c0a14 100644 --- a/config/metrics/counts_all/20210216175448_network_policy_drops.yml +++ b/config/metrics/counts_all/20210216175448_network_policy_drops.yml @@ -8,7 +8,7 @@ product_stage: protect product_group: group::container security product_category: container_network_security value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216175510_ci_builds.yml b/config/metrics/counts_all/20210216175510_ci_builds.yml index be1a41b2e66..d4d566eef00 100644 --- a/config/metrics/counts_all/20210216175510_ci_builds.yml +++ b/config/metrics/counts_all/20210216175510_ci_builds.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175512_ci_internal_pipelines.yml b/config/metrics/counts_all/20210216175512_ci_internal_pipelines.yml index 2d2045f9c1f..fbe697fc77b 100644 --- a/config/metrics/counts_all/20210216175512_ci_internal_pipelines.yml +++ b/config/metrics/counts_all/20210216175512_ci_internal_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175514_ci_external_pipelines.yml b/config/metrics/counts_all/20210216175514_ci_external_pipelines.yml index 5d7f1c08f46..b27115aa904 100644 --- a/config/metrics/counts_all/20210216175514_ci_external_pipelines.yml +++ b/config/metrics/counts_all/20210216175514_ci_external_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175516_ci_pipeline_config_auto_devops.yml b/config/metrics/counts_all/20210216175516_ci_pipeline_config_auto_devops.yml index b9f190169f1..d5bfa361905 100644 --- a/config/metrics/counts_all/20210216175516_ci_pipeline_config_auto_devops.yml +++ b/config/metrics/counts_all/20210216175516_ci_pipeline_config_auto_devops.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175518_ci_pipeline_config_repository.yml b/config/metrics/counts_all/20210216175518_ci_pipeline_config_repository.yml index b85acf91296..cf850f26d42 100644 --- a/config/metrics/counts_all/20210216175518_ci_pipeline_config_repository.yml +++ b/config/metrics/counts_all/20210216175518_ci_pipeline_config_repository.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175520_ci_runners.yml b/config/metrics/counts_all/20210216175520_ci_runners.yml index 5016a85d1d7..e402391f9ba 100644 --- a/config/metrics/counts_all/20210216175520_ci_runners.yml +++ b/config/metrics/counts_all/20210216175520_ci_runners.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175521_ci_triggers.yml b/config/metrics/counts_all/20210216175521_ci_triggers.yml index 6c1e063655d..7b8f54f0e25 100644 --- a/config/metrics/counts_all/20210216175521_ci_triggers.yml +++ b/config/metrics/counts_all/20210216175521_ci_triggers.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175523_ci_pipeline_schedules.yml b/config/metrics/counts_all/20210216175523_ci_pipeline_schedules.yml index 13a3ef123b4..7917c26b8f9 100644 --- a/config/metrics/counts_all/20210216175523_ci_pipeline_schedules.yml +++ b/config/metrics/counts_all/20210216175523_ci_pipeline_schedules.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175525_ci_builds.yml b/config/metrics/counts_all/20210216175525_ci_builds.yml index 16a662f14f0..885996afdf9 100644 --- a/config/metrics/counts_all/20210216175525_ci_builds.yml +++ b/config/metrics/counts_all/20210216175525_ci_builds.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175527_ci_external_pipelines.yml b/config/metrics/counts_all/20210216175527_ci_external_pipelines.yml index fefa76da1e7..531f402ce0a 100644 --- a/config/metrics/counts_all/20210216175527_ci_external_pipelines.yml +++ b/config/metrics/counts_all/20210216175527_ci_external_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175529_ci_internal_pipelines.yml b/config/metrics/counts_all/20210216175529_ci_internal_pipelines.yml index 82bb3aaf3c2..b58e49b2603 100644 --- a/config/metrics/counts_all/20210216175529_ci_internal_pipelines.yml +++ b/config/metrics/counts_all/20210216175529_ci_internal_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175531_ci_pipeline_config_auto_devops.yml b/config/metrics/counts_all/20210216175531_ci_pipeline_config_auto_devops.yml index 2b02a1ea8a9..982fe4799e8 100644 --- a/config/metrics/counts_all/20210216175531_ci_pipeline_config_auto_devops.yml +++ b/config/metrics/counts_all/20210216175531_ci_pipeline_config_auto_devops.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175533_ci_pipeline_config_repository.yml b/config/metrics/counts_all/20210216175533_ci_pipeline_config_repository.yml index 39f61224306..269acb1105e 100644 --- a/config/metrics/counts_all/20210216175533_ci_pipeline_config_repository.yml +++ b/config/metrics/counts_all/20210216175533_ci_pipeline_config_repository.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175535_ci_pipeline_schedules.yml b/config/metrics/counts_all/20210216175535_ci_pipeline_schedules.yml index 37abe8569a9..82084178273 100644 --- a/config/metrics/counts_all/20210216175535_ci_pipeline_schedules.yml +++ b/config/metrics/counts_all/20210216175535_ci_pipeline_schedules.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175537_ci_pipelines.yml b/config/metrics/counts_all/20210216175537_ci_pipelines.yml index c64a595c112..0a5e5ff0269 100644 --- a/config/metrics/counts_all/20210216175537_ci_pipelines.yml +++ b/config/metrics/counts_all/20210216175537_ci_pipelines.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175539_ci_triggers.yml b/config/metrics/counts_all/20210216175539_ci_triggers.yml index 03bae21fbd3..76824228a41 100644 --- a/config/metrics/counts_all/20210216175539_ci_triggers.yml +++ b/config/metrics/counts_all/20210216175539_ci_triggers.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175621_web_hooks.yml b/config/metrics/counts_all/20210216175621_web_hooks.yml index 1297c55b759..326c1f08539 100644 --- a/config/metrics/counts_all/20210216175621_web_hooks.yml +++ b/config/metrics/counts_all/20210216175621_web_hooks.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175623_projects_asana_active.yml b/config/metrics/counts_all/20210216175623_projects_asana_active.yml index 1cc4435718a..ca0ff0cdaf7 100644 --- a/config/metrics/counts_all/20210216175623_projects_asana_active.yml +++ b/config/metrics/counts_all/20210216175623_projects_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175625_groups_asana_active.yml b/config/metrics/counts_all/20210216175625_groups_asana_active.yml index 68f8ddbb8e5..3c1cd0378d0 100644 --- a/config/metrics/counts_all/20210216175625_groups_asana_active.yml +++ b/config/metrics/counts_all/20210216175625_groups_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175627_templates_asana_active.yml b/config/metrics/counts_all/20210216175627_templates_asana_active.yml index f80b599d291..48025516d32 100644 --- a/config/metrics/counts_all/20210216175627_templates_asana_active.yml +++ b/config/metrics/counts_all/20210216175627_templates_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175628_instances_asana_active.yml b/config/metrics/counts_all/20210216175628_instances_asana_active.yml index 072569b3f0e..ab2a7ab1fd8 100644 --- a/config/metrics/counts_all/20210216175628_instances_asana_active.yml +++ b/config/metrics/counts_all/20210216175628_instances_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175630_projects_inheriting_asana_active.yml b/config/metrics/counts_all/20210216175630_projects_inheriting_asana_active.yml index a7dfab4b4e2..fd79b15fd68 100644 --- a/config/metrics/counts_all/20210216175630_projects_inheriting_asana_active.yml +++ b/config/metrics/counts_all/20210216175630_projects_inheriting_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175632_groups_inheriting_asana_active.yml b/config/metrics/counts_all/20210216175632_groups_inheriting_asana_active.yml index 27e3b6435b6..5f8203fda4b 100644 --- a/config/metrics/counts_all/20210216175632_groups_inheriting_asana_active.yml +++ b/config/metrics/counts_all/20210216175632_groups_inheriting_asana_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175634_projects_assembla_active.yml b/config/metrics/counts_all/20210216175634_projects_assembla_active.yml index f889554204d..6d98db7ab3c 100644 --- a/config/metrics/counts_all/20210216175634_projects_assembla_active.yml +++ b/config/metrics/counts_all/20210216175634_projects_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175636_groups_assembla_active.yml b/config/metrics/counts_all/20210216175636_groups_assembla_active.yml index 72b3b6525c6..e04faffc57f 100644 --- a/config/metrics/counts_all/20210216175636_groups_assembla_active.yml +++ b/config/metrics/counts_all/20210216175636_groups_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175638_templates_assembla_active.yml b/config/metrics/counts_all/20210216175638_templates_assembla_active.yml index bce06ac5b94..1ab0d42a5ee 100644 --- a/config/metrics/counts_all/20210216175638_templates_assembla_active.yml +++ b/config/metrics/counts_all/20210216175638_templates_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175640_instances_assembla_active.yml b/config/metrics/counts_all/20210216175640_instances_assembla_active.yml index 97b742af9e2..ee2ff3254cc 100644 --- a/config/metrics/counts_all/20210216175640_instances_assembla_active.yml +++ b/config/metrics/counts_all/20210216175640_instances_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175642_projects_inheriting_assembla_active.yml b/config/metrics/counts_all/20210216175642_projects_inheriting_assembla_active.yml index 58e5cbc463a..c67864be199 100644 --- a/config/metrics/counts_all/20210216175642_projects_inheriting_assembla_active.yml +++ b/config/metrics/counts_all/20210216175642_projects_inheriting_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175644_groups_inheriting_assembla_active.yml b/config/metrics/counts_all/20210216175644_groups_inheriting_assembla_active.yml index c4a3e97f5dd..4d220c45a70 100644 --- a/config/metrics/counts_all/20210216175644_groups_inheriting_assembla_active.yml +++ b/config/metrics/counts_all/20210216175644_groups_inheriting_assembla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175645_projects_bamboo_active.yml b/config/metrics/counts_all/20210216175645_projects_bamboo_active.yml index de457accbc6..2f5fa08d325 100644 --- a/config/metrics/counts_all/20210216175645_projects_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175645_projects_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175647_groups_bamboo_active.yml b/config/metrics/counts_all/20210216175647_groups_bamboo_active.yml index 0ddb9142069..c136a7b1c41 100644 --- a/config/metrics/counts_all/20210216175647_groups_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175647_groups_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175649_templates_bamboo_active.yml b/config/metrics/counts_all/20210216175649_templates_bamboo_active.yml index 44ec3577723..85b10732ae8 100644 --- a/config/metrics/counts_all/20210216175649_templates_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175649_templates_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175651_instances_bamboo_active.yml b/config/metrics/counts_all/20210216175651_instances_bamboo_active.yml index 2819b953866..d7a266eceb8 100644 --- a/config/metrics/counts_all/20210216175651_instances_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175651_instances_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175653_projects_inheriting_bamboo_active.yml b/config/metrics/counts_all/20210216175653_projects_inheriting_bamboo_active.yml index 37cf4b6a5c9..69f8205923c 100644 --- a/config/metrics/counts_all/20210216175653_projects_inheriting_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175653_projects_inheriting_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175655_groups_inheriting_bamboo_active.yml b/config/metrics/counts_all/20210216175655_groups_inheriting_bamboo_active.yml index 91d4c1ee87c..6c71d922567 100644 --- a/config/metrics/counts_all/20210216175655_groups_inheriting_bamboo_active.yml +++ b/config/metrics/counts_all/20210216175655_groups_inheriting_bamboo_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175657_projects_bugzilla_active.yml b/config/metrics/counts_all/20210216175657_projects_bugzilla_active.yml index 2ae5655f3b0..e4869d575a1 100644 --- a/config/metrics/counts_all/20210216175657_projects_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175657_projects_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175659_groups_bugzilla_active.yml b/config/metrics/counts_all/20210216175659_groups_bugzilla_active.yml index db4c0e668f0..433eb3f248c 100644 --- a/config/metrics/counts_all/20210216175659_groups_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175659_groups_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175701_templates_bugzilla_active.yml b/config/metrics/counts_all/20210216175701_templates_bugzilla_active.yml index 5a80e37f556..bc5a1238010 100644 --- a/config/metrics/counts_all/20210216175701_templates_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175701_templates_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175702_instances_bugzilla_active.yml b/config/metrics/counts_all/20210216175702_instances_bugzilla_active.yml index 155f942f2e7..89aac1d7bb8 100644 --- a/config/metrics/counts_all/20210216175702_instances_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175702_instances_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175704_projects_inheriting_bugzilla_active.yml b/config/metrics/counts_all/20210216175704_projects_inheriting_bugzilla_active.yml index c6f74ebb5b8..c85fdde5970 100644 --- a/config/metrics/counts_all/20210216175704_projects_inheriting_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175704_projects_inheriting_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175706_groups_inheriting_bugzilla_active.yml b/config/metrics/counts_all/20210216175706_groups_inheriting_bugzilla_active.yml index c0d7ad2d345..9b9e49052c0 100644 --- a/config/metrics/counts_all/20210216175706_groups_inheriting_bugzilla_active.yml +++ b/config/metrics/counts_all/20210216175706_groups_inheriting_bugzilla_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175708_projects_buildkite_active.yml b/config/metrics/counts_all/20210216175708_projects_buildkite_active.yml index 168ac1af9fc..cd99e26434e 100644 --- a/config/metrics/counts_all/20210216175708_projects_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175708_projects_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175710_groups_buildkite_active.yml b/config/metrics/counts_all/20210216175710_groups_buildkite_active.yml index 5d4b21b1fbd..fde47913509 100644 --- a/config/metrics/counts_all/20210216175710_groups_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175710_groups_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175712_templates_buildkite_active.yml b/config/metrics/counts_all/20210216175712_templates_buildkite_active.yml index 125f0e47356..16287a4e71a 100644 --- a/config/metrics/counts_all/20210216175712_templates_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175712_templates_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175714_instances_buildkite_active.yml b/config/metrics/counts_all/20210216175714_instances_buildkite_active.yml index 37a66245303..ee905ce7668 100644 --- a/config/metrics/counts_all/20210216175714_instances_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175714_instances_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175716_projects_inheriting_buildkite_active.yml b/config/metrics/counts_all/20210216175716_projects_inheriting_buildkite_active.yml index 7d7a7c2e075..f91773fe320 100644 --- a/config/metrics/counts_all/20210216175716_projects_inheriting_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175716_projects_inheriting_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175717_groups_inheriting_buildkite_active.yml b/config/metrics/counts_all/20210216175717_groups_inheriting_buildkite_active.yml index 24f7f58ecaa..fee0f23de9e 100644 --- a/config/metrics/counts_all/20210216175717_groups_inheriting_buildkite_active.yml +++ b/config/metrics/counts_all/20210216175717_groups_inheriting_buildkite_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175719_projects_campfire_active.yml b/config/metrics/counts_all/20210216175719_projects_campfire_active.yml index 9f7dfb89153..b61c070c844 100644 --- a/config/metrics/counts_all/20210216175719_projects_campfire_active.yml +++ b/config/metrics/counts_all/20210216175719_projects_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175721_groups_campfire_active.yml b/config/metrics/counts_all/20210216175721_groups_campfire_active.yml index eedc3e7bf58..0bb65e4336a 100644 --- a/config/metrics/counts_all/20210216175721_groups_campfire_active.yml +++ b/config/metrics/counts_all/20210216175721_groups_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175723_templates_campfire_active.yml b/config/metrics/counts_all/20210216175723_templates_campfire_active.yml index 7fc6331367b..728d3d0af48 100644 --- a/config/metrics/counts_all/20210216175723_templates_campfire_active.yml +++ b/config/metrics/counts_all/20210216175723_templates_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175725_instances_campfire_active.yml b/config/metrics/counts_all/20210216175725_instances_campfire_active.yml index ef9d4cb6944..f5082d71885 100644 --- a/config/metrics/counts_all/20210216175725_instances_campfire_active.yml +++ b/config/metrics/counts_all/20210216175725_instances_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175727_projects_inheriting_campfire_active.yml b/config/metrics/counts_all/20210216175727_projects_inheriting_campfire_active.yml index ad5bf3fe8ed..11f7ba2bcc9 100644 --- a/config/metrics/counts_all/20210216175727_projects_inheriting_campfire_active.yml +++ b/config/metrics/counts_all/20210216175727_projects_inheriting_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175729_groups_inheriting_campfire_active.yml b/config/metrics/counts_all/20210216175729_groups_inheriting_campfire_active.yml index a5b5f009098..8a4585d6d6e 100644 --- a/config/metrics/counts_all/20210216175729_groups_inheriting_campfire_active.yml +++ b/config/metrics/counts_all/20210216175729_groups_inheriting_campfire_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175731_projects_confluence_active.yml b/config/metrics/counts_all/20210216175731_projects_confluence_active.yml index bb2f1f0158f..edab23f9eb5 100644 --- a/config/metrics/counts_all/20210216175731_projects_confluence_active.yml +++ b/config/metrics/counts_all/20210216175731_projects_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175733_groups_confluence_active.yml b/config/metrics/counts_all/20210216175733_groups_confluence_active.yml index 7de039a27c2..818be9e61bc 100644 --- a/config/metrics/counts_all/20210216175733_groups_confluence_active.yml +++ b/config/metrics/counts_all/20210216175733_groups_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175734_templates_confluence_active.yml b/config/metrics/counts_all/20210216175734_templates_confluence_active.yml index d059c1f09ad..bb2d9976110 100644 --- a/config/metrics/counts_all/20210216175734_templates_confluence_active.yml +++ b/config/metrics/counts_all/20210216175734_templates_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175736_instances_confluence_active.yml b/config/metrics/counts_all/20210216175736_instances_confluence_active.yml index 27cd481b3c2..83da2211379 100644 --- a/config/metrics/counts_all/20210216175736_instances_confluence_active.yml +++ b/config/metrics/counts_all/20210216175736_instances_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175738_projects_inheriting_confluence_active.yml b/config/metrics/counts_all/20210216175738_projects_inheriting_confluence_active.yml index 120c5c584a8..104ee9b8afa 100644 --- a/config/metrics/counts_all/20210216175738_projects_inheriting_confluence_active.yml +++ b/config/metrics/counts_all/20210216175738_projects_inheriting_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175740_groups_inheriting_confluence_active.yml b/config/metrics/counts_all/20210216175740_groups_inheriting_confluence_active.yml index 4b5cc064e92..855f298d716 100644 --- a/config/metrics/counts_all/20210216175740_groups_inheriting_confluence_active.yml +++ b/config/metrics/counts_all/20210216175740_groups_inheriting_confluence_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175742_projects_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175742_projects_custom_issue_tracker_active.yml index baa22cf5d8b..f6125e01db2 100644 --- a/config/metrics/counts_all/20210216175742_projects_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175742_projects_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175744_groups_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175744_groups_custom_issue_tracker_active.yml index a3d742e5574..78078808ced 100644 --- a/config/metrics/counts_all/20210216175744_groups_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175744_groups_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175745_templates_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175745_templates_custom_issue_tracker_active.yml index fec328053dc..c1c63d0529a 100644 --- a/config/metrics/counts_all/20210216175745_templates_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175745_templates_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175747_instances_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175747_instances_custom_issue_tracker_active.yml index e1b07c4709a..c63b95a30fa 100644 --- a/config/metrics/counts_all/20210216175747_instances_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175747_instances_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175749_projects_inheriting_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175749_projects_inheriting_custom_issue_tracker_active.yml index 807a2486a2e..b25687486b8 100644 --- a/config/metrics/counts_all/20210216175749_projects_inheriting_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175749_projects_inheriting_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175751_groups_inheriting_custom_issue_tracker_active.yml b/config/metrics/counts_all/20210216175751_groups_inheriting_custom_issue_tracker_active.yml index 0f6b2b3eed3..5ec00059577 100644 --- a/config/metrics/counts_all/20210216175751_groups_inheriting_custom_issue_tracker_active.yml +++ b/config/metrics/counts_all/20210216175751_groups_inheriting_custom_issue_tracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175753_projects_discord_active.yml b/config/metrics/counts_all/20210216175753_projects_discord_active.yml index e77370d11f9..7337be70d10 100644 --- a/config/metrics/counts_all/20210216175753_projects_discord_active.yml +++ b/config/metrics/counts_all/20210216175753_projects_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175755_groups_discord_active.yml b/config/metrics/counts_all/20210216175755_groups_discord_active.yml index 44a297f26e7..f9b38fee8fa 100644 --- a/config/metrics/counts_all/20210216175755_groups_discord_active.yml +++ b/config/metrics/counts_all/20210216175755_groups_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175756_templates_discord_active.yml b/config/metrics/counts_all/20210216175756_templates_discord_active.yml index 724369709a4..d0663da787f 100644 --- a/config/metrics/counts_all/20210216175756_templates_discord_active.yml +++ b/config/metrics/counts_all/20210216175756_templates_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175758_instances_discord_active.yml b/config/metrics/counts_all/20210216175758_instances_discord_active.yml index 5f1461dd4ca..9eaaa0763cd 100644 --- a/config/metrics/counts_all/20210216175758_instances_discord_active.yml +++ b/config/metrics/counts_all/20210216175758_instances_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175800_projects_inheriting_discord_active.yml b/config/metrics/counts_all/20210216175800_projects_inheriting_discord_active.yml index afc14749b83..bfc703c42a9 100644 --- a/config/metrics/counts_all/20210216175800_projects_inheriting_discord_active.yml +++ b/config/metrics/counts_all/20210216175800_projects_inheriting_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175802_groups_inheriting_discord_active.yml b/config/metrics/counts_all/20210216175802_groups_inheriting_discord_active.yml index cae6b268640..fe0e87708e6 100644 --- a/config/metrics/counts_all/20210216175802_groups_inheriting_discord_active.yml +++ b/config/metrics/counts_all/20210216175802_groups_inheriting_discord_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175804_projects_drone_ci_active.yml b/config/metrics/counts_all/20210216175804_projects_drone_ci_active.yml index 1450d1dd4ef..2315bf3d9e4 100644 --- a/config/metrics/counts_all/20210216175804_projects_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175804_projects_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175806_groups_drone_ci_active.yml b/config/metrics/counts_all/20210216175806_groups_drone_ci_active.yml index 2236393cce3..acb551bab24 100644 --- a/config/metrics/counts_all/20210216175806_groups_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175806_groups_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175807_templates_drone_ci_active.yml b/config/metrics/counts_all/20210216175807_templates_drone_ci_active.yml index 81a87abede8..6a764f64ab6 100644 --- a/config/metrics/counts_all/20210216175807_templates_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175807_templates_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175809_instances_drone_ci_active.yml b/config/metrics/counts_all/20210216175809_instances_drone_ci_active.yml index a580eeb9911..d20dd22b65f 100644 --- a/config/metrics/counts_all/20210216175809_instances_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175809_instances_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175811_projects_inheriting_drone_ci_active.yml b/config/metrics/counts_all/20210216175811_projects_inheriting_drone_ci_active.yml index 0323c54abcf..2e5f7446e19 100644 --- a/config/metrics/counts_all/20210216175811_projects_inheriting_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175811_projects_inheriting_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175813_groups_inheriting_drone_ci_active.yml b/config/metrics/counts_all/20210216175813_groups_inheriting_drone_ci_active.yml index 36776e486d9..0ff92225b8c 100644 --- a/config/metrics/counts_all/20210216175813_groups_inheriting_drone_ci_active.yml +++ b/config/metrics/counts_all/20210216175813_groups_inheriting_drone_ci_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175815_projects_emails_on_push_active.yml b/config/metrics/counts_all/20210216175815_projects_emails_on_push_active.yml index a7cd15bd970..4b81186a6f2 100644 --- a/config/metrics/counts_all/20210216175815_projects_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175815_projects_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175817_groups_emails_on_push_active.yml b/config/metrics/counts_all/20210216175817_groups_emails_on_push_active.yml index b1bb762b331..dc298ba5974 100644 --- a/config/metrics/counts_all/20210216175817_groups_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175817_groups_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175818_templates_emails_on_push_active.yml b/config/metrics/counts_all/20210216175818_templates_emails_on_push_active.yml index 9784c2db282..f709aff9f07 100644 --- a/config/metrics/counts_all/20210216175818_templates_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175818_templates_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175820_instances_emails_on_push_active.yml b/config/metrics/counts_all/20210216175820_instances_emails_on_push_active.yml index ff6d8d935c0..d37c992ebf4 100644 --- a/config/metrics/counts_all/20210216175820_instances_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175820_instances_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175822_projects_inheriting_emails_on_push_active.yml b/config/metrics/counts_all/20210216175822_projects_inheriting_emails_on_push_active.yml index 8fa32ba188f..b86e285c986 100644 --- a/config/metrics/counts_all/20210216175822_projects_inheriting_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175822_projects_inheriting_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175824_groups_inheriting_emails_on_push_active.yml b/config/metrics/counts_all/20210216175824_groups_inheriting_emails_on_push_active.yml index d85bbefbc1f..0d15b246455 100644 --- a/config/metrics/counts_all/20210216175824_groups_inheriting_emails_on_push_active.yml +++ b/config/metrics/counts_all/20210216175824_groups_inheriting_emails_on_push_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175826_projects_external_wiki_active.yml b/config/metrics/counts_all/20210216175826_projects_external_wiki_active.yml index ad6873aa029..3754c837376 100644 --- a/config/metrics/counts_all/20210216175826_projects_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175826_projects_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175828_groups_external_wiki_active.yml b/config/metrics/counts_all/20210216175828_groups_external_wiki_active.yml index 5191174b03f..011a185439a 100644 --- a/config/metrics/counts_all/20210216175828_groups_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175828_groups_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175829_templates_external_wiki_active.yml b/config/metrics/counts_all/20210216175829_templates_external_wiki_active.yml index d7e17564f96..35bbce95380 100644 --- a/config/metrics/counts_all/20210216175829_templates_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175829_templates_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175831_instances_external_wiki_active.yml b/config/metrics/counts_all/20210216175831_instances_external_wiki_active.yml index 8ff6ce868ca..f587b145229 100644 --- a/config/metrics/counts_all/20210216175831_instances_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175831_instances_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175833_projects_inheriting_external_wiki_active.yml b/config/metrics/counts_all/20210216175833_projects_inheriting_external_wiki_active.yml index afa54a16d86..2662f6299da 100644 --- a/config/metrics/counts_all/20210216175833_projects_inheriting_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175833_projects_inheriting_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175835_groups_inheriting_external_wiki_active.yml b/config/metrics/counts_all/20210216175835_groups_inheriting_external_wiki_active.yml index 0e9b52ce806..f0bb398258f 100644 --- a/config/metrics/counts_all/20210216175835_groups_inheriting_external_wiki_active.yml +++ b/config/metrics/counts_all/20210216175835_groups_inheriting_external_wiki_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175837_projects_flowdock_active.yml b/config/metrics/counts_all/20210216175837_projects_flowdock_active.yml index d6f6de24068..24f36849e59 100644 --- a/config/metrics/counts_all/20210216175837_projects_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175837_projects_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175839_groups_flowdock_active.yml b/config/metrics/counts_all/20210216175839_groups_flowdock_active.yml index 21a9256da6b..91c41908e5e 100644 --- a/config/metrics/counts_all/20210216175839_groups_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175839_groups_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175840_templates_flowdock_active.yml b/config/metrics/counts_all/20210216175840_templates_flowdock_active.yml index 37d5ce81f12..dc1466d2bef 100644 --- a/config/metrics/counts_all/20210216175840_templates_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175840_templates_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175842_instances_flowdock_active.yml b/config/metrics/counts_all/20210216175842_instances_flowdock_active.yml index 6b28b5f5cd8..0da1700a699 100644 --- a/config/metrics/counts_all/20210216175842_instances_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175842_instances_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175844_projects_inheriting_flowdock_active.yml b/config/metrics/counts_all/20210216175844_projects_inheriting_flowdock_active.yml index 48025839c03..e930d8642fb 100644 --- a/config/metrics/counts_all/20210216175844_projects_inheriting_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175844_projects_inheriting_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175846_groups_inheriting_flowdock_active.yml b/config/metrics/counts_all/20210216175846_groups_inheriting_flowdock_active.yml index 558edfc4e62..1d6d4eac8b0 100644 --- a/config/metrics/counts_all/20210216175846_groups_inheriting_flowdock_active.yml +++ b/config/metrics/counts_all/20210216175846_groups_inheriting_flowdock_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175859_projects_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175859_projects_hangouts_chat_active.yml index b22c8c633ed..e5ae5159d47 100644 --- a/config/metrics/counts_all/20210216175859_projects_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175859_projects_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175901_groups_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175901_groups_hangouts_chat_active.yml index 5299718008f..a16d9ceed31 100644 --- a/config/metrics/counts_all/20210216175901_groups_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175901_groups_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175902_templates_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175902_templates_hangouts_chat_active.yml index 945473b3c35..b676501db10 100644 --- a/config/metrics/counts_all/20210216175902_templates_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175902_templates_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175904_instances_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175904_instances_hangouts_chat_active.yml index 40176053263..6f04eb7456c 100644 --- a/config/metrics/counts_all/20210216175904_instances_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175904_instances_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175906_projects_inheriting_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175906_projects_inheriting_hangouts_chat_active.yml index a2753b7f000..85e735be109 100644 --- a/config/metrics/counts_all/20210216175906_projects_inheriting_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175906_projects_inheriting_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175908_groups_inheriting_hangouts_chat_active.yml b/config/metrics/counts_all/20210216175908_groups_inheriting_hangouts_chat_active.yml index 27c34ef851a..04fb8b998ce 100644 --- a/config/metrics/counts_all/20210216175908_groups_inheriting_hangouts_chat_active.yml +++ b/config/metrics/counts_all/20210216175908_groups_inheriting_hangouts_chat_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175921_projects_irker_active.yml b/config/metrics/counts_all/20210216175921_projects_irker_active.yml index 024be65ab21..95eb098645c 100644 --- a/config/metrics/counts_all/20210216175921_projects_irker_active.yml +++ b/config/metrics/counts_all/20210216175921_projects_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175923_groups_irker_active.yml b/config/metrics/counts_all/20210216175923_groups_irker_active.yml index 4df75137446..f8321d3a18e 100644 --- a/config/metrics/counts_all/20210216175923_groups_irker_active.yml +++ b/config/metrics/counts_all/20210216175923_groups_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175924_templates_irker_active.yml b/config/metrics/counts_all/20210216175924_templates_irker_active.yml index bb821cd9ee9..fc3ed89b6e8 100644 --- a/config/metrics/counts_all/20210216175924_templates_irker_active.yml +++ b/config/metrics/counts_all/20210216175924_templates_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175926_instances_irker_active.yml b/config/metrics/counts_all/20210216175926_instances_irker_active.yml index 9de79edaee7..ac306aaeb5f 100644 --- a/config/metrics/counts_all/20210216175926_instances_irker_active.yml +++ b/config/metrics/counts_all/20210216175926_instances_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175928_projects_inheriting_irker_active.yml b/config/metrics/counts_all/20210216175928_projects_inheriting_irker_active.yml index e503701d798..5e2e0b9fd65 100644 --- a/config/metrics/counts_all/20210216175928_projects_inheriting_irker_active.yml +++ b/config/metrics/counts_all/20210216175928_projects_inheriting_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175930_groups_inheriting_irker_active.yml b/config/metrics/counts_all/20210216175930_groups_inheriting_irker_active.yml index 341e32bde2e..eff596e72fb 100644 --- a/config/metrics/counts_all/20210216175930_groups_inheriting_irker_active.yml +++ b/config/metrics/counts_all/20210216175930_groups_inheriting_irker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175932_projects_jenkins_active.yml b/config/metrics/counts_all/20210216175932_projects_jenkins_active.yml index a7126bf0a92..3fd0e56a4e9 100644 --- a/config/metrics/counts_all/20210216175932_projects_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175932_projects_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175934_groups_jenkins_active.yml b/config/metrics/counts_all/20210216175934_groups_jenkins_active.yml index 765d9556137..ffc47a98ea0 100644 --- a/config/metrics/counts_all/20210216175934_groups_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175934_groups_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175935_templates_jenkins_active.yml b/config/metrics/counts_all/20210216175935_templates_jenkins_active.yml index 5e24a792887..542671304b0 100644 --- a/config/metrics/counts_all/20210216175935_templates_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175935_templates_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175937_instances_jenkins_active.yml b/config/metrics/counts_all/20210216175937_instances_jenkins_active.yml index 79f539216b4..39eabd6c502 100644 --- a/config/metrics/counts_all/20210216175937_instances_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175937_instances_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175939_projects_inheriting_jenkins_active.yml b/config/metrics/counts_all/20210216175939_projects_inheriting_jenkins_active.yml index da54fad496c..98115a001a6 100644 --- a/config/metrics/counts_all/20210216175939_projects_inheriting_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175939_projects_inheriting_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175941_groups_inheriting_jenkins_active.yml b/config/metrics/counts_all/20210216175941_groups_inheriting_jenkins_active.yml index 1789f36acaa..ad5dd2a38d3 100644 --- a/config/metrics/counts_all/20210216175941_groups_inheriting_jenkins_active.yml +++ b/config/metrics/counts_all/20210216175941_groups_inheriting_jenkins_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175943_projects_jira_active.yml b/config/metrics/counts_all/20210216175943_projects_jira_active.yml index 92866092aeb..cc1cd2b73dd 100644 --- a/config/metrics/counts_all/20210216175943_projects_jira_active.yml +++ b/config/metrics/counts_all/20210216175943_projects_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175945_groups_jira_active.yml b/config/metrics/counts_all/20210216175945_groups_jira_active.yml index a8ab0507d8e..c1632e6006a 100644 --- a/config/metrics/counts_all/20210216175945_groups_jira_active.yml +++ b/config/metrics/counts_all/20210216175945_groups_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175946_templates_jira_active.yml b/config/metrics/counts_all/20210216175946_templates_jira_active.yml index 51721ed7936..83d3669b7f2 100644 --- a/config/metrics/counts_all/20210216175946_templates_jira_active.yml +++ b/config/metrics/counts_all/20210216175946_templates_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175948_instances_jira_active.yml b/config/metrics/counts_all/20210216175948_instances_jira_active.yml index 7728019b87a..6d7cdae01d1 100644 --- a/config/metrics/counts_all/20210216175948_instances_jira_active.yml +++ b/config/metrics/counts_all/20210216175948_instances_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175950_projects_inheriting_jira_active.yml b/config/metrics/counts_all/20210216175950_projects_inheriting_jira_active.yml index 3222eb5fc1a..df0874cff7b 100644 --- a/config/metrics/counts_all/20210216175950_projects_inheriting_jira_active.yml +++ b/config/metrics/counts_all/20210216175950_projects_inheriting_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175952_groups_inheriting_jira_active.yml b/config/metrics/counts_all/20210216175952_groups_inheriting_jira_active.yml index 647c1274281..c4ec2c12954 100644 --- a/config/metrics/counts_all/20210216175952_groups_inheriting_jira_active.yml +++ b/config/metrics/counts_all/20210216175952_groups_inheriting_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175954_projects_mattermost_active.yml b/config/metrics/counts_all/20210216175954_projects_mattermost_active.yml index 7e3ee671d30..bf021f1b175 100644 --- a/config/metrics/counts_all/20210216175954_projects_mattermost_active.yml +++ b/config/metrics/counts_all/20210216175954_projects_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175956_groups_mattermost_active.yml b/config/metrics/counts_all/20210216175956_groups_mattermost_active.yml index 360e2f46566..70756d6ae02 100644 --- a/config/metrics/counts_all/20210216175956_groups_mattermost_active.yml +++ b/config/metrics/counts_all/20210216175956_groups_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175957_templates_mattermost_active.yml b/config/metrics/counts_all/20210216175957_templates_mattermost_active.yml index 959fabec93d..460c5e808d8 100644 --- a/config/metrics/counts_all/20210216175957_templates_mattermost_active.yml +++ b/config/metrics/counts_all/20210216175957_templates_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216175959_instances_mattermost_active.yml b/config/metrics/counts_all/20210216175959_instances_mattermost_active.yml index 9a1b30ab056..fedc53d1944 100644 --- a/config/metrics/counts_all/20210216175959_instances_mattermost_active.yml +++ b/config/metrics/counts_all/20210216175959_instances_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180001_projects_inheriting_mattermost_active.yml b/config/metrics/counts_all/20210216180001_projects_inheriting_mattermost_active.yml index 246f5b8ec68..536586a5e62 100644 --- a/config/metrics/counts_all/20210216180001_projects_inheriting_mattermost_active.yml +++ b/config/metrics/counts_all/20210216180001_projects_inheriting_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180003_groups_inheriting_mattermost_active.yml b/config/metrics/counts_all/20210216180003_groups_inheriting_mattermost_active.yml index 333e6e9fa92..9ceaa7c4a1c 100644 --- a/config/metrics/counts_all/20210216180003_groups_inheriting_mattermost_active.yml +++ b/config/metrics/counts_all/20210216180003_groups_inheriting_mattermost_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180005_projects_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180005_projects_mattermost_slash_commands_active.yml index 2028173499a..8204da004d8 100644 --- a/config/metrics/counts_all/20210216180005_projects_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180005_projects_mattermost_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180006_groups_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180006_groups_mattermost_slash_commands_active.yml index dda7195ea64..80b38b68eff 100644 --- a/config/metrics/counts_all/20210216180006_groups_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180006_groups_mattermost_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180008_templates_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180008_templates_mattermost_slash_commands_active.yml index 6eac8da9b05..927710d918c 100644 --- a/config/metrics/counts_all/20210216180008_templates_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180008_templates_mattermost_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180010_instances_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180010_instances_mattermost_slash_commands_active.yml index f936fd4b1ad..6ad05101cbf 100644 --- a/config/metrics/counts_all/20210216180010_instances_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180010_instances_mattermost_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180012_projects_inheriting_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180012_projects_inheriting_mattermost_slash_commands_active.yml index efb912998ed..01e97fa6ec3 100644 --- a/config/metrics/counts_all/20210216180012_projects_inheriting_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180012_projects_inheriting_mattermost_slash_commands_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180014_groups_inheriting_mattermost_slash_commands_active.yml b/config/metrics/counts_all/20210216180014_groups_inheriting_mattermost_slash_commands_active.yml index 37f4b243e7b..ebedb6796b6 100644 --- a/config/metrics/counts_all/20210216180014_groups_inheriting_mattermost_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180014_groups_inheriting_mattermost_slash_commands_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180016_projects_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180016_projects_microsoft_teams_active.yml index a1e661b9ad5..9306aca0d2d 100644 --- a/config/metrics/counts_all/20210216180016_projects_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180016_projects_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180018_groups_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180018_groups_microsoft_teams_active.yml index 25c3cd36064..71b6ba02769 100644 --- a/config/metrics/counts_all/20210216180018_groups_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180018_groups_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180019_templates_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180019_templates_microsoft_teams_active.yml index ff1a23e1b5f..fb35802c2b7 100644 --- a/config/metrics/counts_all/20210216180019_templates_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180019_templates_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180021_instances_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180021_instances_microsoft_teams_active.yml index 22d89621a03..d58b7483f1f 100644 --- a/config/metrics/counts_all/20210216180021_instances_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180021_instances_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180023_projects_inheriting_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180023_projects_inheriting_microsoft_teams_active.yml index cd811488703..2135727416d 100644 --- a/config/metrics/counts_all/20210216180023_projects_inheriting_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180023_projects_inheriting_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180025_groups_inheriting_microsoft_teams_active.yml b/config/metrics/counts_all/20210216180025_groups_inheriting_microsoft_teams_active.yml index 89ef9460b5c..5e16c68d9d9 100644 --- a/config/metrics/counts_all/20210216180025_groups_inheriting_microsoft_teams_active.yml +++ b/config/metrics/counts_all/20210216180025_groups_inheriting_microsoft_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180027_projects_packagist_active.yml b/config/metrics/counts_all/20210216180027_projects_packagist_active.yml index 1f9456729cd..cff969cb8bb 100644 --- a/config/metrics/counts_all/20210216180027_projects_packagist_active.yml +++ b/config/metrics/counts_all/20210216180027_projects_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180029_groups_packagist_active.yml b/config/metrics/counts_all/20210216180029_groups_packagist_active.yml index 195c5718c1b..1f97e3104c8 100644 --- a/config/metrics/counts_all/20210216180029_groups_packagist_active.yml +++ b/config/metrics/counts_all/20210216180029_groups_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180030_templates_packagist_active.yml b/config/metrics/counts_all/20210216180030_templates_packagist_active.yml index 2def57be060..aa56cf08028 100644 --- a/config/metrics/counts_all/20210216180030_templates_packagist_active.yml +++ b/config/metrics/counts_all/20210216180030_templates_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180032_instances_packagist_active.yml b/config/metrics/counts_all/20210216180032_instances_packagist_active.yml index cf3eb904977..eb3492ae263 100644 --- a/config/metrics/counts_all/20210216180032_instances_packagist_active.yml +++ b/config/metrics/counts_all/20210216180032_instances_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180034_projects_inheriting_packagist_active.yml b/config/metrics/counts_all/20210216180034_projects_inheriting_packagist_active.yml index 7c338ceba6d..35b79aad0b7 100644 --- a/config/metrics/counts_all/20210216180034_projects_inheriting_packagist_active.yml +++ b/config/metrics/counts_all/20210216180034_projects_inheriting_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180036_groups_inheriting_packagist_active.yml b/config/metrics/counts_all/20210216180036_groups_inheriting_packagist_active.yml index 7f53c894fb6..6b182ca55e7 100644 --- a/config/metrics/counts_all/20210216180036_groups_inheriting_packagist_active.yml +++ b/config/metrics/counts_all/20210216180036_groups_inheriting_packagist_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180038_projects_pipelines_email_active.yml b/config/metrics/counts_all/20210216180038_projects_pipelines_email_active.yml index 0fa095a27de..61555020204 100644 --- a/config/metrics/counts_all/20210216180038_projects_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180038_projects_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180040_groups_pipelines_email_active.yml b/config/metrics/counts_all/20210216180040_groups_pipelines_email_active.yml index 9af7ca27931..035bcf7d1b2 100644 --- a/config/metrics/counts_all/20210216180040_groups_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180040_groups_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180041_templates_pipelines_email_active.yml b/config/metrics/counts_all/20210216180041_templates_pipelines_email_active.yml index 2139b3ae6d0..2d81cf582e9 100644 --- a/config/metrics/counts_all/20210216180041_templates_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180041_templates_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180043_instances_pipelines_email_active.yml b/config/metrics/counts_all/20210216180043_instances_pipelines_email_active.yml index 39a979e8504..8c93ccf8d3d 100644 --- a/config/metrics/counts_all/20210216180043_instances_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180043_instances_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180045_projects_inheriting_pipelines_email_active.yml b/config/metrics/counts_all/20210216180045_projects_inheriting_pipelines_email_active.yml index f6c136ae24f..68c59a66251 100644 --- a/config/metrics/counts_all/20210216180045_projects_inheriting_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180045_projects_inheriting_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180047_groups_inheriting_pipelines_email_active.yml b/config/metrics/counts_all/20210216180047_groups_inheriting_pipelines_email_active.yml index 2582f653433..c05c227723d 100644 --- a/config/metrics/counts_all/20210216180047_groups_inheriting_pipelines_email_active.yml +++ b/config/metrics/counts_all/20210216180047_groups_inheriting_pipelines_email_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180049_projects_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180049_projects_pivotaltracker_active.yml index 9be062f8de9..afa3609ae5b 100644 --- a/config/metrics/counts_all/20210216180049_projects_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180049_projects_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180051_groups_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180051_groups_pivotaltracker_active.yml index ba688786b5f..487b55d438e 100644 --- a/config/metrics/counts_all/20210216180051_groups_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180051_groups_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180052_templates_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180052_templates_pivotaltracker_active.yml index f2babdbcf1a..7c869361d05 100644 --- a/config/metrics/counts_all/20210216180052_templates_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180052_templates_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180054_instances_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180054_instances_pivotaltracker_active.yml index 49de98e6701..6334dcf7ea0 100644 --- a/config/metrics/counts_all/20210216180054_instances_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180054_instances_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180056_projects_inheriting_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180056_projects_inheriting_pivotaltracker_active.yml index 7f108a6a2c3..15d298ab409 100644 --- a/config/metrics/counts_all/20210216180056_projects_inheriting_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180056_projects_inheriting_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180058_groups_inheriting_pivotaltracker_active.yml b/config/metrics/counts_all/20210216180058_groups_inheriting_pivotaltracker_active.yml index 5abba518e8a..c201fc24426 100644 --- a/config/metrics/counts_all/20210216180058_groups_inheriting_pivotaltracker_active.yml +++ b/config/metrics/counts_all/20210216180058_groups_inheriting_pivotaltracker_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180100_projects_pushover_active.yml b/config/metrics/counts_all/20210216180100_projects_pushover_active.yml index 8ae09814aae..1e8a1a69a13 100644 --- a/config/metrics/counts_all/20210216180100_projects_pushover_active.yml +++ b/config/metrics/counts_all/20210216180100_projects_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180102_groups_pushover_active.yml b/config/metrics/counts_all/20210216180102_groups_pushover_active.yml index bfc825994e4..bf2d9691718 100644 --- a/config/metrics/counts_all/20210216180102_groups_pushover_active.yml +++ b/config/metrics/counts_all/20210216180102_groups_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180104_templates_pushover_active.yml b/config/metrics/counts_all/20210216180104_templates_pushover_active.yml index 63476b4e0cd..572b5da07d4 100644 --- a/config/metrics/counts_all/20210216180104_templates_pushover_active.yml +++ b/config/metrics/counts_all/20210216180104_templates_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180105_instances_pushover_active.yml b/config/metrics/counts_all/20210216180105_instances_pushover_active.yml index bc793094aa1..97f79e00bbb 100644 --- a/config/metrics/counts_all/20210216180105_instances_pushover_active.yml +++ b/config/metrics/counts_all/20210216180105_instances_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180107_projects_inheriting_pushover_active.yml b/config/metrics/counts_all/20210216180107_projects_inheriting_pushover_active.yml index 38d11261fba..78ee7710012 100644 --- a/config/metrics/counts_all/20210216180107_projects_inheriting_pushover_active.yml +++ b/config/metrics/counts_all/20210216180107_projects_inheriting_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180109_groups_inheriting_pushover_active.yml b/config/metrics/counts_all/20210216180109_groups_inheriting_pushover_active.yml index a69ef94d87a..bc303da80b2 100644 --- a/config/metrics/counts_all/20210216180109_groups_inheriting_pushover_active.yml +++ b/config/metrics/counts_all/20210216180109_groups_inheriting_pushover_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180111_projects_redmine_active.yml b/config/metrics/counts_all/20210216180111_projects_redmine_active.yml index eb36236fd06..6ce6e0e40a3 100644 --- a/config/metrics/counts_all/20210216180111_projects_redmine_active.yml +++ b/config/metrics/counts_all/20210216180111_projects_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180113_groups_redmine_active.yml b/config/metrics/counts_all/20210216180113_groups_redmine_active.yml index aa62c1f237c..c4890014899 100644 --- a/config/metrics/counts_all/20210216180113_groups_redmine_active.yml +++ b/config/metrics/counts_all/20210216180113_groups_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180115_templates_redmine_active.yml b/config/metrics/counts_all/20210216180115_templates_redmine_active.yml index 9f3705a2a48..a85417cbc2c 100644 --- a/config/metrics/counts_all/20210216180115_templates_redmine_active.yml +++ b/config/metrics/counts_all/20210216180115_templates_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180116_instances_redmine_active.yml b/config/metrics/counts_all/20210216180116_instances_redmine_active.yml index 7280f0f8204..9d9de8d5f76 100644 --- a/config/metrics/counts_all/20210216180116_instances_redmine_active.yml +++ b/config/metrics/counts_all/20210216180116_instances_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180118_projects_inheriting_redmine_active.yml b/config/metrics/counts_all/20210216180118_projects_inheriting_redmine_active.yml index fda80b11b8a..396e007dcad 100644 --- a/config/metrics/counts_all/20210216180118_projects_inheriting_redmine_active.yml +++ b/config/metrics/counts_all/20210216180118_projects_inheriting_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180120_groups_inheriting_redmine_active.yml b/config/metrics/counts_all/20210216180120_groups_inheriting_redmine_active.yml index 66417c10642..260b4059958 100644 --- a/config/metrics/counts_all/20210216180120_groups_inheriting_redmine_active.yml +++ b/config/metrics/counts_all/20210216180120_groups_inheriting_redmine_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180122_projects_slack_active.yml b/config/metrics/counts_all/20210216180122_projects_slack_active.yml index 9c62e852b44..781fabdea25 100644 --- a/config/metrics/counts_all/20210216180122_projects_slack_active.yml +++ b/config/metrics/counts_all/20210216180122_projects_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180124_groups_slack_active.yml b/config/metrics/counts_all/20210216180124_groups_slack_active.yml index c4cdd4c70b7..3d33c9c941c 100644 --- a/config/metrics/counts_all/20210216180124_groups_slack_active.yml +++ b/config/metrics/counts_all/20210216180124_groups_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180126_templates_slack_active.yml b/config/metrics/counts_all/20210216180126_templates_slack_active.yml index 8aca7c44ec2..dffa673cd47 100644 --- a/config/metrics/counts_all/20210216180126_templates_slack_active.yml +++ b/config/metrics/counts_all/20210216180126_templates_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180127_instances_slack_active.yml b/config/metrics/counts_all/20210216180127_instances_slack_active.yml index 6493a89712a..badd214e967 100644 --- a/config/metrics/counts_all/20210216180127_instances_slack_active.yml +++ b/config/metrics/counts_all/20210216180127_instances_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180129_projects_inheriting_slack_active.yml b/config/metrics/counts_all/20210216180129_projects_inheriting_slack_active.yml index 89856214e62..c2ffb561f59 100644 --- a/config/metrics/counts_all/20210216180129_projects_inheriting_slack_active.yml +++ b/config/metrics/counts_all/20210216180129_projects_inheriting_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180131_groups_inheriting_slack_active.yml b/config/metrics/counts_all/20210216180131_groups_inheriting_slack_active.yml index f2af9cc2bc3..98478a5141e 100644 --- a/config/metrics/counts_all/20210216180131_groups_inheriting_slack_active.yml +++ b/config/metrics/counts_all/20210216180131_groups_inheriting_slack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180133_projects_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180133_projects_slack_slash_commands_active.yml index 8d5ddd2da10..a3bb1984b6a 100644 --- a/config/metrics/counts_all/20210216180133_projects_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180133_projects_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180135_groups_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180135_groups_slack_slash_commands_active.yml index ed2e0a700b9..8a57b153de4 100644 --- a/config/metrics/counts_all/20210216180135_groups_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180135_groups_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180137_templates_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180137_templates_slack_slash_commands_active.yml index 8e26090955e..e044d6cf1dd 100644 --- a/config/metrics/counts_all/20210216180137_templates_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180137_templates_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180138_instances_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180138_instances_slack_slash_commands_active.yml index 63ff1e41173..05ef50c0704 100644 --- a/config/metrics/counts_all/20210216180138_instances_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180138_instances_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180140_projects_inheriting_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180140_projects_inheriting_slack_slash_commands_active.yml index f77fb730106..256e8460570 100644 --- a/config/metrics/counts_all/20210216180140_projects_inheriting_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180140_projects_inheriting_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180142_groups_inheriting_slack_slash_commands_active.yml b/config/metrics/counts_all/20210216180142_groups_inheriting_slack_slash_commands_active.yml index 12d80cc157c..514176e1d69 100644 --- a/config/metrics/counts_all/20210216180142_groups_inheriting_slack_slash_commands_active.yml +++ b/config/metrics/counts_all/20210216180142_groups_inheriting_slack_slash_commands_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180144_projects_teamcity_active.yml b/config/metrics/counts_all/20210216180144_projects_teamcity_active.yml index b333ed1bb53..f2646e8833f 100644 --- a/config/metrics/counts_all/20210216180144_projects_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180144_projects_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180146_groups_teamcity_active.yml b/config/metrics/counts_all/20210216180146_groups_teamcity_active.yml index eccb558f02f..38f02ab6471 100644 --- a/config/metrics/counts_all/20210216180146_groups_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180146_groups_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180148_templates_teamcity_active.yml b/config/metrics/counts_all/20210216180148_templates_teamcity_active.yml index e3864612aa3..b3a37ebc578 100644 --- a/config/metrics/counts_all/20210216180148_templates_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180148_templates_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180149_instances_teamcity_active.yml b/config/metrics/counts_all/20210216180149_instances_teamcity_active.yml index ad961cce922..e79ea145ec9 100644 --- a/config/metrics/counts_all/20210216180149_instances_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180149_instances_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180151_projects_inheriting_teamcity_active.yml b/config/metrics/counts_all/20210216180151_projects_inheriting_teamcity_active.yml index be93bc02ba4..189211686a7 100644 --- a/config/metrics/counts_all/20210216180151_projects_inheriting_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180151_projects_inheriting_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180153_groups_inheriting_teamcity_active.yml b/config/metrics/counts_all/20210216180153_groups_inheriting_teamcity_active.yml index 329154f48d0..b99e26f4394 100644 --- a/config/metrics/counts_all/20210216180153_groups_inheriting_teamcity_active.yml +++ b/config/metrics/counts_all/20210216180153_groups_inheriting_teamcity_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180155_projects_unify_circuit_active.yml b/config/metrics/counts_all/20210216180155_projects_unify_circuit_active.yml index 32296e20f19..f6e854b241d 100644 --- a/config/metrics/counts_all/20210216180155_projects_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180155_projects_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180157_groups_unify_circuit_active.yml b/config/metrics/counts_all/20210216180157_groups_unify_circuit_active.yml index 81f3a325783..278260d1aaa 100644 --- a/config/metrics/counts_all/20210216180157_groups_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180157_groups_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180159_templates_unify_circuit_active.yml b/config/metrics/counts_all/20210216180159_templates_unify_circuit_active.yml index e47586a4adb..39facfb237e 100644 --- a/config/metrics/counts_all/20210216180159_templates_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180159_templates_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180201_instances_unify_circuit_active.yml b/config/metrics/counts_all/20210216180201_instances_unify_circuit_active.yml index 7475cd17c65..89e36459000 100644 --- a/config/metrics/counts_all/20210216180201_instances_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180201_instances_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180203_projects_inheriting_unify_circuit_active.yml b/config/metrics/counts_all/20210216180203_projects_inheriting_unify_circuit_active.yml index fce93504c10..d053ad5183e 100644 --- a/config/metrics/counts_all/20210216180203_projects_inheriting_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180203_projects_inheriting_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180204_groups_inheriting_unify_circuit_active.yml b/config/metrics/counts_all/20210216180204_groups_inheriting_unify_circuit_active.yml index 4ee6902f7e3..f7bc5ab4a9d 100644 --- a/config/metrics/counts_all/20210216180204_groups_inheriting_unify_circuit_active.yml +++ b/config/metrics/counts_all/20210216180204_groups_inheriting_unify_circuit_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180206_projects_webex_teams_active.yml b/config/metrics/counts_all/20210216180206_projects_webex_teams_active.yml index 29056da213a..95f4efbb24b 100644 --- a/config/metrics/counts_all/20210216180206_projects_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180206_projects_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180208_groups_webex_teams_active.yml b/config/metrics/counts_all/20210216180208_groups_webex_teams_active.yml index 187ae3d6322..aa1ad25479b 100644 --- a/config/metrics/counts_all/20210216180208_groups_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180208_groups_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180210_templates_webex_teams_active.yml b/config/metrics/counts_all/20210216180210_templates_webex_teams_active.yml index c43f7ad3ebf..185b538a228 100644 --- a/config/metrics/counts_all/20210216180210_templates_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180210_templates_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180212_instances_webex_teams_active.yml b/config/metrics/counts_all/20210216180212_instances_webex_teams_active.yml index bfcf88b111a..20bdf4f0616 100644 --- a/config/metrics/counts_all/20210216180212_instances_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180212_instances_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180214_projects_inheriting_webex_teams_active.yml b/config/metrics/counts_all/20210216180214_projects_inheriting_webex_teams_active.yml index 705aa3190c6..cb4e3a00dd7 100644 --- a/config/metrics/counts_all/20210216180214_projects_inheriting_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180214_projects_inheriting_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180215_groups_inheriting_webex_teams_active.yml b/config/metrics/counts_all/20210216180215_groups_inheriting_webex_teams_active.yml index c14055c5d8f..38623c9f105 100644 --- a/config/metrics/counts_all/20210216180215_groups_inheriting_webex_teams_active.yml +++ b/config/metrics/counts_all/20210216180215_groups_inheriting_webex_teams_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180217_projects_youtrack_active.yml b/config/metrics/counts_all/20210216180217_projects_youtrack_active.yml index 25e12984366..63addd163cd 100644 --- a/config/metrics/counts_all/20210216180217_projects_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180217_projects_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180219_groups_youtrack_active.yml b/config/metrics/counts_all/20210216180219_groups_youtrack_active.yml index 10b07bb5c02..3261458496b 100644 --- a/config/metrics/counts_all/20210216180219_groups_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180219_groups_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180221_templates_youtrack_active.yml b/config/metrics/counts_all/20210216180221_templates_youtrack_active.yml index fff16f6ece4..a6c11918ce2 100644 --- a/config/metrics/counts_all/20210216180221_templates_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180221_templates_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180223_instances_youtrack_active.yml b/config/metrics/counts_all/20210216180223_instances_youtrack_active.yml index 14b513317b5..83844709763 100644 --- a/config/metrics/counts_all/20210216180223_instances_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180223_instances_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180225_projects_inheriting_youtrack_active.yml b/config/metrics/counts_all/20210216180225_projects_inheriting_youtrack_active.yml index 8f446518109..cb0ff9b5cf2 100644 --- a/config/metrics/counts_all/20210216180225_projects_inheriting_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180225_projects_inheriting_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180226_groups_inheriting_youtrack_active.yml b/config/metrics/counts_all/20210216180226_groups_inheriting_youtrack_active.yml index 87139a187c1..1a49783e7b6 100644 --- a/config/metrics/counts_all/20210216180226_groups_inheriting_youtrack_active.yml +++ b/config/metrics/counts_all/20210216180226_groups_inheriting_youtrack_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180228_projects_jira_server_active.yml b/config/metrics/counts_all/20210216180228_projects_jira_server_active.yml index e0f5dd0e824..f53ca3bf5e4 100644 --- a/config/metrics/counts_all/20210216180228_projects_jira_server_active.yml +++ b/config/metrics/counts_all/20210216180228_projects_jira_server_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180230_projects_jira_cloud_active.yml b/config/metrics/counts_all/20210216180230_projects_jira_cloud_active.yml index f03a4adac32..7ad776bf919 100644 --- a/config/metrics/counts_all/20210216180230_projects_jira_cloud_active.yml +++ b/config/metrics/counts_all/20210216180230_projects_jira_cloud_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180232_projects_jira_dvcs_cloud_active.yml b/config/metrics/counts_all/20210216180232_projects_jira_dvcs_cloud_active.yml index 02e1eccafee..a94b2209a3b 100644 --- a/config/metrics/counts_all/20210216180232_projects_jira_dvcs_cloud_active.yml +++ b/config/metrics/counts_all/20210216180232_projects_jira_dvcs_cloud_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180234_projects_jira_dvcs_server_active.yml b/config/metrics/counts_all/20210216180234_projects_jira_dvcs_server_active.yml index 5899537f778..2f6d7defbb9 100644 --- a/config/metrics/counts_all/20210216180234_projects_jira_dvcs_server_active.yml +++ b/config/metrics/counts_all/20210216180234_projects_jira_dvcs_server_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180239_personal_snippets.yml b/config/metrics/counts_all/20210216180239_personal_snippets.yml index a31a0919ec9..35467ce30c4 100644 --- a/config/metrics/counts_all/20210216180239_personal_snippets.yml +++ b/config/metrics/counts_all/20210216180239_personal_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180241_project_snippets.yml b/config/metrics/counts_all/20210216180241_project_snippets.yml index d5ff82c0ae9..61ed32e7de5 100644 --- a/config/metrics/counts_all/20210216180241_project_snippets.yml +++ b/config/metrics/counts_all/20210216180241_project_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180242_web_ide_commits.yml b/config/metrics/counts_all/20210216180242_web_ide_commits.yml index 2fde4424a60..618e09027b5 100644 --- a/config/metrics/counts_all/20210216180242_web_ide_commits.yml +++ b/config/metrics/counts_all/20210216180242_web_ide_commits.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180244_web_ide_views.yml b/config/metrics/counts_all/20210216180244_web_ide_views.yml index 1b9b7aaab7e..cac6e315d6d 100644 --- a/config/metrics/counts_all/20210216180244_web_ide_views.yml +++ b/config/metrics/counts_all/20210216180244_web_ide_views.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180246_web_ide_merge_requests.yml b/config/metrics/counts_all/20210216180246_web_ide_merge_requests.yml index f5cabb039b4..60281e0b57b 100644 --- a/config/metrics/counts_all/20210216180246_web_ide_merge_requests.yml +++ b/config/metrics/counts_all/20210216180246_web_ide_merge_requests.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180248_web_ide_previews.yml b/config/metrics/counts_all/20210216180248_web_ide_previews.yml index 17d85a7174b..249654a68fd 100644 --- a/config/metrics/counts_all/20210216180248_web_ide_previews.yml +++ b/config/metrics/counts_all/20210216180248_web_ide_previews.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180250_web_ide_terminals.yml b/config/metrics/counts_all/20210216180250_web_ide_terminals.yml index 425e3cd6410..d674e379091 100644 --- a/config/metrics/counts_all/20210216180250_web_ide_terminals.yml +++ b/config/metrics/counts_all/20210216180250_web_ide_terminals.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180252_web_ide_pipelines.yml b/config/metrics/counts_all/20210216180252_web_ide_pipelines.yml index f59cb5a8689..bd2e3a97c88 100644 --- a/config/metrics/counts_all/20210216180252_web_ide_pipelines.yml +++ b/config/metrics/counts_all/20210216180252_web_ide_pipelines.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180253_snippet_comment.yml b/config/metrics/counts_all/20210216180253_snippet_comment.yml index 8f657de5037..e28994afad8 100644 --- a/config/metrics/counts_all/20210216180253_snippet_comment.yml +++ b/config/metrics/counts_all/20210216180253_snippet_comment.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180255_snippet_create.yml b/config/metrics/counts_all/20210216180255_snippet_create.yml index 9c0e2d5cd44..5afc32bd5b1 100644 --- a/config/metrics/counts_all/20210216180255_snippet_create.yml +++ b/config/metrics/counts_all/20210216180255_snippet_create.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180257_snippet_update.yml b/config/metrics/counts_all/20210216180257_snippet_update.yml index bee3fb477a6..462daa9e4da 100644 --- a/config/metrics/counts_all/20210216180257_snippet_update.yml +++ b/config/metrics/counts_all/20210216180257_snippet_update.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180259_static_site_editor_views.yml b/config/metrics/counts_all/20210216180259_static_site_editor_views.yml index 37d87abf57c..35698258e53 100644 --- a/config/metrics/counts_all/20210216180259_static_site_editor_views.yml +++ b/config/metrics/counts_all/20210216180259_static_site_editor_views.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180301_static_site_editor_commits.yml b/config/metrics/counts_all/20210216180301_static_site_editor_commits.yml index 9dda088ef51..9f248e812f5 100644 --- a/config/metrics/counts_all/20210216180301_static_site_editor_commits.yml +++ b/config/metrics/counts_all/20210216180301_static_site_editor_commits.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180303_static_site_editor_merge_requests.yml b/config/metrics/counts_all/20210216180303_static_site_editor_merge_requests.yml index 3d9855fc624..056c718c5eb 100644 --- a/config/metrics/counts_all/20210216180303_static_site_editor_merge_requests.yml +++ b/config/metrics/counts_all/20210216180303_static_site_editor_merge_requests.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: static_site_editor value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180304_user_preferences_user_gitpod_enabled.yml b/config/metrics/counts_all/20210216180304_user_preferences_user_gitpod_enabled.yml index cff54148986..b24b8075439 100644 --- a/config/metrics/counts_all/20210216180304_user_preferences_user_gitpod_enabled.yml +++ b/config/metrics/counts_all/20210216180304_user_preferences_user_gitpod_enabled.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: web_ide value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180306_snippets.yml b/config/metrics/counts_all/20210216180306_snippets.yml index aa98cb23475..5945b8925aa 100644 --- a/config/metrics/counts_all/20210216180306_snippets.yml +++ b/config/metrics/counts_all/20210216180306_snippets.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180316_snippets.yml b/config/metrics/counts_all/20210216180316_snippets.yml index cd4324fd20e..2c6f32afcae 100644 --- a/config/metrics/counts_all/20210216180316_snippets.yml +++ b/config/metrics/counts_all/20210216180316_snippets.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::editor product_category: snippets value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180410_pool_repositories.yml b/config/metrics/counts_all/20210216180410_pool_repositories.yml index 071a5522ef3..71d2763685b 100644 --- a/config/metrics/counts_all/20210216180410_pool_repositories.yml +++ b/config/metrics/counts_all/20210216180410_pool_repositories.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::gitaly product_category: gitaly value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180413_all_searches.yml b/config/metrics/counts_all/20210216180413_all_searches.yml index ce425b0fe78..cf19868b47f 100644 --- a/config/metrics/counts_all/20210216180413_all_searches.yml +++ b/config/metrics/counts_all/20210216180413_all_searches.yml @@ -8,7 +8,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180414_navbar_searches.yml b/config/metrics/counts_all/20210216180414_navbar_searches.yml index 294fac727d6..118ce95550d 100644 --- a/config/metrics/counts_all/20210216180414_navbar_searches.yml +++ b/config/metrics/counts_all/20210216180414_navbar_searches.yml @@ -8,7 +8,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180416_i_search_total.yml b/config/metrics/counts_all/20210216180416_i_search_total.yml index 27ebfb38c47..6166ba87ab5 100644 --- a/config/metrics/counts_all/20210216180416_i_search_total.yml +++ b/config/metrics/counts_all/20210216180416_i_search_total.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::global search product_category: global_search value_type: number -status: data_available +status: active time_frame: all data_source: redis_hll distribution: diff --git a/config/metrics/counts_all/20210216180434_issues_created_from_gitlab_error_tracking_ui.yml b/config/metrics/counts_all/20210216180434_issues_created_from_gitlab_error_tracking_ui.yml index 25eec6cd18f..14c96ec488c 100644 --- a/config/metrics/counts_all/20210216180434_issues_created_from_gitlab_error_tracking_ui.yml +++ b/config/metrics/counts_all/20210216180434_issues_created_from_gitlab_error_tracking_ui.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: error_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180436_issues_with_associated_zoom_link.yml b/config/metrics/counts_all/20210216180436_issues_with_associated_zoom_link.yml index 8b1ce7afa41..dd5b6d74486 100644 --- a/config/metrics/counts_all/20210216180436_issues_with_associated_zoom_link.yml +++ b/config/metrics/counts_all/20210216180436_issues_with_associated_zoom_link.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180438_issues_using_zoom_quick_actions.yml b/config/metrics/counts_all/20210216180438_issues_using_zoom_quick_actions.yml index f3cd37a90c3..680d1931eb9 100644 --- a/config/metrics/counts_all/20210216180438_issues_using_zoom_quick_actions.yml +++ b/config/metrics/counts_all/20210216180438_issues_using_zoom_quick_actions.yml @@ -8,7 +8,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180440_issues_with_embedded_grafana_charts_approx.yml b/config/metrics/counts_all/20210216180440_issues_with_embedded_grafana_charts_approx.yml index 11915b55b58..7c4c973c370 100644 --- a/config/metrics/counts_all/20210216180440_issues_with_embedded_grafana_charts_approx.yml +++ b/config/metrics/counts_all/20210216180440_issues_with_embedded_grafana_charts_approx.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180441_issues_created_from_alerts.yml b/config/metrics/counts_all/20210216180441_issues_created_from_alerts.yml index 182884b6152..b1e1c4bc24b 100644 --- a/config/metrics/counts_all/20210216180441_issues_created_from_alerts.yml +++ b/config/metrics/counts_all/20210216180441_issues_created_from_alerts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180443_issues_created_gitlab_alerts.yml b/config/metrics/counts_all/20210216180443_issues_created_gitlab_alerts.yml index e028f6a625c..0f09d09a8ac 100644 --- a/config/metrics/counts_all/20210216180443_issues_created_gitlab_alerts.yml +++ b/config/metrics/counts_all/20210216180443_issues_created_gitlab_alerts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180445_issues_created_manually_from_alerts.yml b/config/metrics/counts_all/20210216180445_issues_created_manually_from_alerts.yml index 779f4e4b68c..d5f0cfbb02f 100644 --- a/config/metrics/counts_all/20210216180445_issues_created_manually_from_alerts.yml +++ b/config/metrics/counts_all/20210216180445_issues_created_manually_from_alerts.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180447_incident_issues.yml b/config/metrics/counts_all/20210216180447_incident_issues.yml index 2fcfc8049e3..b47ba495373 100644 --- a/config/metrics/counts_all/20210216180447_incident_issues.yml +++ b/config/metrics/counts_all/20210216180447_incident_issues.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180449_alert_bot_incident_issues.yml b/config/metrics/counts_all/20210216180449_alert_bot_incident_issues.yml index 087af80eabf..3f43709e753 100644 --- a/config/metrics/counts_all/20210216180449_alert_bot_incident_issues.yml +++ b/config/metrics/counts_all/20210216180449_alert_bot_incident_issues.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180451_incident_labeled_issues.yml b/config/metrics/counts_all/20210216180451_incident_labeled_issues.yml index 80405762443..cc38c8e75ad 100644 --- a/config/metrics/counts_all/20210216180451_incident_labeled_issues.yml +++ b/config/metrics/counts_all/20210216180451_incident_labeled_issues.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180453_projects_creating_incidents.yml b/config/metrics/counts_all/20210216180453_projects_creating_incidents.yml index f199df997d4..763ecb49e55 100644 --- a/config/metrics/counts_all/20210216180453_projects_creating_incidents.yml +++ b/config/metrics/counts_all/20210216180453_projects_creating_incidents.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180454_projects_with_error_tracking_enabled.yml b/config/metrics/counts_all/20210216180454_projects_with_error_tracking_enabled.yml index cfedcabdbd3..1d2d9bf518c 100644 --- a/config/metrics/counts_all/20210216180454_projects_with_error_tracking_enabled.yml +++ b/config/metrics/counts_all/20210216180454_projects_with_error_tracking_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: error_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180458_projects_with_alerts_created.yml b/config/metrics/counts_all/20210216180458_projects_with_alerts_created.yml index f725272551c..9b85ad8d146 100644 --- a/config/metrics/counts_all/20210216180458_projects_with_alerts_created.yml +++ b/config/metrics/counts_all/20210216180458_projects_with_alerts_created.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: alert_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180500_projects_with_enabled_alert_integrations.yml b/config/metrics/counts_all/20210216180500_projects_with_enabled_alert_integrations.yml index bf47d0e5840..44301e6a5bc 100644 --- a/config/metrics/counts_all/20210216180500_projects_with_enabled_alert_integrations.yml +++ b/config/metrics/counts_all/20210216180500_projects_with_enabled_alert_integrations.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180517_projects_with_error_tracking_enabled.yml b/config/metrics/counts_all/20210216180517_projects_with_error_tracking_enabled.yml index 6e6e1c19d45..fc8c5d59eea 100644 --- a/config/metrics/counts_all/20210216180517_projects_with_error_tracking_enabled.yml +++ b/config/metrics/counts_all/20210216180517_projects_with_error_tracking_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: error_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180518_projects_with_incidents.yml b/config/metrics/counts_all/20210216180518_projects_with_incidents.yml index d375aa0d49f..627328016e2 100644 --- a/config/metrics/counts_all/20210216180518_projects_with_incidents.yml +++ b/config/metrics/counts_all/20210216180518_projects_with_incidents.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180520_projects_with_alert_incidents.yml b/config/metrics/counts_all/20210216180520_projects_with_alert_incidents.yml index cd23a79f23c..64844280a58 100644 --- a/config/metrics/counts_all/20210216180520_projects_with_alert_incidents.yml +++ b/config/metrics/counts_all/20210216180520_projects_with_alert_incidents.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180628_projects_imported_from_github.yml b/config/metrics/counts_all/20210216180628_projects_imported_from_github.yml index 87b8fe61ea9..c8732efd549 100644 --- a/config/metrics/counts_all/20210216180628_projects_imported_from_github.yml +++ b/config/metrics/counts_all/20210216180628_projects_imported_from_github.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180630_projects_imported_from_github.yml b/config/metrics/counts_all/20210216180630_projects_imported_from_github.yml index d28483d96ba..360bb66dee8 100644 --- a/config/metrics/counts_all/20210216180630_projects_imported_from_github.yml +++ b/config/metrics/counts_all/20210216180630_projects_imported_from_github.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180632_unique_users_all_imports.yml b/config/metrics/counts_all/20210216180632_unique_users_all_imports.yml index 95f1acc6254..df9c9d99eb1 100644 --- a/config/metrics/counts_all/20210216180632_unique_users_all_imports.yml +++ b/config/metrics/counts_all/20210216180632_unique_users_all_imports.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180636_gitlab_v1.yml b/config/metrics/counts_all/20210216180636_gitlab_v1.yml index c20a53d7007..d390645eada 100644 --- a/config/metrics/counts_all/20210216180636_gitlab_v1.yml +++ b/config/metrics/counts_all/20210216180636_gitlab_v1.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180638_gitlab_project.yml b/config/metrics/counts_all/20210216180638_gitlab_project.yml index 7163012b9d2..9f31a887b87 100644 --- a/config/metrics/counts_all/20210216180638_gitlab_project.yml +++ b/config/metrics/counts_all/20210216180638_gitlab_project.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180639_gitlab.yml b/config/metrics/counts_all/20210216180639_gitlab.yml index e0852a13b37..a19b04ac6e1 100644 --- a/config/metrics/counts_all/20210216180639_gitlab.yml +++ b/config/metrics/counts_all/20210216180639_gitlab.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180641_github.yml b/config/metrics/counts_all/20210216180641_github.yml index e34d73c118e..a6ab0bd5b7f 100644 --- a/config/metrics/counts_all/20210216180641_github.yml +++ b/config/metrics/counts_all/20210216180641_github.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180643_bitbucket.yml b/config/metrics/counts_all/20210216180643_bitbucket.yml index cf4aebc8da8..9239f592c23 100644 --- a/config/metrics/counts_all/20210216180643_bitbucket.yml +++ b/config/metrics/counts_all/20210216180643_bitbucket.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180645_bitbucket_server.yml b/config/metrics/counts_all/20210216180645_bitbucket_server.yml index 906771490e8..bbeb3b2c7d3 100644 --- a/config/metrics/counts_all/20210216180645_bitbucket_server.yml +++ b/config/metrics/counts_all/20210216180645_bitbucket_server.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180647_gitea.yml b/config/metrics/counts_all/20210216180647_gitea.yml index d4260d42cf0..448663cda8b 100644 --- a/config/metrics/counts_all/20210216180647_gitea.yml +++ b/config/metrics/counts_all/20210216180647_gitea.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180649_git.yml b/config/metrics/counts_all/20210216180649_git.yml index 03b3f7f3481..3fee6391a56 100644 --- a/config/metrics/counts_all/20210216180649_git.yml +++ b/config/metrics/counts_all/20210216180649_git.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180650_manifest.yml b/config/metrics/counts_all/20210216180650_manifest.yml index 26429d863a3..af2a3567e74 100644 --- a/config/metrics/counts_all/20210216180650_manifest.yml +++ b/config/metrics/counts_all/20210216180650_manifest.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180652_gitlab_migration.yml b/config/metrics/counts_all/20210216180652_gitlab_migration.yml index d40fb3b2484..2652673fff7 100644 --- a/config/metrics/counts_all/20210216180652_gitlab_migration.yml +++ b/config/metrics/counts_all/20210216180652_gitlab_migration.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180654_jira.yml b/config/metrics/counts_all/20210216180654_jira.yml index bc5311ecdd4..890e4b46391 100644 --- a/config/metrics/counts_all/20210216180654_jira.yml +++ b/config/metrics/counts_all/20210216180654_jira.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180656_fogbugz.yml b/config/metrics/counts_all/20210216180656_fogbugz.yml index 9ab769a65fb..217a8d6013c 100644 --- a/config/metrics/counts_all/20210216180656_fogbugz.yml +++ b/config/metrics/counts_all/20210216180656_fogbugz.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180658_phabricator.yml b/config/metrics/counts_all/20210216180658_phabricator.yml index 79e9f388c61..becf44044df 100644 --- a/config/metrics/counts_all/20210216180658_phabricator.yml +++ b/config/metrics/counts_all/20210216180658_phabricator.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180700_csv.yml b/config/metrics/counts_all/20210216180700_csv.yml index 6b20096987b..78322ba56b2 100644 --- a/config/metrics/counts_all/20210216180700_csv.yml +++ b/config/metrics/counts_all/20210216180700_csv.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180702_group_import.yml b/config/metrics/counts_all/20210216180702_group_import.yml index 36949d44808..68042d4a4a3 100644 --- a/config/metrics/counts_all/20210216180702_group_import.yml +++ b/config/metrics/counts_all/20210216180702_group_import.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180703_gitlab_migration.yml b/config/metrics/counts_all/20210216180703_gitlab_migration.yml index ab4acf2a2be..b25e0d72ad8 100644 --- a/config/metrics/counts_all/20210216180703_gitlab_migration.yml +++ b/config/metrics/counts_all/20210216180703_gitlab_migration.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: importers value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180734_wiki_pages_create.yml b/config/metrics/counts_all/20210216180734_wiki_pages_create.yml index e21c5065e3f..e30c339d73c 100644 --- a/config/metrics/counts_all/20210216180734_wiki_pages_create.yml +++ b/config/metrics/counts_all/20210216180734_wiki_pages_create.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: wiki value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180736_wiki_pages_update.yml b/config/metrics/counts_all/20210216180736_wiki_pages_update.yml index 138c849da61..de168835e07 100644 --- a/config/metrics/counts_all/20210216180736_wiki_pages_update.yml +++ b/config/metrics/counts_all/20210216180736_wiki_pages_update.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: wiki value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180738_wiki_pages_delete.yml b/config/metrics/counts_all/20210216180738_wiki_pages_delete.yml index 4f2071cfc56..d9175cd64e8 100644 --- a/config/metrics/counts_all/20210216180738_wiki_pages_delete.yml +++ b/config/metrics/counts_all/20210216180738_wiki_pages_delete.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: wiki value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180740_design_management_designs_create.yml b/config/metrics/counts_all/20210216180740_design_management_designs_create.yml index f9a258917c1..82575446cdc 100644 --- a/config/metrics/counts_all/20210216180740_design_management_designs_create.yml +++ b/config/metrics/counts_all/20210216180740_design_management_designs_create.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: design_management value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180741_design_management_designs_update.yml b/config/metrics/counts_all/20210216180741_design_management_designs_update.yml index 64275cda6f3..49894014da5 100644 --- a/config/metrics/counts_all/20210216180741_design_management_designs_update.yml +++ b/config/metrics/counts_all/20210216180741_design_management_designs_update.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: design_management value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180743_design_management_designs_delete.yml b/config/metrics/counts_all/20210216180743_design_management_designs_delete.yml index 830793d0279..173c9522c39 100644 --- a/config/metrics/counts_all/20210216180743_design_management_designs_delete.yml +++ b/config/metrics/counts_all/20210216180743_design_management_designs_delete.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::product planning product_category: design_management value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216180750_groups.yml b/config/metrics/counts_all/20210216180750_groups.yml index 40800b49221..67419cf9b82 100644 --- a/config/metrics/counts_all/20210216180750_groups.yml +++ b/config/metrics/counts_all/20210216180750_groups.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: subgroups value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180752_keys.yml b/config/metrics/counts_all/20210216180752_keys.yml index 4d6d5b4f0c7..d5c50688915 100644 --- a/config/metrics/counts_all/20210216180752_keys.yml +++ b/config/metrics/counts_all/20210216180752_keys.yml @@ -7,7 +7,7 @@ product_stage: managed product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180754_events.yml b/config/metrics/counts_all/20210216180754_events.yml index 19d9864ca31..1dfeadbbdfe 100644 --- a/config/metrics/counts_all/20210216180754_events.yml +++ b/config/metrics/counts_all/20210216180754_events.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::manage product_category: value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180756_groups.yml b/config/metrics/counts_all/20210216180756_groups.yml index fbd244b5078..24d0268165e 100644 --- a/config/metrics/counts_all/20210216180756_groups.yml +++ b/config/metrics/counts_all/20210216180756_groups.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: subgroups value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180758_users_created.yml b/config/metrics/counts_all/20210216180758_users_created.yml index f160f72f85b..3a815026d24 100644 --- a/config/metrics/counts_all/20210216180758_users_created.yml +++ b/config/metrics/counts_all/20210216180758_users_created.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180927_grafana_integrated_projects.yml b/config/metrics/counts_all/20210216180927_grafana_integrated_projects.yml index 0d0ed664373..0e2ac43de54 100644 --- a/config/metrics/counts_all/20210216180927_grafana_integrated_projects.yml +++ b/config/metrics/counts_all/20210216180927_grafana_integrated_projects.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180929_projects_with_tracing_enabled.yml b/config/metrics/counts_all/20210216180929_projects_with_tracing_enabled.yml index 1f3aa8837c7..87668ca0e4f 100644 --- a/config/metrics/counts_all/20210216180929_projects_with_tracing_enabled.yml +++ b/config/metrics/counts_all/20210216180929_projects_with_tracing_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: tracing value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180931_projects_prometheus_active.yml b/config/metrics/counts_all/20210216180931_projects_prometheus_active.yml index fa3bf37df57..c79a1ee24b9 100644 --- a/config/metrics/counts_all/20210216180931_projects_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180931_projects_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180933_groups_prometheus_active.yml b/config/metrics/counts_all/20210216180933_groups_prometheus_active.yml index 44c9b24af3a..3cc8dcb47c8 100644 --- a/config/metrics/counts_all/20210216180933_groups_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180933_groups_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180934_templates_prometheus_active.yml b/config/metrics/counts_all/20210216180934_templates_prometheus_active.yml index f9f5507799a..4bf8911c666 100644 --- a/config/metrics/counts_all/20210216180934_templates_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180934_templates_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180936_instances_prometheus_active.yml b/config/metrics/counts_all/20210216180936_instances_prometheus_active.yml index 74b93dc8f5e..7308e5c82b4 100644 --- a/config/metrics/counts_all/20210216180936_instances_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180936_instances_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180938_projects_inheriting_prometheus_active.yml b/config/metrics/counts_all/20210216180938_projects_inheriting_prometheus_active.yml index 580862e5d46..32b59d9948a 100644 --- a/config/metrics/counts_all/20210216180938_projects_inheriting_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180938_projects_inheriting_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180940_groups_inheriting_prometheus_active.yml b/config/metrics/counts_all/20210216180940_groups_inheriting_prometheus_active.yml index 1a313b73f07..0604fadab62 100644 --- a/config/metrics/counts_all/20210216180940_groups_inheriting_prometheus_active.yml +++ b/config/metrics/counts_all/20210216180940_groups_inheriting_prometheus_active.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180942_operations_dashboard_default_dashboard.yml b/config/metrics/counts_all/20210216180942_operations_dashboard_default_dashboard.yml index 1ff61371bc6..3d00a873ea3 100644 --- a/config/metrics/counts_all/20210216180942_operations_dashboard_default_dashboard.yml +++ b/config/metrics/counts_all/20210216180942_operations_dashboard_default_dashboard.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180944_operations_dashboard_users_with_projects_added.yml b/config/metrics/counts_all/20210216180944_operations_dashboard_users_with_projects_added.yml index 9f42c53880e..c510f56b392 100644 --- a/config/metrics/counts_all/20210216180944_operations_dashboard_users_with_projects_added.yml +++ b/config/metrics/counts_all/20210216180944_operations_dashboard_users_with_projects_added.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180945_clusters.yml b/config/metrics/counts_all/20210216180945_clusters.yml index 09658ec3f5c..ef1694a274f 100644 --- a/config/metrics/counts_all/20210216180945_clusters.yml +++ b/config/metrics/counts_all/20210216180945_clusters.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180947_clusters_applications_prometheus.yml b/config/metrics/counts_all/20210216180947_clusters_applications_prometheus.yml index 146e390bea5..a43dc103f9c 100644 --- a/config/metrics/counts_all/20210216180947_clusters_applications_prometheus.yml +++ b/config/metrics/counts_all/20210216180947_clusters_applications_prometheus.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180949_operations_dashboard_default_dashboard.yml b/config/metrics/counts_all/20210216180949_operations_dashboard_default_dashboard.yml index 31c1f060fd2..618f0049e50 100644 --- a/config/metrics/counts_all/20210216180949_operations_dashboard_default_dashboard.yml +++ b/config/metrics/counts_all/20210216180949_operations_dashboard_default_dashboard.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180951_projects_with_tracing_enabled.yml b/config/metrics/counts_all/20210216180951_projects_with_tracing_enabled.yml index 9a15c460bdc..3532dc60ff0 100644 --- a/config/metrics/counts_all/20210216180951_projects_with_tracing_enabled.yml +++ b/config/metrics/counts_all/20210216180951_projects_with_tracing_enabled.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: tracing value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216180953_operations_dashboard_users_with_projects_added.yml b/config/metrics/counts_all/20210216180953_operations_dashboard_users_with_projects_added.yml index 3f08f89b243..1f80f3a935d 100644 --- a/config/metrics/counts_all/20210216180953_operations_dashboard_users_with_projects_added.yml +++ b/config/metrics/counts_all/20210216180953_operations_dashboard_users_with_projects_added.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: metrics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181009_lfs_objects.yml b/config/metrics/counts_all/20210216181009_lfs_objects.yml index 27f7a5277bd..5b025ff4947 100644 --- a/config/metrics/counts_all/20210216181009_lfs_objects.yml +++ b/config/metrics/counts_all/20210216181009_lfs_objects.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::create product_category: value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181011_projects_with_packages.yml b/config/metrics/counts_all/20210216181011_projects_with_packages.yml index a88af256510..e26cae87f95 100644 --- a/config/metrics/counts_all/20210216181011_projects_with_packages.yml +++ b/config/metrics/counts_all/20210216181011_projects_with_packages.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181012_packages.yml b/config/metrics/counts_all/20210216181012_packages.yml index 82437eb0f7c..65cc8b20b0d 100644 --- a/config/metrics/counts_all/20210216181012_packages.yml +++ b/config/metrics/counts_all/20210216181012_packages.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181014_projects_with_expiration_policy_disabled.yml b/config/metrics/counts_all/20210216181014_projects_with_expiration_policy_disabled.yml index 42b62a8bd2f..0a6e00a0006 100644 --- a/config/metrics/counts_all/20210216181014_projects_with_expiration_policy_disabled.yml +++ b/config/metrics/counts_all/20210216181014_projects_with_expiration_policy_disabled.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181016_projects_with_expiration_policy_enabled.yml b/config/metrics/counts_all/20210216181016_projects_with_expiration_policy_enabled.yml index 029bde8e35d..c21b1eeb2cc 100644 --- a/config/metrics/counts_all/20210216181016_projects_with_expiration_policy_enabled.yml +++ b/config/metrics/counts_all/20210216181016_projects_with_expiration_policy_enabled.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181018_projects_with_expiration_policy_enabled_with_keep_n_set_to_1.yml b/config/metrics/counts_all/20210216181018_projects_with_expiration_policy_enabled_with_keep_n_set_to_1.yml index 4bd5870dff8..9b786709798 100644 --- a/config/metrics/counts_all/20210216181018_projects_with_expiration_policy_enabled_with_keep_n_set_to_1.yml +++ b/config/metrics/counts_all/20210216181018_projects_with_expiration_policy_enabled_with_keep_n_set_to_1.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181020_projects_with_expiration_policy_enabled_with_keep_n_set_to_5.yml b/config/metrics/counts_all/20210216181020_projects_with_expiration_policy_enabled_with_keep_n_set_to_5.yml index 072a7550048..92f242f0a1c 100644 --- a/config/metrics/counts_all/20210216181020_projects_with_expiration_policy_enabled_with_keep_n_set_to_5.yml +++ b/config/metrics/counts_all/20210216181020_projects_with_expiration_policy_enabled_with_keep_n_set_to_5.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181022_projects_with_expiration_policy_enabled_with_keep_n_set_to_10.yml b/config/metrics/counts_all/20210216181022_projects_with_expiration_policy_enabled_with_keep_n_set_to_10.yml index 7e1f4f600d4..0b2f360437e 100644 --- a/config/metrics/counts_all/20210216181022_projects_with_expiration_policy_enabled_with_keep_n_set_to_10.yml +++ b/config/metrics/counts_all/20210216181022_projects_with_expiration_policy_enabled_with_keep_n_set_to_10.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181024_projects_with_expiration_policy_enabled_with_keep_n_set_to_25.yml b/config/metrics/counts_all/20210216181024_projects_with_expiration_policy_enabled_with_keep_n_set_to_25.yml index a3c03f2b9cd..756ddb1f11b 100644 --- a/config/metrics/counts_all/20210216181024_projects_with_expiration_policy_enabled_with_keep_n_set_to_25.yml +++ b/config/metrics/counts_all/20210216181024_projects_with_expiration_policy_enabled_with_keep_n_set_to_25.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181025_projects_with_expiration_policy_enabled_with_keep_n_set_to_50.yml b/config/metrics/counts_all/20210216181025_projects_with_expiration_policy_enabled_with_keep_n_set_to_50.yml index 15a69f8612b..5b5b0d3734c 100644 --- a/config/metrics/counts_all/20210216181025_projects_with_expiration_policy_enabled_with_keep_n_set_to_50.yml +++ b/config/metrics/counts_all/20210216181025_projects_with_expiration_policy_enabled_with_keep_n_set_to_50.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181027_projects_with_expiration_policy_enabled_with_keep_n_set_to_100.yml b/config/metrics/counts_all/20210216181027_projects_with_expiration_policy_enabled_with_keep_n_set_to_100.yml index 2c1e0a1176d..8b4ebb9b020 100644 --- a/config/metrics/counts_all/20210216181027_projects_with_expiration_policy_enabled_with_keep_n_set_to_100.yml +++ b/config/metrics/counts_all/20210216181027_projects_with_expiration_policy_enabled_with_keep_n_set_to_100.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181029_projects_with_expiration_policy_enabled_with_cadence_set_to_1d.yml b/config/metrics/counts_all/20210216181029_projects_with_expiration_policy_enabled_with_cadence_set_to_1d.yml index e2c41f2a393..d1033a11ea5 100644 --- a/config/metrics/counts_all/20210216181029_projects_with_expiration_policy_enabled_with_cadence_set_to_1d.yml +++ b/config/metrics/counts_all/20210216181029_projects_with_expiration_policy_enabled_with_cadence_set_to_1d.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181031_projects_with_expiration_policy_enabled_with_cadence_set_to_7d.yml b/config/metrics/counts_all/20210216181031_projects_with_expiration_policy_enabled_with_cadence_set_to_7d.yml index bf6aa975301..9e8db324e41 100644 --- a/config/metrics/counts_all/20210216181031_projects_with_expiration_policy_enabled_with_cadence_set_to_7d.yml +++ b/config/metrics/counts_all/20210216181031_projects_with_expiration_policy_enabled_with_cadence_set_to_7d.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181033_projects_with_expiration_policy_enabled_with_cadence_set_to_14d.yml b/config/metrics/counts_all/20210216181033_projects_with_expiration_policy_enabled_with_cadence_set_to_14d.yml index 29aa7d65c5d..19360edf23f 100644 --- a/config/metrics/counts_all/20210216181033_projects_with_expiration_policy_enabled_with_cadence_set_to_14d.yml +++ b/config/metrics/counts_all/20210216181033_projects_with_expiration_policy_enabled_with_cadence_set_to_14d.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181035_projects_with_expiration_policy_enabled_with_cadence_set_to_1month.yml b/config/metrics/counts_all/20210216181035_projects_with_expiration_policy_enabled_with_cadence_set_to_1month.yml index e40b0414d1a..946330fb339 100644 --- a/config/metrics/counts_all/20210216181035_projects_with_expiration_policy_enabled_with_cadence_set_to_1month.yml +++ b/config/metrics/counts_all/20210216181035_projects_with_expiration_policy_enabled_with_cadence_set_to_1month.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181037_projects_with_expiration_policy_enabled_with_cadence_set_to_3month.yml b/config/metrics/counts_all/20210216181037_projects_with_expiration_policy_enabled_with_cadence_set_to_3month.yml index d6d3c3aad89..c24f474379a 100644 --- a/config/metrics/counts_all/20210216181037_projects_with_expiration_policy_enabled_with_cadence_set_to_3month.yml +++ b/config/metrics/counts_all/20210216181037_projects_with_expiration_policy_enabled_with_cadence_set_to_3month.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181038_projects_with_expiration_policy_enabled_with_older_than_set_to_7d.yml b/config/metrics/counts_all/20210216181038_projects_with_expiration_policy_enabled_with_older_than_set_to_7d.yml index 409279f2b4d..76f20bc31b6 100644 --- a/config/metrics/counts_all/20210216181038_projects_with_expiration_policy_enabled_with_older_than_set_to_7d.yml +++ b/config/metrics/counts_all/20210216181038_projects_with_expiration_policy_enabled_with_older_than_set_to_7d.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181040_projects_with_expiration_policy_enabled_with_older_than_set_to_14d.yml b/config/metrics/counts_all/20210216181040_projects_with_expiration_policy_enabled_with_older_than_set_to_14d.yml index ee2bbbfad89..0f60e003840 100644 --- a/config/metrics/counts_all/20210216181040_projects_with_expiration_policy_enabled_with_older_than_set_to_14d.yml +++ b/config/metrics/counts_all/20210216181040_projects_with_expiration_policy_enabled_with_older_than_set_to_14d.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181042_projects_with_expiration_policy_enabled_with_older_than_set_to_30d.yml b/config/metrics/counts_all/20210216181042_projects_with_expiration_policy_enabled_with_older_than_set_to_30d.yml index f9b21e5b25f..90d034f8294 100644 --- a/config/metrics/counts_all/20210216181042_projects_with_expiration_policy_enabled_with_older_than_set_to_30d.yml +++ b/config/metrics/counts_all/20210216181042_projects_with_expiration_policy_enabled_with_older_than_set_to_30d.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181044_projects_with_expiration_policy_enabled_with_older_than_set_to_90d.yml b/config/metrics/counts_all/20210216181044_projects_with_expiration_policy_enabled_with_older_than_set_to_90d.yml index ada20a988d0..6add782766a 100644 --- a/config/metrics/counts_all/20210216181044_projects_with_expiration_policy_enabled_with_older_than_set_to_90d.yml +++ b/config/metrics/counts_all/20210216181044_projects_with_expiration_policy_enabled_with_older_than_set_to_90d.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181046_projects_with_expiration_policy_enabled_with_keep_n_unset.yml b/config/metrics/counts_all/20210216181046_projects_with_expiration_policy_enabled_with_keep_n_unset.yml index 6c59c8508a9..67c18c86aee 100644 --- a/config/metrics/counts_all/20210216181046_projects_with_expiration_policy_enabled_with_keep_n_unset.yml +++ b/config/metrics/counts_all/20210216181046_projects_with_expiration_policy_enabled_with_keep_n_unset.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181048_projects_with_expiration_policy_enabled_with_older_than_unset.yml b/config/metrics/counts_all/20210216181048_projects_with_expiration_policy_enabled_with_older_than_unset.yml index fbe29f5280e..205f46dd8a2 100644 --- a/config/metrics/counts_all/20210216181048_projects_with_expiration_policy_enabled_with_older_than_unset.yml +++ b/config/metrics/counts_all/20210216181048_projects_with_expiration_policy_enabled_with_older_than_unset.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181051_vendor.yml b/config/metrics/counts_all/20210216181051_vendor.yml index 907b58c7865..82bf1d6393a 100644 --- a/config/metrics/counts_all/20210216181051_vendor.yml +++ b/config/metrics/counts_all/20210216181051_vendor.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181055_projects_with_packages.yml b/config/metrics/counts_all/20210216181055_projects_with_packages.yml index b7f237e0f93..cc2fa107b47 100644 --- a/config/metrics/counts_all/20210216181055_projects_with_packages.yml +++ b/config/metrics/counts_all/20210216181055_projects_with_packages.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216181102_issues.yml b/config/metrics/counts_all/20210216181102_issues.yml index 646e2cb2942..8a6fc6caa27 100644 --- a/config/metrics/counts_all/20210216181102_issues.yml +++ b/config/metrics/counts_all/20210216181102_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database instrumentation_class: CountIssuesMetric diff --git a/config/metrics/counts_all/20210216181104_label_lists.yml b/config/metrics/counts_all/20210216181104_label_lists.yml index 96d16c74128..fd58d1866bb 100644 --- a/config/metrics/counts_all/20210216181104_label_lists.yml +++ b/config/metrics/counts_all/20210216181104_label_lists.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: boards value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181108_milestones.yml b/config/metrics/counts_all/20210216181108_milestones.yml index 7218e12549b..aa7c8f90f80 100644 --- a/config/metrics/counts_all/20210216181108_milestones.yml +++ b/config/metrics/counts_all/20210216181108_milestones.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181109_uploads.yml b/config/metrics/counts_all/20210216181109_uploads.yml index b8955201e90..220009a2ff5 100644 --- a/config/metrics/counts_all/20210216181109_uploads.yml +++ b/config/metrics/counts_all/20210216181109_uploads.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181111_labels.yml b/config/metrics/counts_all/20210216181111_labels.yml index 48c44c6d62b..48980c7cba4 100644 --- a/config/metrics/counts_all/20210216181111_labels.yml +++ b/config/metrics/counts_all/20210216181111_labels.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181113_notes.yml b/config/metrics/counts_all/20210216181113_notes.yml index 53bb3858270..2d5d5c405cd 100644 --- a/config/metrics/counts_all/20210216181113_notes.yml +++ b/config/metrics/counts_all/20210216181113_notes.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181115_issues.yml b/config/metrics/counts_all/20210216181115_issues.yml index 22b045cfa73..f80ae26eea0 100644 --- a/config/metrics/counts_all/20210216181115_issues.yml +++ b/config/metrics/counts_all/20210216181115_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database instrumentation_class: CountUsersCreatingIssuesMetric diff --git a/config/metrics/counts_all/20210216181117_notes.yml b/config/metrics/counts_all/20210216181117_notes.yml index 236d283c4d4..e8cc952b05c 100644 --- a/config/metrics/counts_all/20210216181117_notes.yml +++ b/config/metrics/counts_all/20210216181117_notes.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181119_projects.yml b/config/metrics/counts_all/20210216181119_projects.yml index c448bcc1d79..e8bce2b79bf 100644 --- a/config/metrics/counts_all/20210216181119_projects.yml +++ b/config/metrics/counts_all/20210216181119_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: projects value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181121_todos.yml b/config/metrics/counts_all/20210216181121_todos.yml index 854540c7d2f..e20fe6f7b84 100644 --- a/config/metrics/counts_all/20210216181121_todos.yml +++ b/config/metrics/counts_all/20210216181121_todos.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181122_service_desk_enabled_projects.yml b/config/metrics/counts_all/20210216181122_service_desk_enabled_projects.yml index de008dd9350..f213454b553 100644 --- a/config/metrics/counts_all/20210216181122_service_desk_enabled_projects.yml +++ b/config/metrics/counts_all/20210216181122_service_desk_enabled_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: service_desk value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181124_service_desk_issues.yml b/config/metrics/counts_all/20210216181124_service_desk_issues.yml index cd7c6aa1bf7..42b1d591870 100644 --- a/config/metrics/counts_all/20210216181124_service_desk_issues.yml +++ b/config/metrics/counts_all/20210216181124_service_desk_issues.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: service_desk value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181126_projects_jira_active.yml b/config/metrics/counts_all/20210216181126_projects_jira_active.yml index aaf9421602c..63b13a17b67 100644 --- a/config/metrics/counts_all/20210216181126_projects_jira_active.yml +++ b/config/metrics/counts_all/20210216181126_projects_jira_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181128_projects_jira_dvcs_cloud_active.yml b/config/metrics/counts_all/20210216181128_projects_jira_dvcs_cloud_active.yml index 19587d85f82..7e42a3e57a4 100644 --- a/config/metrics/counts_all/20210216181128_projects_jira_dvcs_cloud_active.yml +++ b/config/metrics/counts_all/20210216181128_projects_jira_dvcs_cloud_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integration product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181130_projects_jira_dvcs_server_active.yml b/config/metrics/counts_all/20210216181130_projects_jira_dvcs_server_active.yml index 2e0bf2aadda..55d90e282c6 100644 --- a/config/metrics/counts_all/20210216181130_projects_jira_dvcs_server_active.yml +++ b/config/metrics/counts_all/20210216181130_projects_jira_dvcs_server_active.yml @@ -8,7 +8,7 @@ product_stage: ecosystem product_group: group::integration product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181134_epics.yml b/config/metrics/counts_all/20210216181134_epics.yml index 7c03b1b17d1..ef1bc2f2e03 100644 --- a/config/metrics/counts_all/20210216181134_epics.yml +++ b/config/metrics/counts_all/20210216181134_epics.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::plan product_category: epics value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181135_label_lists.yml b/config/metrics/counts_all/20210216181135_label_lists.yml index 31b417541ce..8bcabe8cd38 100644 --- a/config/metrics/counts_all/20210216181135_label_lists.yml +++ b/config/metrics/counts_all/20210216181135_label_lists.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: boards value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181249_feature_flags.yml b/config/metrics/counts_all/20210216181249_feature_flags.yml index a8265b49525..17feacedd54 100644 --- a/config/metrics/counts_all/20210216181249_feature_flags.yml +++ b/config/metrics/counts_all/20210216181249_feature_flags.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: feature_flags value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181252_boards.yml b/config/metrics/counts_all/20210216181252_boards.yml index 3771c37b1ed..683fa274e63 100644 --- a/config/metrics/counts_all/20210216181252_boards.yml +++ b/config/metrics/counts_all/20210216181252_boards.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: boards value_type: number -status: data_available +status: active time_frame: all data_source: database instrumentation_class: CountBoardsMetric diff --git a/config/metrics/counts_all/20210216181254_projects.yml b/config/metrics/counts_all/20210216181254_projects.yml index aac5fce1e88..00af8e92387 100644 --- a/config/metrics/counts_all/20210216181254_projects.yml +++ b/config/metrics/counts_all/20210216181254_projects.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: projects value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181256_todos.yml b/config/metrics/counts_all/20210216181256_todos.yml index 78f4c3aff81..72932b9ec84 100644 --- a/config/metrics/counts_all/20210216181256_todos.yml +++ b/config/metrics/counts_all/20210216181256_todos.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::project management product_category: issue_tracking value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181258_jira_imports_total_imported_count.yml b/config/metrics/counts_all/20210216181258_jira_imports_total_imported_count.yml index 38d4521317f..a4abbad0b7d 100644 --- a/config/metrics/counts_all/20210216181258_jira_imports_total_imported_count.yml +++ b/config/metrics/counts_all/20210216181258_jira_imports_total_imported_count.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: jira_importer value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181259_jira_imports_projects_count.yml b/config/metrics/counts_all/20210216181259_jira_imports_projects_count.yml index f5cd043095a..3722c7ccaa4 100644 --- a/config/metrics/counts_all/20210216181259_jira_imports_projects_count.yml +++ b/config/metrics/counts_all/20210216181259_jira_imports_projects_count.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: jira_importer value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181301_jira_imports_total_imported_issues_count.yml b/config/metrics/counts_all/20210216181301_jira_imports_total_imported_issues_count.yml index 53d32ac0074..0b68f3d5698 100644 --- a/config/metrics/counts_all/20210216181301_jira_imports_total_imported_issues_count.yml +++ b/config/metrics/counts_all/20210216181301_jira_imports_total_imported_issues_count.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: jira_importer value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181908_deploy_keys.yml b/config/metrics/counts_all/20210216181908_deploy_keys.yml index d600b41825b..40cf2ceb97a 100644 --- a/config/metrics/counts_all/20210216181908_deploy_keys.yml +++ b/config/metrics/counts_all/20210216181908_deploy_keys.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181911_successful_deployments.yml b/config/metrics/counts_all/20210216181911_successful_deployments.yml index 370fc698874..dcaf37a62f3 100644 --- a/config/metrics/counts_all/20210216181911_successful_deployments.yml +++ b/config/metrics/counts_all/20210216181911_successful_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181912_failed_deployments.yml b/config/metrics/counts_all/20210216181912_failed_deployments.yml index bc9a62e6763..0c3837e3f0b 100644 --- a/config/metrics/counts_all/20210216181912_failed_deployments.yml +++ b/config/metrics/counts_all/20210216181912_failed_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181914_environments.yml b/config/metrics/counts_all/20210216181914_environments.yml index ebb2eac2955..23bb7bf3dda 100644 --- a/config/metrics/counts_all/20210216181914_environments.yml +++ b/config/metrics/counts_all/20210216181914_environments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181916_in_review_folder.yml b/config/metrics/counts_all/20210216181916_in_review_folder.yml index 366143b2180..145f0a3ab02 100644 --- a/config/metrics/counts_all/20210216181916_in_review_folder.yml +++ b/config/metrics/counts_all/20210216181916_in_review_folder.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181918_releases.yml b/config/metrics/counts_all/20210216181918_releases.yml index 1de3aacd29a..edd72afffff 100644 --- a/config/metrics/counts_all/20210216181918_releases.yml +++ b/config/metrics/counts_all/20210216181918_releases.yml @@ -7,7 +7,7 @@ product_stage: releases product_group: group::release product_category: release_orchestration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181926_deployments.yml b/config/metrics/counts_all/20210216181926_deployments.yml index 9ada4d4a44f..cabf887d72d 100644 --- a/config/metrics/counts_all/20210216181926_deployments.yml +++ b/config/metrics/counts_all/20210216181926_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181928_failed_deployments.yml b/config/metrics/counts_all/20210216181928_failed_deployments.yml index e3b837457f7..d3208764244 100644 --- a/config/metrics/counts_all/20210216181928_failed_deployments.yml +++ b/config/metrics/counts_all/20210216181928_failed_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181930_releases.yml b/config/metrics/counts_all/20210216181930_releases.yml index 49f199765a9..7d3ba2eb218 100644 --- a/config/metrics/counts_all/20210216181930_releases.yml +++ b/config/metrics/counts_all/20210216181930_releases.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: release_orchestration value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181932_successful_deployments.yml b/config/metrics/counts_all/20210216181932_successful_deployments.yml index ec58041b930..e85b46027b4 100644 --- a/config/metrics/counts_all/20210216181932_successful_deployments.yml +++ b/config/metrics/counts_all/20210216181932_successful_deployments.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: continuous_delivery value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181946_pages_domains.yml b/config/metrics/counts_all/20210216181946_pages_domains.yml index f9739cf260b..cba92282125 100644 --- a/config/metrics/counts_all/20210216181946_pages_domains.yml +++ b/config/metrics/counts_all/20210216181946_pages_domains.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: pages value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216181949_clusters_applications_runner.yml b/config/metrics/counts_all/20210216181949_clusters_applications_runner.yml index 5c6db9b551e..96f16043e65 100644 --- a/config/metrics/counts_all/20210216181949_clusters_applications_runner.yml +++ b/config/metrics/counts_all/20210216181949_clusters_applications_runner.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: kubernetes_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182002_remote_mirrors.yml b/config/metrics/counts_all/20210216182002_remote_mirrors.yml index 842f4128bc3..2730750ee5a 100644 --- a/config/metrics/counts_all/20210216182002_remote_mirrors.yml +++ b/config/metrics/counts_all/20210216182002_remote_mirrors.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182004_commit_comment.yml b/config/metrics/counts_all/20210216182004_commit_comment.yml index 7a268d94424..4e2d402e9e1 100644 --- a/config/metrics/counts_all/20210216182004_commit_comment.yml +++ b/config/metrics/counts_all/20210216182004_commit_comment.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182006_source_code_pushes.yml b/config/metrics/counts_all/20210216182006_source_code_pushes.yml index 0bea42fdaa1..aa5c55ec3e7 100644 --- a/config/metrics/counts_all/20210216182006_source_code_pushes.yml +++ b/config/metrics/counts_all/20210216182006_source_code_pushes.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: redis instrumentation_class: RedisMetric diff --git a/config/metrics/counts_all/20210216182010_deploy_keys.yml b/config/metrics/counts_all/20210216182010_deploy_keys.yml index 1ff5fec9bde..cedafd4a576 100644 --- a/config/metrics/counts_all/20210216182010_deploy_keys.yml +++ b/config/metrics/counts_all/20210216182010_deploy_keys.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182012_keys.yml b/config/metrics/counts_all/20210216182012_keys.yml index 713e627c4fc..72d7f5b2b7b 100644 --- a/config/metrics/counts_all/20210216182012_keys.yml +++ b/config/metrics/counts_all/20210216182012_keys.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182014_projects_with_disable_overriding_approvers_per_merge_request.yml b/config/metrics/counts_all/20210216182014_projects_with_disable_overriding_approvers_per_merge_request.yml index acc29c0ca37..37709066148 100644 --- a/config/metrics/counts_all/20210216182014_projects_with_disable_overriding_approvers_per_merge_request.yml +++ b/config/metrics/counts_all/20210216182014_projects_with_disable_overriding_approvers_per_merge_request.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182015_projects_without_disable_overriding_approvers_per_merge_request.yml b/config/metrics/counts_all/20210216182015_projects_without_disable_overriding_approvers_per_merge_request.yml index e052e906c5f..6613f87aafd 100644 --- a/config/metrics/counts_all/20210216182015_projects_without_disable_overriding_approvers_per_merge_request.yml +++ b/config/metrics/counts_all/20210216182015_projects_without_disable_overriding_approvers_per_merge_request.yml @@ -8,7 +8,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182017_remote_mirrors.yml b/config/metrics/counts_all/20210216182017_remote_mirrors.yml index 9f7f7658959..9930c937aee 100644 --- a/config/metrics/counts_all/20210216182017_remote_mirrors.yml +++ b/config/metrics/counts_all/20210216182017_remote_mirrors.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182112_sast_jobs.yml b/config/metrics/counts_all/20210216182112_sast_jobs.yml index a8218aca536..1012910675b 100644 --- a/config/metrics/counts_all/20210216182112_sast_jobs.yml +++ b/config/metrics/counts_all/20210216182112_sast_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: static_application_security_testing value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182114_secret_detection_jobs.yml b/config/metrics/counts_all/20210216182114_secret_detection_jobs.yml index 8dd570bee3e..8a3d1ef15f3 100644 --- a/config/metrics/counts_all/20210216182114_secret_detection_jobs.yml +++ b/config/metrics/counts_all/20210216182114_secret_detection_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: secret_detection value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182116_user_sast_jobs.yml b/config/metrics/counts_all/20210216182116_user_sast_jobs.yml index 6cf41a2199d..b4822d0d89b 100644 --- a/config/metrics/counts_all/20210216182116_user_sast_jobs.yml +++ b/config/metrics/counts_all/20210216182116_user_sast_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: static_application_security_testing value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182118_user_secret_detection_jobs.yml b/config/metrics/counts_all/20210216182118_user_secret_detection_jobs.yml index 21d2857cbdd..6dde13f823b 100644 --- a/config/metrics/counts_all/20210216182118_user_secret_detection_jobs.yml +++ b/config/metrics/counts_all/20210216182118_user_secret_detection_jobs.yml @@ -7,7 +7,7 @@ product_stage: secure product_group: group::static analysis product_category: secret_detection value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182454_protected_branches_except_default.yml b/config/metrics/counts_all/20210216182454_protected_branches_except_default.yml index 977acda773c..f1f1e877a83 100644 --- a/config/metrics/counts_all/20210216182454_protected_branches_except_default.yml +++ b/config/metrics/counts_all/20210216182454_protected_branches_except_default.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::source code product_category: source_code_management value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182547_projects_datadog_active.yml b/config/metrics/counts_all/20210216182547_projects_datadog_active.yml index 471cc1bdfc9..a321b90faa5 100644 --- a/config/metrics/counts_all/20210216182547_projects_datadog_active.yml +++ b/config/metrics/counts_all/20210216182547_projects_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182549_groups_datadog_active.yml b/config/metrics/counts_all/20210216182549_groups_datadog_active.yml index fffabaa8fc2..0647618b825 100644 --- a/config/metrics/counts_all/20210216182549_groups_datadog_active.yml +++ b/config/metrics/counts_all/20210216182549_groups_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182551_templates_datadog_active.yml b/config/metrics/counts_all/20210216182551_templates_datadog_active.yml index cd756285214..d2df07b8d21 100644 --- a/config/metrics/counts_all/20210216182551_templates_datadog_active.yml +++ b/config/metrics/counts_all/20210216182551_templates_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182553_instances_datadog_active.yml b/config/metrics/counts_all/20210216182553_instances_datadog_active.yml index 13534dc72b3..0584c5c2c81 100644 --- a/config/metrics/counts_all/20210216182553_instances_datadog_active.yml +++ b/config/metrics/counts_all/20210216182553_instances_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182555_projects_inheriting_datadog_active.yml b/config/metrics/counts_all/20210216182555_projects_inheriting_datadog_active.yml index 1fb65208ac6..1ef23e06c10 100644 --- a/config/metrics/counts_all/20210216182555_projects_inheriting_datadog_active.yml +++ b/config/metrics/counts_all/20210216182555_projects_inheriting_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182557_groups_inheriting_datadog_active.yml b/config/metrics/counts_all/20210216182557_groups_inheriting_datadog_active.yml index 38e18c93635..aed458187a8 100644 --- a/config/metrics/counts_all/20210216182557_groups_inheriting_datadog_active.yml +++ b/config/metrics/counts_all/20210216182557_groups_inheriting_datadog_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182614_projects_ewm_active.yml b/config/metrics/counts_all/20210216182614_projects_ewm_active.yml index 8bd20ccfbb8..93d73cf233f 100644 --- a/config/metrics/counts_all/20210216182614_projects_ewm_active.yml +++ b/config/metrics/counts_all/20210216182614_projects_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182616_groups_ewm_active.yml b/config/metrics/counts_all/20210216182616_groups_ewm_active.yml index c81d0cb8b5d..441f6e05077 100644 --- a/config/metrics/counts_all/20210216182616_groups_ewm_active.yml +++ b/config/metrics/counts_all/20210216182616_groups_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182618_templates_ewm_active.yml b/config/metrics/counts_all/20210216182618_templates_ewm_active.yml index 96a53554b72..1ace369980b 100644 --- a/config/metrics/counts_all/20210216182618_templates_ewm_active.yml +++ b/config/metrics/counts_all/20210216182618_templates_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182620_instances_ewm_active.yml b/config/metrics/counts_all/20210216182620_instances_ewm_active.yml index 80585bae5b2..cb3821cbb24 100644 --- a/config/metrics/counts_all/20210216182620_instances_ewm_active.yml +++ b/config/metrics/counts_all/20210216182620_instances_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182622_projects_inheriting_ewm_active.yml b/config/metrics/counts_all/20210216182622_projects_inheriting_ewm_active.yml index 0fdbe3feb69..b5ac09a9313 100644 --- a/config/metrics/counts_all/20210216182622_projects_inheriting_ewm_active.yml +++ b/config/metrics/counts_all/20210216182622_projects_inheriting_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182623_groups_inheriting_ewm_active.yml b/config/metrics/counts_all/20210216182623_groups_inheriting_ewm_active.yml index 211a6d3d060..4cd950aeff5 100644 --- a/config/metrics/counts_all/20210216182623_groups_inheriting_ewm_active.yml +++ b/config/metrics/counts_all/20210216182623_groups_inheriting_ewm_active.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216182855_package_events_i_package_composer_delete_package.yml b/config/metrics/counts_all/20210216182855_package_events_i_package_composer_delete_package.yml index d697350af67..56909d1bb7b 100644 --- a/config/metrics/counts_all/20210216182855_package_events_i_package_composer_delete_package.yml +++ b/config/metrics/counts_all/20210216182855_package_events_i_package_composer_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182857_package_events_i_package_composer_pull_package.yml b/config/metrics/counts_all/20210216182857_package_events_i_package_composer_pull_package.yml index e6893db2717..9dd401d73a9 100644 --- a/config/metrics/counts_all/20210216182857_package_events_i_package_composer_pull_package.yml +++ b/config/metrics/counts_all/20210216182857_package_events_i_package_composer_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182859_package_events_i_package_composer_push_package.yml b/config/metrics/counts_all/20210216182859_package_events_i_package_composer_push_package.yml index be7486e6b83..336d177a739 100644 --- a/config/metrics/counts_all/20210216182859_package_events_i_package_composer_push_package.yml +++ b/config/metrics/counts_all/20210216182859_package_events_i_package_composer_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182901_package_events_i_package_conan_delete_package.yml b/config/metrics/counts_all/20210216182901_package_events_i_package_conan_delete_package.yml index 1011e8bc457..548b005e9be 100644 --- a/config/metrics/counts_all/20210216182901_package_events_i_package_conan_delete_package.yml +++ b/config/metrics/counts_all/20210216182901_package_events_i_package_conan_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182903_package_events_i_package_conan_pull_package.yml b/config/metrics/counts_all/20210216182903_package_events_i_package_conan_pull_package.yml index f621b86d6ac..65b5cd2a1a4 100644 --- a/config/metrics/counts_all/20210216182903_package_events_i_package_conan_pull_package.yml +++ b/config/metrics/counts_all/20210216182903_package_events_i_package_conan_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182905_package_events_i_package_conan_push_package.yml b/config/metrics/counts_all/20210216182905_package_events_i_package_conan_push_package.yml index 447d2444f02..8a8cc252b1e 100644 --- a/config/metrics/counts_all/20210216182905_package_events_i_package_conan_push_package.yml +++ b/config/metrics/counts_all/20210216182905_package_events_i_package_conan_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182913_package_events_i_package_debian_delete_package.yml b/config/metrics/counts_all/20210216182913_package_events_i_package_debian_delete_package.yml index 94f9164cd51..e842155ca69 100644 --- a/config/metrics/counts_all/20210216182913_package_events_i_package_debian_delete_package.yml +++ b/config/metrics/counts_all/20210216182913_package_events_i_package_debian_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182915_package_events_i_package_debian_pull_package.yml b/config/metrics/counts_all/20210216182915_package_events_i_package_debian_pull_package.yml index 7493a8a0cc8..be0e94f8beb 100644 --- a/config/metrics/counts_all/20210216182915_package_events_i_package_debian_pull_package.yml +++ b/config/metrics/counts_all/20210216182915_package_events_i_package_debian_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182919_package_events_i_package_delete_package.yml b/config/metrics/counts_all/20210216182919_package_events_i_package_delete_package.yml index c2282f4fbdd..988dc7118cb 100644 --- a/config/metrics/counts_all/20210216182919_package_events_i_package_delete_package.yml +++ b/config/metrics/counts_all/20210216182919_package_events_i_package_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182921_package_events_i_package_delete_package_by_deploy_token.yml b/config/metrics/counts_all/20210216182921_package_events_i_package_delete_package_by_deploy_token.yml index a4ec25a6355..725df820fde 100644 --- a/config/metrics/counts_all/20210216182921_package_events_i_package_delete_package_by_deploy_token.yml +++ b/config/metrics/counts_all/20210216182921_package_events_i_package_delete_package_by_deploy_token.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182923_package_events_i_package_delete_package_by_guest.yml b/config/metrics/counts_all/20210216182923_package_events_i_package_delete_package_by_guest.yml index 2abb34e428e..ea88cab3192 100644 --- a/config/metrics/counts_all/20210216182923_package_events_i_package_delete_package_by_guest.yml +++ b/config/metrics/counts_all/20210216182923_package_events_i_package_delete_package_by_guest.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182925_package_events_i_package_delete_package_by_user.yml b/config/metrics/counts_all/20210216182925_package_events_i_package_delete_package_by_user.yml index acfac98b954..a87126920ce 100644 --- a/config/metrics/counts_all/20210216182925_package_events_i_package_delete_package_by_user.yml +++ b/config/metrics/counts_all/20210216182925_package_events_i_package_delete_package_by_user.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182927_package_events_i_package_generic_delete_package.yml b/config/metrics/counts_all/20210216182927_package_events_i_package_generic_delete_package.yml index 91801bc3065..c8b2f9d61ef 100644 --- a/config/metrics/counts_all/20210216182927_package_events_i_package_generic_delete_package.yml +++ b/config/metrics/counts_all/20210216182927_package_events_i_package_generic_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182929_package_events_i_package_generic_pull_package.yml b/config/metrics/counts_all/20210216182929_package_events_i_package_generic_pull_package.yml index 8da5f9d078c..af84d46955a 100644 --- a/config/metrics/counts_all/20210216182929_package_events_i_package_generic_pull_package.yml +++ b/config/metrics/counts_all/20210216182929_package_events_i_package_generic_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182931_package_events_i_package_generic_push_package.yml b/config/metrics/counts_all/20210216182931_package_events_i_package_generic_push_package.yml index 0f0f78db69c..55d368c2f6b 100644 --- a/config/metrics/counts_all/20210216182931_package_events_i_package_generic_push_package.yml +++ b/config/metrics/counts_all/20210216182931_package_events_i_package_generic_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182933_package_events_i_package_golang_delete_package.yml b/config/metrics/counts_all/20210216182933_package_events_i_package_golang_delete_package.yml index e1f965a829b..14d8fc53a7e 100644 --- a/config/metrics/counts_all/20210216182933_package_events_i_package_golang_delete_package.yml +++ b/config/metrics/counts_all/20210216182933_package_events_i_package_golang_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182934_package_events_i_package_golang_pull_package.yml b/config/metrics/counts_all/20210216182934_package_events_i_package_golang_pull_package.yml index 205dea88f01..65e38c0eb8e 100644 --- a/config/metrics/counts_all/20210216182934_package_events_i_package_golang_pull_package.yml +++ b/config/metrics/counts_all/20210216182934_package_events_i_package_golang_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182936_package_events_i_package_golang_push_package.yml b/config/metrics/counts_all/20210216182936_package_events_i_package_golang_push_package.yml index c87529f9614..3b65801378b 100644 --- a/config/metrics/counts_all/20210216182936_package_events_i_package_golang_push_package.yml +++ b/config/metrics/counts_all/20210216182936_package_events_i_package_golang_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182938_package_events_i_package_maven_delete_package.yml b/config/metrics/counts_all/20210216182938_package_events_i_package_maven_delete_package.yml index d93643d4950..7505efb4e47 100644 --- a/config/metrics/counts_all/20210216182938_package_events_i_package_maven_delete_package.yml +++ b/config/metrics/counts_all/20210216182938_package_events_i_package_maven_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182940_package_events_i_package_maven_pull_package.yml b/config/metrics/counts_all/20210216182940_package_events_i_package_maven_pull_package.yml index 0fbf04f1f5b..dc5211f9524 100644 --- a/config/metrics/counts_all/20210216182940_package_events_i_package_maven_pull_package.yml +++ b/config/metrics/counts_all/20210216182940_package_events_i_package_maven_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182942_package_events_i_package_maven_push_package.yml b/config/metrics/counts_all/20210216182942_package_events_i_package_maven_push_package.yml index 5f51a7a60a2..0facf7697a8 100644 --- a/config/metrics/counts_all/20210216182942_package_events_i_package_maven_push_package.yml +++ b/config/metrics/counts_all/20210216182942_package_events_i_package_maven_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182944_package_events_i_package_npm_delete_package.yml b/config/metrics/counts_all/20210216182944_package_events_i_package_npm_delete_package.yml index cc1c9021d55..dade0515709 100644 --- a/config/metrics/counts_all/20210216182944_package_events_i_package_npm_delete_package.yml +++ b/config/metrics/counts_all/20210216182944_package_events_i_package_npm_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182946_package_events_i_package_npm_pull_package.yml b/config/metrics/counts_all/20210216182946_package_events_i_package_npm_pull_package.yml index 2c4deaf31ce..607db7969cf 100644 --- a/config/metrics/counts_all/20210216182946_package_events_i_package_npm_pull_package.yml +++ b/config/metrics/counts_all/20210216182946_package_events_i_package_npm_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182948_package_events_i_package_npm_push_package.yml b/config/metrics/counts_all/20210216182948_package_events_i_package_npm_push_package.yml index a6671834a79..2aa9a9ac676 100644 --- a/config/metrics/counts_all/20210216182948_package_events_i_package_npm_push_package.yml +++ b/config/metrics/counts_all/20210216182948_package_events_i_package_npm_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182950_package_events_i_package_nuget_delete_package.yml b/config/metrics/counts_all/20210216182950_package_events_i_package_nuget_delete_package.yml index 25e780687e1..78a5f920c0a 100644 --- a/config/metrics/counts_all/20210216182950_package_events_i_package_nuget_delete_package.yml +++ b/config/metrics/counts_all/20210216182950_package_events_i_package_nuget_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182952_package_events_i_package_nuget_pull_package.yml b/config/metrics/counts_all/20210216182952_package_events_i_package_nuget_pull_package.yml index e3f0afcb423..29471d9fc68 100644 --- a/config/metrics/counts_all/20210216182952_package_events_i_package_nuget_pull_package.yml +++ b/config/metrics/counts_all/20210216182952_package_events_i_package_nuget_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182954_package_events_i_package_nuget_push_package.yml b/config/metrics/counts_all/20210216182954_package_events_i_package_nuget_push_package.yml index bbd80491a97..2074fa19d5a 100644 --- a/config/metrics/counts_all/20210216182954_package_events_i_package_nuget_push_package.yml +++ b/config/metrics/counts_all/20210216182954_package_events_i_package_nuget_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182956_package_events_i_package_pull_package.yml b/config/metrics/counts_all/20210216182956_package_events_i_package_pull_package.yml index 6582f1593f1..0d09c626f2b 100644 --- a/config/metrics/counts_all/20210216182956_package_events_i_package_pull_package.yml +++ b/config/metrics/counts_all/20210216182956_package_events_i_package_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216182958_package_events_i_package_pull_package_by_deploy_token.yml b/config/metrics/counts_all/20210216182958_package_events_i_package_pull_package_by_deploy_token.yml index f3110464d2d..eeb5c150f0f 100644 --- a/config/metrics/counts_all/20210216182958_package_events_i_package_pull_package_by_deploy_token.yml +++ b/config/metrics/counts_all/20210216182958_package_events_i_package_pull_package_by_deploy_token.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183000_package_events_i_package_pull_package_by_guest.yml b/config/metrics/counts_all/20210216183000_package_events_i_package_pull_package_by_guest.yml index 7d80ff712be..63ec075c163 100644 --- a/config/metrics/counts_all/20210216183000_package_events_i_package_pull_package_by_guest.yml +++ b/config/metrics/counts_all/20210216183000_package_events_i_package_pull_package_by_guest.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183002_package_events_i_package_pull_package_by_user.yml b/config/metrics/counts_all/20210216183002_package_events_i_package_pull_package_by_user.yml index 647d9a872fa..ce0c3c455ff 100644 --- a/config/metrics/counts_all/20210216183002_package_events_i_package_pull_package_by_user.yml +++ b/config/metrics/counts_all/20210216183002_package_events_i_package_pull_package_by_user.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183004_package_events_i_package_push_package.yml b/config/metrics/counts_all/20210216183004_package_events_i_package_push_package.yml index b1a57fb1f17..845251f1aca 100644 --- a/config/metrics/counts_all/20210216183004_package_events_i_package_push_package.yml +++ b/config/metrics/counts_all/20210216183004_package_events_i_package_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183005_package_events_i_package_push_package_by_deploy_token.yml b/config/metrics/counts_all/20210216183005_package_events_i_package_push_package_by_deploy_token.yml index 2b47a836215..4484250f136 100644 --- a/config/metrics/counts_all/20210216183005_package_events_i_package_push_package_by_deploy_token.yml +++ b/config/metrics/counts_all/20210216183005_package_events_i_package_push_package_by_deploy_token.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183007_package_events_i_package_push_package_by_guest.yml b/config/metrics/counts_all/20210216183007_package_events_i_package_push_package_by_guest.yml index 3ae2bdbb2fa..a657e2f228e 100644 --- a/config/metrics/counts_all/20210216183007_package_events_i_package_push_package_by_guest.yml +++ b/config/metrics/counts_all/20210216183007_package_events_i_package_push_package_by_guest.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183009_package_events_i_package_push_package_by_user.yml b/config/metrics/counts_all/20210216183009_package_events_i_package_push_package_by_user.yml index a6b5c845b46..a3e0a65453d 100644 --- a/config/metrics/counts_all/20210216183009_package_events_i_package_push_package_by_user.yml +++ b/config/metrics/counts_all/20210216183009_package_events_i_package_push_package_by_user.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183011_package_events_i_package_pypi_delete_package.yml b/config/metrics/counts_all/20210216183011_package_events_i_package_pypi_delete_package.yml index 6ce565eb9de..2c5b6efe160 100644 --- a/config/metrics/counts_all/20210216183011_package_events_i_package_pypi_delete_package.yml +++ b/config/metrics/counts_all/20210216183011_package_events_i_package_pypi_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183013_package_events_i_package_pypi_pull_package.yml b/config/metrics/counts_all/20210216183013_package_events_i_package_pypi_pull_package.yml index edccdede86d..b659a207b00 100644 --- a/config/metrics/counts_all/20210216183013_package_events_i_package_pypi_pull_package.yml +++ b/config/metrics/counts_all/20210216183013_package_events_i_package_pypi_pull_package.yml @@ -8,7 +8,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183015_package_events_i_package_pypi_push_package.yml b/config/metrics/counts_all/20210216183015_package_events_i_package_pypi_push_package.yml index da9dc74cbf9..33b0819be0b 100644 --- a/config/metrics/counts_all/20210216183015_package_events_i_package_pypi_push_package.yml +++ b/config/metrics/counts_all/20210216183015_package_events_i_package_pypi_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: data_available +status: active time_frame: all data_source: redis distribution: diff --git a/config/metrics/counts_all/20210216183023_wiki_pages_view.yml b/config/metrics/counts_all/20210216183023_wiki_pages_view.yml index 86bcf8ab095..c4cc4bfcf9c 100644 --- a/config/metrics/counts_all/20210216183023_wiki_pages_view.yml +++ b/config/metrics/counts_all/20210216183023_wiki_pages_view.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: wiki value_type: number -status: data_available +status: active milestone: "13.3" introduced_by_url: "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/38784" time_frame: all diff --git a/config/metrics/counts_all/20210216183400_omniauth_providers.yml b/config/metrics/counts_all/20210216183400_omniauth_providers.yml index 860a4fecec1..3598db2ea5a 100644 --- a/config/metrics/counts_all/20210216183400_omniauth_providers.yml +++ b/config/metrics/counts_all/20210216183400_omniauth_providers.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216183402_two-factor.yml b/config/metrics/counts_all/20210216183402_two-factor.yml index 72f9872d237..7b396fc6c73 100644 --- a/config/metrics/counts_all/20210216183402_two-factor.yml +++ b/config/metrics/counts_all/20210216183402_two-factor.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216183404_two-factor-via-u2f-device.yml b/config/metrics/counts_all/20210216183404_two-factor-via-u2f-device.yml index 2a79190fafa..0206e7c017f 100644 --- a/config/metrics/counts_all/20210216183404_two-factor-via-u2f-device.yml +++ b/config/metrics/counts_all/20210216183404_two-factor-via-u2f-device.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216183406_two-factor-via-webauthn-device.yml b/config/metrics/counts_all/20210216183406_two-factor-via-webauthn-device.yml index 1b0ab9c53d9..79e4bd71c94 100644 --- a/config/metrics/counts_all/20210216183406_two-factor-via-webauthn-device.yml +++ b/config/metrics/counts_all/20210216183406_two-factor-via-webauthn-device.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216183408_standard.yml b/config/metrics/counts_all/20210216183408_standard.yml index 900a5c205ee..6c43a6cbc95 100644 --- a/config/metrics/counts_all/20210216183408_standard.yml +++ b/config/metrics/counts_all/20210216183408_standard.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210216183410_google_oauth2.yml b/config/metrics/counts_all/20210216183410_google_oauth2.yml index dbf5b6b1801..d75fcebed09 100644 --- a/config/metrics/counts_all/20210216183410_google_oauth2.yml +++ b/config/metrics/counts_all/20210216183410_google_oauth2.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: number -status: data_available +status: active time_frame: all data_source: database distribution: diff --git a/config/metrics/counts_all/20210303153000_package_events_i_package_rubygems_delete_package.yml b/config/metrics/counts_all/20210303153000_package_events_i_package_rubygems_delete_package.yml index de7af7b7e59..1ddfdd79f5c 100644 --- a/config/metrics/counts_all/20210303153000_package_events_i_package_rubygems_delete_package.yml +++ b/config/metrics/counts_all/20210303153000_package_events_i_package_rubygems_delete_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: all diff --git a/config/metrics/counts_all/20210303153002_package_events_i_package_rubygems_pull_package.yml b/config/metrics/counts_all/20210303153002_package_events_i_package_rubygems_pull_package.yml index c71c378c917..7fd10456636 100644 --- a/config/metrics/counts_all/20210303153002_package_events_i_package_rubygems_pull_package.yml +++ b/config/metrics/counts_all/20210303153002_package_events_i_package_rubygems_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 time_frame: all diff --git a/config/metrics/counts_all/20210303153004_package_events_i_package_rubygems_push_package.yml b/config/metrics/counts_all/20210303153004_package_events_i_package_rubygems_push_package.yml index cb0821d2d59..0ba6d527e3a 100644 --- a/config/metrics/counts_all/20210303153004_package_events_i_package_rubygems_push_package.yml +++ b/config/metrics/counts_all/20210303153004_package_events_i_package_rubygems_push_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: data_available +status: active time_frame: all milestone: '13.10' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/53480 diff --git a/config/metrics/counts_all/20210309165717_projects_with_enabled_alert_integrations_histogram.yml b/config/metrics/counts_all/20210309165717_projects_with_enabled_alert_integrations_histogram.yml index ad2f6bce59e..91235499c14 100644 --- a/config/metrics/counts_all/20210309165717_projects_with_enabled_alert_integrations_histogram.yml +++ b/config/metrics/counts_all/20210309165717_projects_with_enabled_alert_integrations_histogram.yml @@ -7,7 +7,7 @@ product_stage: monitor product_group: group::monitor product_category: incident_management value_type: object -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55782 time_frame: all diff --git a/config/metrics/counts_all/20210410012200_package_events_i_package_terraform_module_delete_package.yml b/config/metrics/counts_all/20210410012200_package_events_i_package_terraform_module_delete_package.yml index 3fb804b9a92..cca5b684905 100644 --- a/config/metrics/counts_all/20210410012200_package_events_i_package_terraform_module_delete_package.yml +++ b/config/metrics/counts_all/20210410012200_package_events_i_package_terraform_module_delete_package.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: all diff --git a/config/metrics/counts_all/20210410012202_package_events_i_package_terraform_module_pull_package.yml b/config/metrics/counts_all/20210410012202_package_events_i_package_terraform_module_pull_package.yml index bbd5c978794..860bfbe6884 100644 --- a/config/metrics/counts_all/20210410012202_package_events_i_package_terraform_module_pull_package.yml +++ b/config/metrics/counts_all/20210410012202_package_events_i_package_terraform_module_pull_package.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: all diff --git a/config/metrics/counts_all/20210410012204_package_events_i_package_terraform_module_push_package.yml b/config/metrics/counts_all/20210410012204_package_events_i_package_terraform_module_push_package.yml index fd2f969251f..89fcae57044 100644 --- a/config/metrics/counts_all/20210410012204_package_events_i_package_terraform_module_push_package.yml +++ b/config/metrics/counts_all/20210410012204_package_events_i_package_terraform_module_push_package.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: infrastructure_as_code value_type: number -status: data_available +status: active milestone: '13.11' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55018 time_frame: all diff --git a/config/metrics/counts_all/20210423005644_i_analytics_dev_ops_adoption.yml b/config/metrics/counts_all/20210423005644_i_analytics_dev_ops_adoption.yml index cc17f349723..b769b5d47f1 100644 --- a/config/metrics/counts_all/20210423005644_i_analytics_dev_ops_adoption.yml +++ b/config/metrics/counts_all/20210423005644_i_analytics_dev_ops_adoption.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active milestone: "13.11" time_frame: all data_source: redis_hll diff --git a/config/metrics/counts_all/20210428142406_users_viewing_analytics_group_devops_adoption.yml b/config/metrics/counts_all/20210428142406_users_viewing_analytics_group_devops_adoption.yml index e84b46e70e3..b8ae877b0be 100644 --- a/config/metrics/counts_all/20210428142406_users_viewing_analytics_group_devops_adoption.yml +++ b/config/metrics/counts_all/20210428142406_users_viewing_analytics_group_devops_adoption.yml @@ -8,7 +8,7 @@ product_stage: manage product_group: group::optimize product_category: value_type: number -status: data_available +status: active milestone: "13.12" time_frame: all data_source: redis_hll diff --git a/config/metrics/counts_all/20210502045402_ci_runners_instance_type_active.yml b/config/metrics/counts_all/20210502045402_ci_runners_instance_type_active.yml index 69fffdf6283..b23d63a3ff8 100644 --- a/config/metrics/counts_all/20210502045402_ci_runners_instance_type_active.yml +++ b/config/metrics/counts_all/20210502045402_ci_runners_instance_type_active.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502050341_ci_runners_group_type_active.yml b/config/metrics/counts_all/20210502050341_ci_runners_group_type_active.yml index 7edc7086c22..d09fd9e7578 100644 --- a/config/metrics/counts_all/20210502050341_ci_runners_group_type_active.yml +++ b/config/metrics/counts_all/20210502050341_ci_runners_group_type_active.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502050834_ci_runners_project_type_active.yml b/config/metrics/counts_all/20210502050834_ci_runners_project_type_active.yml index 66f0c6ad976..11b5626dc1e 100644 --- a/config/metrics/counts_all/20210502050834_ci_runners_project_type_active.yml +++ b/config/metrics/counts_all/20210502050834_ci_runners_project_type_active.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502050942_ci_runners_online.yml b/config/metrics/counts_all/20210502050942_ci_runners_online.yml index 7a2752ac152..d24d7f0125b 100644 --- a/config/metrics/counts_all/20210502050942_ci_runners_online.yml +++ b/config/metrics/counts_all/20210502050942_ci_runners_online.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502051651_ci_runners_instance_type_active_online.yml b/config/metrics/counts_all/20210502051651_ci_runners_instance_type_active_online.yml index e32f288e8c9..621590185a9 100644 --- a/config/metrics/counts_all/20210502051651_ci_runners_instance_type_active_online.yml +++ b/config/metrics/counts_all/20210502051651_ci_runners_instance_type_active_online.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502051922_ci_runners_group_type_active_online.yml b/config/metrics/counts_all/20210502051922_ci_runners_group_type_active_online.yml index 10e1eeb6ceb..82c639c72c6 100644 --- a/config/metrics/counts_all/20210502051922_ci_runners_group_type_active_online.yml +++ b/config/metrics/counts_all/20210502051922_ci_runners_group_type_active_online.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210502052036_ci_runners_project_type_active_online.yml b/config/metrics/counts_all/20210502052036_ci_runners_project_type_active_online.yml index f3628f18f60..f124d8d4ae5 100644 --- a/config/metrics/counts_all/20210502052036_ci_runners_project_type_active_online.yml +++ b/config/metrics/counts_all/20210502052036_ci_runners_project_type_active_online.yml @@ -8,7 +8,7 @@ product_stage: verify product_group: group::pipeline execution product_category: continuous_integration value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58197 time_frame: all diff --git a/config/metrics/counts_all/20210510201537_in_product_marketing_email_create_0_sent.yml b/config/metrics/counts_all/20210510201537_in_product_marketing_email_create_0_sent.yml index 2d5b7e3b7a0..1f505694535 100644 --- a/config/metrics/counts_all/20210510201537_in_product_marketing_email_create_0_sent.yml +++ b/config/metrics/counts_all/20210510201537_in_product_marketing_email_create_0_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510201919_in_product_marketing_email_create_0_cta_clicked.yml b/config/metrics/counts_all/20210510201919_in_product_marketing_email_create_0_cta_clicked.yml index 877f7119f3f..fb2bd8f59e0 100644 --- a/config/metrics/counts_all/20210510201919_in_product_marketing_email_create_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210510201919_in_product_marketing_email_create_0_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202148_in_product_marketing_email_create_1_sent.yml b/config/metrics/counts_all/20210510202148_in_product_marketing_email_create_1_sent.yml index 5d34d5b5803..13587d77e9a 100644 --- a/config/metrics/counts_all/20210510202148_in_product_marketing_email_create_1_sent.yml +++ b/config/metrics/counts_all/20210510202148_in_product_marketing_email_create_1_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202356_in_product_marketing_email_create_1_cta_clicked.yml b/config/metrics/counts_all/20210510202356_in_product_marketing_email_create_1_cta_clicked.yml index d57303b1241..e5635ba3d92 100644 --- a/config/metrics/counts_all/20210510202356_in_product_marketing_email_create_1_cta_clicked.yml +++ b/config/metrics/counts_all/20210510202356_in_product_marketing_email_create_1_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202604_in_product_marketing_email_create_2_sent.yml b/config/metrics/counts_all/20210510202604_in_product_marketing_email_create_2_sent.yml index 8d89567d015..10fb21997d3 100644 --- a/config/metrics/counts_all/20210510202604_in_product_marketing_email_create_2_sent.yml +++ b/config/metrics/counts_all/20210510202604_in_product_marketing_email_create_2_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202724_in_product_marketing_email_create_2_cta_clicked.yml b/config/metrics/counts_all/20210510202724_in_product_marketing_email_create_2_cta_clicked.yml index 047e6d4383b..21841bfe7ba 100644 --- a/config/metrics/counts_all/20210510202724_in_product_marketing_email_create_2_cta_clicked.yml +++ b/config/metrics/counts_all/20210510202724_in_product_marketing_email_create_2_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202807_in_product_marketing_email_verify_0_sent.yml b/config/metrics/counts_all/20210510202807_in_product_marketing_email_verify_0_sent.yml index 0dcefe7cc18..66d894a62a9 100644 --- a/config/metrics/counts_all/20210510202807_in_product_marketing_email_verify_0_sent.yml +++ b/config/metrics/counts_all/20210510202807_in_product_marketing_email_verify_0_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202943_in_product_marketing_email_verify_0_cta_clicked.yml b/config/metrics/counts_all/20210510202943_in_product_marketing_email_verify_0_cta_clicked.yml index f9ed322c94a..39d02b343e5 100644 --- a/config/metrics/counts_all/20210510202943_in_product_marketing_email_verify_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210510202943_in_product_marketing_email_verify_0_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510202955_in_product_marketing_email_verify_1_sent.yml b/config/metrics/counts_all/20210510202955_in_product_marketing_email_verify_1_sent.yml index a5432f3f08e..dcd61e22ab3 100644 --- a/config/metrics/counts_all/20210510202955_in_product_marketing_email_verify_1_sent.yml +++ b/config/metrics/counts_all/20210510202955_in_product_marketing_email_verify_1_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203005_in_product_marketing_email_verify_1_cta_clicked.yml b/config/metrics/counts_all/20210510203005_in_product_marketing_email_verify_1_cta_clicked.yml index 33fc65ef90e..359eb181926 100644 --- a/config/metrics/counts_all/20210510203005_in_product_marketing_email_verify_1_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203005_in_product_marketing_email_verify_1_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203015_in_product_marketing_email_verify_2_sent.yml b/config/metrics/counts_all/20210510203015_in_product_marketing_email_verify_2_sent.yml index b6a8165a0ad..b0263ce11ed 100644 --- a/config/metrics/counts_all/20210510203015_in_product_marketing_email_verify_2_sent.yml +++ b/config/metrics/counts_all/20210510203015_in_product_marketing_email_verify_2_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203025_in_product_marketing_email_verify_2_cta_clicked.yml b/config/metrics/counts_all/20210510203025_in_product_marketing_email_verify_2_cta_clicked.yml index f7a1116c011..ba0e6ad9753 100644 --- a/config/metrics/counts_all/20210510203025_in_product_marketing_email_verify_2_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203025_in_product_marketing_email_verify_2_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203035_in_product_marketing_email_trial_0_sent.yml b/config/metrics/counts_all/20210510203035_in_product_marketing_email_trial_0_sent.yml index 4525ee77874..843b1de808f 100644 --- a/config/metrics/counts_all/20210510203035_in_product_marketing_email_trial_0_sent.yml +++ b/config/metrics/counts_all/20210510203035_in_product_marketing_email_trial_0_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203044_in_product_marketing_email_trial_0_cta_clicked.yml b/config/metrics/counts_all/20210510203044_in_product_marketing_email_trial_0_cta_clicked.yml index 56d54929864..82832d991ee 100644 --- a/config/metrics/counts_all/20210510203044_in_product_marketing_email_trial_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203044_in_product_marketing_email_trial_0_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203054_in_product_marketing_email_trial_1_sent.yml b/config/metrics/counts_all/20210510203054_in_product_marketing_email_trial_1_sent.yml index 9ee4363f83c..2393643bacc 100644 --- a/config/metrics/counts_all/20210510203054_in_product_marketing_email_trial_1_sent.yml +++ b/config/metrics/counts_all/20210510203054_in_product_marketing_email_trial_1_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203104_in_product_marketing_email_trial_1_cta_clicked.yml b/config/metrics/counts_all/20210510203104_in_product_marketing_email_trial_1_cta_clicked.yml index cd8b881e029..cb72d9bb8f5 100644 --- a/config/metrics/counts_all/20210510203104_in_product_marketing_email_trial_1_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203104_in_product_marketing_email_trial_1_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203114_in_product_marketing_email_trial_2_sent.yml b/config/metrics/counts_all/20210510203114_in_product_marketing_email_trial_2_sent.yml index c1f6a7da94c..b1ae09410d1 100644 --- a/config/metrics/counts_all/20210510203114_in_product_marketing_email_trial_2_sent.yml +++ b/config/metrics/counts_all/20210510203114_in_product_marketing_email_trial_2_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203124_in_product_marketing_email_trial_2_cta_clicked.yml b/config/metrics/counts_all/20210510203124_in_product_marketing_email_trial_2_cta_clicked.yml index c46dd95d8dc..a5714e17223 100644 --- a/config/metrics/counts_all/20210510203124_in_product_marketing_email_trial_2_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203124_in_product_marketing_email_trial_2_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203134_in_product_marketing_email_team_0_sent.yml b/config/metrics/counts_all/20210510203134_in_product_marketing_email_team_0_sent.yml index 6cd44c2475f..beb6c6b9ecc 100644 --- a/config/metrics/counts_all/20210510203134_in_product_marketing_email_team_0_sent.yml +++ b/config/metrics/counts_all/20210510203134_in_product_marketing_email_team_0_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203143_in_product_marketing_email_team_0_cta_clicked.yml b/config/metrics/counts_all/20210510203143_in_product_marketing_email_team_0_cta_clicked.yml index 020ec65966b..331639ca54f 100644 --- a/config/metrics/counts_all/20210510203143_in_product_marketing_email_team_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203143_in_product_marketing_email_team_0_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203153_in_product_marketing_email_team_1_sent.yml b/config/metrics/counts_all/20210510203153_in_product_marketing_email_team_1_sent.yml index 8a0df5a4b9f..afa2854b0f9 100644 --- a/config/metrics/counts_all/20210510203153_in_product_marketing_email_team_1_sent.yml +++ b/config/metrics/counts_all/20210510203153_in_product_marketing_email_team_1_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203203_in_product_marketing_email_team_1_cta_clicked.yml b/config/metrics/counts_all/20210510203203_in_product_marketing_email_team_1_cta_clicked.yml index 210bad95a55..0bac5ef76b7 100644 --- a/config/metrics/counts_all/20210510203203_in_product_marketing_email_team_1_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203203_in_product_marketing_email_team_1_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203213_in_product_marketing_email_team_2_sent.yml b/config/metrics/counts_all/20210510203213_in_product_marketing_email_team_2_sent.yml index 3e3e680d45a..fe0770d900b 100644 --- a/config/metrics/counts_all/20210510203213_in_product_marketing_email_team_2_sent.yml +++ b/config/metrics/counts_all/20210510203213_in_product_marketing_email_team_2_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210510203223_in_product_marketing_email_team_2_cta_clicked.yml b/config/metrics/counts_all/20210510203223_in_product_marketing_email_team_2_cta_clicked.yml index 9967091db09..3fe16910ae5 100644 --- a/config/metrics/counts_all/20210510203223_in_product_marketing_email_team_2_cta_clicked.yml +++ b/config/metrics/counts_all/20210510203223_in_product_marketing_email_team_2_cta_clicked.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56752 time_frame: all diff --git a/config/metrics/counts_all/20210514141520_project_imports_total.yml b/config/metrics/counts_all/20210514141520_project_imports_total.yml index be421a6b577..3846e3b9fc7 100644 --- a/config/metrics/counts_all/20210514141520_project_imports_total.yml +++ b/config/metrics/counts_all/20210514141520_project_imports_total.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::import product_category: value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61775 time_frame: all diff --git a/config/metrics/counts_all/20210517073546_package_events_i_package_helm_pull_package.yml b/config/metrics/counts_all/20210517073546_package_events_i_package_helm_pull_package.yml index c24a713711c..111056238bd 100644 --- a/config/metrics/counts_all/20210517073546_package_events_i_package_helm_pull_package.yml +++ b/config/metrics/counts_all/20210517073546_package_events_i_package_helm_pull_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61014 time_frame: all diff --git a/config/metrics/counts_all/20210518081225_in_product_marketing_email_experience_0_sent.yml b/config/metrics/counts_all/20210518081225_in_product_marketing_email_experience_0_sent.yml index 17b3cbb7cda..17c5b1a48c4 100644 --- a/config/metrics/counts_all/20210518081225_in_product_marketing_email_experience_0_sent.yml +++ b/config/metrics/counts_all/20210518081225_in_product_marketing_email_experience_0_sent.yml @@ -8,7 +8,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active milestone: "13.12" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61347 time_frame: all diff --git a/config/metrics/counts_all/20210625095025_package_events_i_package_helm_push_package.yml b/config/metrics/counts_all/20210625095025_package_events_i_package_helm_push_package.yml index 0b1af1bf6d4..3752f3c8b2f 100644 --- a/config/metrics/counts_all/20210625095025_package_events_i_package_helm_push_package.yml +++ b/config/metrics/counts_all/20210625095025_package_events_i_package_helm_push_package.yml @@ -6,7 +6,7 @@ product_stage: package product_group: group::package product_category: package_registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64814 time_frame: all diff --git a/config/metrics/counts_all/20210709191135_package_events_i_package_nuget_pull_symbol_package.yml b/config/metrics/counts_all/20210709191135_package_events_i_package_nuget_pull_symbol_package.yml index f61a1066759..8515a522a60 100644 --- a/config/metrics/counts_all/20210709191135_package_events_i_package_nuget_pull_symbol_package.yml +++ b/config/metrics/counts_all/20210709191135_package_events_i_package_nuget_pull_symbol_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709191829_package_events_i_package_nuget_push_symbol_package.yml b/config/metrics/counts_all/20210709191829_package_events_i_package_nuget_push_symbol_package.yml index e220f54dadd..819c53bcc4f 100644 --- a/config/metrics/counts_all/20210709191829_package_events_i_package_nuget_push_symbol_package.yml +++ b/config/metrics/counts_all/20210709191829_package_events_i_package_nuget_push_symbol_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709210941_package_events_i_package_pull_symbol_package.yml b/config/metrics/counts_all/20210709210941_package_events_i_package_pull_symbol_package.yml index 825b86958bf..8edd10b3a42 100644 --- a/config/metrics/counts_all/20210709210941_package_events_i_package_pull_symbol_package.yml +++ b/config/metrics/counts_all/20210709210941_package_events_i_package_pull_symbol_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211058_package_events_i_package_pull_symbol_package_by_deploy_token.yml b/config/metrics/counts_all/20210709211058_package_events_i_package_pull_symbol_package_by_deploy_token.yml index b31f9e42aa2..f3e48ba6786 100644 --- a/config/metrics/counts_all/20210709211058_package_events_i_package_pull_symbol_package_by_deploy_token.yml +++ b/config/metrics/counts_all/20210709211058_package_events_i_package_pull_symbol_package_by_deploy_token.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211248_package_events_i_package_pull_symbol_package_by_guest.yml b/config/metrics/counts_all/20210709211248_package_events_i_package_pull_symbol_package_by_guest.yml index 4a40a793d41..33b164a9653 100644 --- a/config/metrics/counts_all/20210709211248_package_events_i_package_pull_symbol_package_by_guest.yml +++ b/config/metrics/counts_all/20210709211248_package_events_i_package_pull_symbol_package_by_guest.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211341_package_events_i_package_pull_symbol_package_by_user.yml b/config/metrics/counts_all/20210709211341_package_events_i_package_pull_symbol_package_by_user.yml index 44eb3efe429..8959af7f70c 100644 --- a/config/metrics/counts_all/20210709211341_package_events_i_package_pull_symbol_package_by_user.yml +++ b/config/metrics/counts_all/20210709211341_package_events_i_package_pull_symbol_package_by_user.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211439_package_events_i_package_push_symbol_package.yml b/config/metrics/counts_all/20210709211439_package_events_i_package_push_symbol_package.yml index 5e4114c1e34..35d89b856f3 100644 --- a/config/metrics/counts_all/20210709211439_package_events_i_package_push_symbol_package.yml +++ b/config/metrics/counts_all/20210709211439_package_events_i_package_push_symbol_package.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211636_package_events_i_package_push_symbol_package_by_deploy_token.yml b/config/metrics/counts_all/20210709211636_package_events_i_package_push_symbol_package_by_deploy_token.yml index b6da6dfb60b..f102da96d17 100644 --- a/config/metrics/counts_all/20210709211636_package_events_i_package_push_symbol_package_by_deploy_token.yml +++ b/config/metrics/counts_all/20210709211636_package_events_i_package_push_symbol_package_by_deploy_token.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211731_package_events_i_package_push_symbol_package_by_guest.yml b/config/metrics/counts_all/20210709211731_package_events_i_package_push_symbol_package_by_guest.yml index 26a4c1cb2cd..7e5e63b6a17 100644 --- a/config/metrics/counts_all/20210709211731_package_events_i_package_push_symbol_package_by_guest.yml +++ b/config/metrics/counts_all/20210709211731_package_events_i_package_push_symbol_package_by_guest.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210709211831_package_events_i_package_push_symbol_package_by_user.yml b/config/metrics/counts_all/20210709211831_package_events_i_package_push_symbol_package_by_user.yml index aff7e4a5f8d..e45db0aee02 100644 --- a/config/metrics/counts_all/20210709211831_package_events_i_package_push_symbol_package_by_user.yml +++ b/config/metrics/counts_all/20210709211831_package_events_i_package_push_symbol_package_by_user.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: package registry value_type: number -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/64554 time_frame: all diff --git a/config/metrics/counts_all/20210723075525_diff_searches.yml b/config/metrics/counts_all/20210723075525_diff_searches.yml index 02bb3c7ff67..28e1ce927dc 100644 --- a/config/metrics/counts_all/20210723075525_diff_searches.yml +++ b/config/metrics/counts_all/20210723075525_diff_searches.yml @@ -6,7 +6,7 @@ product_stage: create product_group: group::code review product_category: code_review value_type: number -status: implemented +status: active milestone: '14.2' introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66522 time_frame: all diff --git a/config/metrics/counts_all/20210727095918_in_product_marketing_email_team_short_0_cta_clicked.yml b/config/metrics/counts_all/20210727095918_in_product_marketing_email_team_short_0_cta_clicked.yml index c720bf1556a..0f0b467ab45 100644 --- a/config/metrics/counts_all/20210727095918_in_product_marketing_email_team_short_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210727095918_in_product_marketing_email_team_short_0_cta_clicked.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66854 time_frame: all diff --git a/config/metrics/counts_all/20210727095923_in_product_marketing_email_team_short_0_sent.yml b/config/metrics/counts_all/20210727095923_in_product_marketing_email_team_short_0_sent.yml index 7c63172990f..e60be585be8 100644 --- a/config/metrics/counts_all/20210727095923_in_product_marketing_email_team_short_0_sent.yml +++ b/config/metrics/counts_all/20210727095923_in_product_marketing_email_team_short_0_sent.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66854 time_frame: all diff --git a/config/metrics/counts_all/20210727170553_in_product_marketing_email_trial_short_0_cta_clicked.yml b/config/metrics/counts_all/20210727170553_in_product_marketing_email_trial_short_0_cta_clicked.yml index 0761627c548..a34cc75c09b 100644 --- a/config/metrics/counts_all/20210727170553_in_product_marketing_email_trial_short_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210727170553_in_product_marketing_email_trial_short_0_cta_clicked.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66943 time_frame: all diff --git a/config/metrics/counts_all/20210727170558_in_product_marketing_email_trial_short_0_sent.yml b/config/metrics/counts_all/20210727170558_in_product_marketing_email_trial_short_0_sent.yml index e18ab01b4a5..05711afef8f 100644 --- a/config/metrics/counts_all/20210727170558_in_product_marketing_email_trial_short_0_sent.yml +++ b/config/metrics/counts_all/20210727170558_in_product_marketing_email_trial_short_0_sent.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66943 time_frame: all diff --git a/config/metrics/counts_all/20210729140021_in_product_marketing_email_admin_verify_0_cta_clicked.yml b/config/metrics/counts_all/20210729140021_in_product_marketing_email_admin_verify_0_cta_clicked.yml index aa1ce32f7c8..695fada6670 100644 --- a/config/metrics/counts_all/20210729140021_in_product_marketing_email_admin_verify_0_cta_clicked.yml +++ b/config/metrics/counts_all/20210729140021_in_product_marketing_email_admin_verify_0_cta_clicked.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67147 time_frame: all diff --git a/config/metrics/counts_all/20210729140423_in_product_marketing_email_admin_verify_0_sent.yml b/config/metrics/counts_all/20210729140423_in_product_marketing_email_admin_verify_0_sent.yml index 6cc374030d1..8f52a79cc2a 100644 --- a/config/metrics/counts_all/20210729140423_in_product_marketing_email_admin_verify_0_sent.yml +++ b/config/metrics/counts_all/20210729140423_in_product_marketing_email_admin_verify_0_sent.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67147 time_frame: all diff --git a/config/metrics/license/20210201124932_recorded_at.yml b/config/metrics/license/20210201124932_recorded_at.yml index 3b80163a05e..59388f5bb20 100644 --- a/config/metrics/license/20210201124932_recorded_at.yml +++ b/config/metrics/license/20210201124932_recorded_at.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "8.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/557 time_frame: none diff --git a/config/metrics/license/20210201124933_uuid.yml b/config/metrics/license/20210201124933_uuid.yml index a9503adf6c9..11cb6ac1411 100644 --- a/config/metrics/license/20210201124933_uuid.yml +++ b/config/metrics/license/20210201124933_uuid.yml @@ -6,7 +6,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "9.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/1521 time_frame: none diff --git a/config/metrics/license/20210204124827_hostname.yml b/config/metrics/license/20210204124827_hostname.yml index 4bfe4ac2fac..4496f158ea1 100644 --- a/config/metrics/license/20210204124827_hostname.yml +++ b/config/metrics/license/20210204124827_hostname.yml @@ -6,7 +6,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/license/20210204124829_active_user_count.yml b/config/metrics/license/20210204124829_active_user_count.yml index c3d6b19c6e0..871a75bd97b 100644 --- a/config/metrics/license/20210204124829_active_user_count.yml +++ b/config/metrics/license/20210204124829_active_user_count.yml @@ -6,7 +6,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "<13.9" data_category: subscription time_frame: none diff --git a/config/metrics/license/20210204124928_version.yml b/config/metrics/license/20210204124928_version.yml index 54c4595408b..8bb19156cc5 100644 --- a/config/metrics/license/20210204124928_version.yml +++ b/config/metrics/license/20210204124928_version.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/license/20210204124936_pages_version.yml b/config/metrics/license/20210204124936_pages_version.yml index 9f327e8259b..5e498ceb6c4 100644 --- a/config/metrics/license/20210204124936_pages_version.yml +++ b/config/metrics/license/20210204124936_pages_version.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: pages value_type: string -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/license/20210204124938_recording_ce_finished_at.yml b/config/metrics/license/20210204124938_recording_ce_finished_at.yml index 194e98a6919..02521e8bd2c 100644 --- a/config/metrics/license/20210204124938_recording_ce_finished_at.yml +++ b/config/metrics/license/20210204124938_recording_ce_finished_at.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: string -status: data_available +status: active milestone: "13.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/31222 time_frame: none diff --git a/config/metrics/license/20210216175601_version.yml b/config/metrics/license/20210216175601_version.yml index 77b7525552e..a6af4ff2c9b 100644 --- a/config/metrics/license/20210216175601_version.yml +++ b/config/metrics/license/20210216175601_version.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: collection value_type: string -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/license/20210216175602_installation_type.yml b/config/metrics/license/20210216175602_installation_type.yml index a84e94250e0..d19405549d6 100644 --- a/config/metrics/license/20210216175602_installation_type.yml +++ b/config/metrics/license/20210216175602_installation_type.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: collection value_type: string -status: data_available +status: active milestone: "11.0" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/5952/ time_frame: none diff --git a/config/metrics/license/20210216181053_version.yml b/config/metrics/license/20210216181053_version.yml index e40ab2dcad1..d6e6ea1c0e0 100644 --- a/config/metrics/license/20210216181053_version.yml +++ b/config/metrics/license/20210216181053_version.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: number -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/license/20210216183237_version.yml b/config/metrics/license/20210216183237_version.yml index 8e0ccca5932..6517c3bc4f5 100644 --- a/config/metrics/license/20210216183237_version.yml +++ b/config/metrics/license/20210216183237_version.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: '' value_type: string -status: data_available +status: active milestone: "<13.9" time_frame: none data_source: system diff --git a/config/metrics/schema.json b/config/metrics/schema.json index e55caa268b5..ede7b9d3f6c 100644 --- a/config/metrics/schema.json +++ b/config/metrics/schema.json @@ -30,7 +30,7 @@ }, "status": { "type": ["string"], - "enum": ["active", "data_available", "implemented", "deprecated", "removed", "broken"] + "enum": ["active", "deprecated", "removed", "broken"] }, "milestone": { "type": ["string"], diff --git a/config/metrics/settings/20210201124935_database_adapter.yml b/config/metrics/settings/20210201124935_database_adapter.yml index 954807324ab..a127b2b70dd 100644 --- a/config/metrics/settings/20210201124935_database_adapter.yml +++ b/config/metrics/settings/20210201124935_database_adapter.yml @@ -9,7 +9,7 @@ product_stage: enablement product_group: group::enablement distribution product_category: collection value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124856_instance_auto_devops_enabled.yml b/config/metrics/settings/20210204124856_instance_auto_devops_enabled.yml index 8504cf63d54..5b886288fec 100644 --- a/config/metrics/settings/20210204124856_instance_auto_devops_enabled.yml +++ b/config/metrics/settings/20210204124856_instance_auto_devops_enabled.yml @@ -7,7 +7,7 @@ product_stage: configure product_group: group::configure product_category: auto_devops value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124858_container_registry_enabled.yml b/config/metrics/settings/20210204124858_container_registry_enabled.yml index 206e173b240..c65d1934c61 100644 --- a/config/metrics/settings/20210204124858_container_registry_enabled.yml +++ b/config/metrics/settings/20210204124858_container_registry_enabled.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124900_dependency_proxy_enabled.yml b/config/metrics/settings/20210204124900_dependency_proxy_enabled.yml index 76bb2049c64..694bb4b08bd 100644 --- a/config/metrics/settings/20210204124900_dependency_proxy_enabled.yml +++ b/config/metrics/settings/20210204124900_dependency_proxy_enabled.yml @@ -7,7 +7,7 @@ product_stage: package product_group: group::package product_category: container registry value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124902_gitlab_shared_runners_enabled.yml b/config/metrics/settings/20210204124902_gitlab_shared_runners_enabled.yml index e174a298c90..6b5719d284d 100644 --- a/config/metrics/settings/20210204124902_gitlab_shared_runners_enabled.yml +++ b/config/metrics/settings/20210204124902_gitlab_shared_runners_enabled.yml @@ -7,7 +7,7 @@ product_stage: verify product_group: group::runner product_category: runner value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124904_gravatar_enabled.yml b/config/metrics/settings/20210204124904_gravatar_enabled.yml index 6d16fdd24fc..dde0bc118e7 100644 --- a/config/metrics/settings/20210204124904_gravatar_enabled.yml +++ b/config/metrics/settings/20210204124904_gravatar_enabled.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: users value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124906_ldap_enabled.yml b/config/metrics/settings/20210204124906_ldap_enabled.yml index e0ee89f1bad..1f58fd0ffba 100644 --- a/config/metrics/settings/20210204124906_ldap_enabled.yml +++ b/config/metrics/settings/20210204124906_ldap_enabled.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124908_mattermost_enabled.yml b/config/metrics/settings/20210204124908_mattermost_enabled.yml index 32ff7293662..cc00b3b9da2 100644 --- a/config/metrics/settings/20210204124908_mattermost_enabled.yml +++ b/config/metrics/settings/20210204124908_mattermost_enabled.yml @@ -7,7 +7,7 @@ product_stage: ecosystem product_group: group::integrations product_category: integrations value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124910_omniauth_enabled.yml b/config/metrics/settings/20210204124910_omniauth_enabled.yml index 5dfcf4ad33c..f4531b10055 100644 --- a/config/metrics/settings/20210204124910_omniauth_enabled.yml +++ b/config/metrics/settings/20210204124910_omniauth_enabled.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124912_prometheus_enabled.yml b/config/metrics/settings/20210204124912_prometheus_enabled.yml index da33a8a962f..236e1656a6b 100644 --- a/config/metrics/settings/20210204124912_prometheus_enabled.yml +++ b/config/metrics/settings/20210204124912_prometheus_enabled.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124914_prometheus_metrics_enabled.yml b/config/metrics/settings/20210204124914_prometheus_metrics_enabled.yml index 73e9012d4a4..1d13b72fbff 100644 --- a/config/metrics/settings/20210204124914_prometheus_metrics_enabled.yml +++ b/config/metrics/settings/20210204124914_prometheus_metrics_enabled.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124916_reply_by_email_enabled.yml b/config/metrics/settings/20210204124916_reply_by_email_enabled.yml index ec37ac98dd2..c9d223c8c58 100644 --- a/config/metrics/settings/20210204124916_reply_by_email_enabled.yml +++ b/config/metrics/settings/20210204124916_reply_by_email_enabled.yml @@ -7,7 +7,7 @@ product_stage: plan product_group: group::certify product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124918_signup_enabled.yml b/config/metrics/settings/20210204124918_signup_enabled.yml index 543edbcbd16..e8c3226ebf8 100644 --- a/config/metrics/settings/20210204124918_signup_enabled.yml +++ b/config/metrics/settings/20210204124918_signup_enabled.yml @@ -7,7 +7,7 @@ product_stage: manage product_group: group::access product_category: authentication_and_authorization value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124920_web_ide_clientside_preview_enabled.yml b/config/metrics/settings/20210204124920_web_ide_clientside_preview_enabled.yml index e028f9ed327..9bc2a90fc1d 100644 --- a/config/metrics/settings/20210204124920_web_ide_clientside_preview_enabled.yml +++ b/config/metrics/settings/20210204124920_web_ide_clientside_preview_enabled.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: database distribution: diff --git a/config/metrics/settings/20210204124922_grafana_link_enabled.yml b/config/metrics/settings/20210204124922_grafana_link_enabled.yml index 951df5de642..d636f00312d 100644 --- a/config/metrics/settings/20210204124922_grafana_link_enabled.yml +++ b/config/metrics/settings/20210204124922_grafana_link_enabled.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210204124934_pages_enabled.yml b/config/metrics/settings/20210204124934_pages_enabled.yml index 287b1546002..28e12d85e41 100644 --- a/config/metrics/settings/20210204124934_pages_enabled.yml +++ b/config/metrics/settings/20210204124934_pages_enabled.yml @@ -7,7 +7,7 @@ product_stage: release product_group: group::release product_category: collection value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216174829_smtp_server.yml b/config/metrics/settings/20210216174829_smtp_server.yml index 0e96093feaf..c1e4d77bc6c 100644 --- a/config/metrics/settings/20210216174829_smtp_server.yml +++ b/config/metrics/settings/20210216174829_smtp_server.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::activation product_category: onboarding value_type: number -status: data_available +status: active time_frame: all data_source: system distribution: diff --git a/config/metrics/settings/20210216175604_edition.yml b/config/metrics/settings/20210216175604_edition.yml index 4b4f117ccbd..9a586f0c78b 100644 --- a/config/metrics/settings/20210216175604_edition.yml +++ b/config/metrics/settings/20210216175604_edition.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: collection value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216175606_ldap_encrypted_secrets_enabled.yml b/config/metrics/settings/20210216175606_ldap_encrypted_secrets_enabled.yml index 9b7a50a4f1c..046811b8686 100644 --- a/config/metrics/settings/20210216175606_ldap_encrypted_secrets_enabled.yml +++ b/config/metrics/settings/20210216175606_ldap_encrypted_secrets_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: global_search value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216175609_version.yml b/config/metrics/settings/20210216175609_version.yml index 223238a70fa..136b8fed4ff 100644 --- a/config/metrics/settings/20210216175609_version.yml +++ b/config/metrics/settings/20210216175609_version.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: collection value_type: string -status: data_available +status: active time_frame: none data_source: database distribution: diff --git a/config/metrics/settings/20210216180314_gitpod_enabled.yml b/config/metrics/settings/20210216180314_gitpod_enabled.yml index 30e08272077..15a747fdffb 100644 --- a/config/metrics/settings/20210216180314_gitpod_enabled.yml +++ b/config/metrics/settings/20210216180314_gitpod_enabled.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::editor product_category: integrations value_type: boolean -status: data_available +status: active time_frame: none data_source: database distribution: diff --git a/config/metrics/settings/20210216180836_enabled.yml b/config/metrics/settings/20210216180836_enabled.yml index 35ab202ed5c..12eae478add 100644 --- a/config/metrics/settings/20210216180836_enabled.yml +++ b/config/metrics/settings/20210216180836_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180838_enabled.yml b/config/metrics/settings/20210216180838_enabled.yml index ec1ed88a15d..da6dd5fce62 100644 --- a/config/metrics/settings/20210216180838_enabled.yml +++ b/config/metrics/settings/20210216180838_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180840_direct_upload.yml b/config/metrics/settings/20210216180840_direct_upload.yml index 89db3c99033..279b9472364 100644 --- a/config/metrics/settings/20210216180840_direct_upload.yml +++ b/config/metrics/settings/20210216180840_direct_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180841_background_upload.yml b/config/metrics/settings/20210216180841_background_upload.yml index 6d3feae4944..829e20e2405 100644 --- a/config/metrics/settings/20210216180841_background_upload.yml +++ b/config/metrics/settings/20210216180841_background_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180843_provider.yml b/config/metrics/settings/20210216180843_provider.yml index e4967e5e390..848e0669b73 100644 --- a/config/metrics/settings/20210216180843_provider.yml +++ b/config/metrics/settings/20210216180843_provider.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180845_enabled.yml b/config/metrics/settings/20210216180845_enabled.yml index 26abb8f4f2f..d5e42959871 100644 --- a/config/metrics/settings/20210216180845_enabled.yml +++ b/config/metrics/settings/20210216180845_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180847_enabled.yml b/config/metrics/settings/20210216180847_enabled.yml index 76f352bdbaf..49c8c887ccc 100644 --- a/config/metrics/settings/20210216180847_enabled.yml +++ b/config/metrics/settings/20210216180847_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180849_direct_upload.yml b/config/metrics/settings/20210216180849_direct_upload.yml index cded4304535..d91e033ee4a 100644 --- a/config/metrics/settings/20210216180849_direct_upload.yml +++ b/config/metrics/settings/20210216180849_direct_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180851_background_upload.yml b/config/metrics/settings/20210216180851_background_upload.yml index f2705f52f3a..76dc5007857 100644 --- a/config/metrics/settings/20210216180851_background_upload.yml +++ b/config/metrics/settings/20210216180851_background_upload.yml @@ -8,7 +8,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180852_provider.yml b/config/metrics/settings/20210216180852_provider.yml index 18c0bf6ff08..01cd2a43ff2 100644 --- a/config/metrics/settings/20210216180852_provider.yml +++ b/config/metrics/settings/20210216180852_provider.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180854_enabled.yml b/config/metrics/settings/20210216180854_enabled.yml index 72b228f1c69..bf0ec99486b 100644 --- a/config/metrics/settings/20210216180854_enabled.yml +++ b/config/metrics/settings/20210216180854_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180856_enabled.yml b/config/metrics/settings/20210216180856_enabled.yml index 0c5abced9b3..a21b8f0eb15 100644 --- a/config/metrics/settings/20210216180856_enabled.yml +++ b/config/metrics/settings/20210216180856_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180858_direct_upload.yml b/config/metrics/settings/20210216180858_direct_upload.yml index 3e23f412668..85619adc8f2 100644 --- a/config/metrics/settings/20210216180858_direct_upload.yml +++ b/config/metrics/settings/20210216180858_direct_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180900_background_upload.yml b/config/metrics/settings/20210216180900_background_upload.yml index 59751ba9fc9..959ae65306d 100644 --- a/config/metrics/settings/20210216180900_background_upload.yml +++ b/config/metrics/settings/20210216180900_background_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180902_provider.yml b/config/metrics/settings/20210216180902_provider.yml index 16b3a915caf..50b88f893ee 100644 --- a/config/metrics/settings/20210216180902_provider.yml +++ b/config/metrics/settings/20210216180902_provider.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180903_enabled.yml b/config/metrics/settings/20210216180903_enabled.yml index 7f5abb78806..759fdeeba93 100644 --- a/config/metrics/settings/20210216180903_enabled.yml +++ b/config/metrics/settings/20210216180903_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180905_enabled.yml b/config/metrics/settings/20210216180905_enabled.yml index 8ef51ba21a1..b71472488b1 100644 --- a/config/metrics/settings/20210216180905_enabled.yml +++ b/config/metrics/settings/20210216180905_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180907_direct_upload.yml b/config/metrics/settings/20210216180907_direct_upload.yml index e8e59097faf..b5e702462ec 100644 --- a/config/metrics/settings/20210216180907_direct_upload.yml +++ b/config/metrics/settings/20210216180907_direct_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180909_background_upload.yml b/config/metrics/settings/20210216180909_background_upload.yml index e1df69b1e5d..e4800ee74a7 100644 --- a/config/metrics/settings/20210216180909_background_upload.yml +++ b/config/metrics/settings/20210216180909_background_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180911_provider.yml b/config/metrics/settings/20210216180911_provider.yml index 4b0455290af..c0e69fe0646 100644 --- a/config/metrics/settings/20210216180911_provider.yml +++ b/config/metrics/settings/20210216180911_provider.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180913_enabled.yml b/config/metrics/settings/20210216180913_enabled.yml index 63b0b856c8c..c1e8869d9a6 100644 --- a/config/metrics/settings/20210216180913_enabled.yml +++ b/config/metrics/settings/20210216180913_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180915_enabled.yml b/config/metrics/settings/20210216180915_enabled.yml index d9922248b12..34649634deb 100644 --- a/config/metrics/settings/20210216180915_enabled.yml +++ b/config/metrics/settings/20210216180915_enabled.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180916_direct_upload.yml b/config/metrics/settings/20210216180916_direct_upload.yml index f49308e888b..3f5d354baa1 100644 --- a/config/metrics/settings/20210216180916_direct_upload.yml +++ b/config/metrics/settings/20210216180916_direct_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180918_background_upload.yml b/config/metrics/settings/20210216180918_background_upload.yml index 9273c7d4f17..d2e630e2a17 100644 --- a/config/metrics/settings/20210216180918_background_upload.yml +++ b/config/metrics/settings/20210216180918_background_upload.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: boolean -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216180920_provider.yml b/config/metrics/settings/20210216180920_provider.yml index 9a2e52f0f81..6de7aed8801 100644 --- a/config/metrics/settings/20210216180920_provider.yml +++ b/config/metrics/settings/20210216180920_provider.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: memory value_type: string -status: data_available +status: active time_frame: none data_source: system distribution: diff --git a/config/metrics/settings/20210216183241_filesystems.yml b/config/metrics/settings/20210216183241_filesystems.yml index 6609a6c75a7..54f9aa9c030 100644 --- a/config/metrics/settings/20210216183241_filesystems.yml +++ b/config/metrics/settings/20210216183241_filesystems.yml @@ -7,7 +7,7 @@ product_stage: '' product_group: '' product_category: '' value_type: number -status: data_available +status: active time_frame: all data_source: system distribution: diff --git a/config/metrics/settings/20210216183248_pg_system_id.yml b/config/metrics/settings/20210216183248_pg_system_id.yml index eb5312bfabb..a96994f9de6 100644 --- a/config/metrics/settings/20210216183248_pg_system_id.yml +++ b/config/metrics/settings/20210216183248_pg_system_id.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: value_type: number -status: data_available +status: active time_frame: all data_source: system distribution: diff --git a/config/metrics/settings/20210225045628_operating_system.yml b/config/metrics/settings/20210225045628_operating_system.yml index 670babcef44..3db6412cc13 100644 --- a/config/metrics/settings/20210225045628_operating_system.yml +++ b/config/metrics/settings/20210225045628_operating_system.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::distribution product_category: collection value_type: string -status: data_available +status: active milestone: "13.10" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/54778 time_frame: none diff --git a/config/metrics/settings/20210321224827_gitaly_apdex.yml b/config/metrics/settings/20210321224827_gitaly_apdex.yml index 92d80129412..6d5204f61bf 100644 --- a/config/metrics/settings/20210321224827_gitaly_apdex.yml +++ b/config/metrics/settings/20210321224827_gitaly_apdex.yml @@ -7,7 +7,7 @@ product_stage: create product_group: group::gitaly product_category: gitaly value_type: number -status: data_available +status: active milestone: "13.11" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/47040 time_frame: none diff --git a/config/metrics/settings/20210323120839_topology.yml b/config/metrics/settings/20210323120839_topology.yml index 934dc4dd6ce..a254ad36dfe 100644 --- a/config/metrics/settings/20210323120839_topology.yml +++ b/config/metrics/settings/20210323120839_topology.yml @@ -7,7 +7,7 @@ product_stage: enablement product_group: group::memory product_category: value_type: object -status: data_available +status: active milestone: "13.11" introduced_by_url: https://gitlab.com/groups/gitlab-org/-/epics/3209 time_frame: none diff --git a/config/metrics/settings/20210702140138_collected_data_categories.yml b/config/metrics/settings/20210702140138_collected_data_categories.yml index 65ae674d502..27262af8aa5 100644 --- a/config/metrics/settings/20210702140138_collected_data_categories.yml +++ b/config/metrics/settings/20210702140138_collected_data_categories.yml @@ -7,7 +7,7 @@ product_stage: growth product_group: group::product intelligence product_category: collection value_type: object -status: implemented +status: active milestone: "14.1" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/65336 time_frame: none diff --git a/config/metrics/settings/20210812202137_smtp_encrypted_secrets_enabled.yml b/config/metrics/settings/20210812202137_smtp_encrypted_secrets_enabled.yml index ea6d92793de..934daf472fa 100644 --- a/config/metrics/settings/20210812202137_smtp_encrypted_secrets_enabled.yml +++ b/config/metrics/settings/20210812202137_smtp_encrypted_secrets_enabled.yml @@ -5,7 +5,7 @@ product_section: enablement product_stage: enablement product_group: distribution value_type: boolean -status: implemented +status: active milestone: "14.2" introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67802 time_frame: none diff --git a/db/migrate/20210906100021_delete_project_namespace_trigger.rb b/db/migrate/20210906100021_delete_project_namespace_trigger.rb new file mode 100644 index 00000000000..ce68cf7d6d4 --- /dev/null +++ b/db/migrate/20210906100021_delete_project_namespace_trigger.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +class DeleteProjectNamespaceTrigger < Gitlab::Database::Migration[1.0] + include Gitlab::Database::SchemaHelpers + + TRIGGER_NAME = "trigger_delete_project_namespace_on_project_delete" + FUNCTION_NAME = 'delete_associated_project_namespace' + + def up + create_trigger_function(FUNCTION_NAME, replace: true) do + <<~SQL + DELETE FROM namespaces + WHERE namespaces.id = OLD.project_namespace_id AND + namespaces.type = 'Project'; + RETURN NULL; + SQL + end + + execute(<<~SQL.squish) + CREATE TRIGGER #{TRIGGER_NAME} + AFTER DELETE ON projects FOR EACH ROW + WHEN (OLD.project_namespace_id IS NOT NULL) + EXECUTE FUNCTION #{FUNCTION_NAME}(); + SQL + end + + def down + drop_trigger(:projects, TRIGGER_NAME) + drop_function(FUNCTION_NAME) + end +end diff --git a/db/migrate/20210913122457_add_namespace_traversal_ids_to_ci_pending_builds.rb b/db/migrate/20210913122457_add_namespace_traversal_ids_to_ci_pending_builds.rb new file mode 100644 index 00000000000..9dd420604f4 --- /dev/null +++ b/db/migrate/20210913122457_add_namespace_traversal_ids_to_ci_pending_builds.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class AddNamespaceTraversalIdsToCiPendingBuilds < Gitlab::Database::Migration[1.0] + enable_lock_retries! + + def change + add_column :ci_pending_builds, :namespace_traversal_ids, :integer, array: true, default: [] + end +end diff --git a/db/post_migrate/20210914094840_add_gin_index_on_pending_builds_namespace_traversal_ids.rb b/db/post_migrate/20210914094840_add_gin_index_on_pending_builds_namespace_traversal_ids.rb new file mode 100644 index 00000000000..3584c7136e3 --- /dev/null +++ b/db/post_migrate/20210914094840_add_gin_index_on_pending_builds_namespace_traversal_ids.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +class AddGinIndexOnPendingBuildsNamespaceTraversalIds < Gitlab::Database::Migration[1.0] + disable_ddl_transaction! + + INDEX_NAME = 'index_gin_ci_pending_builds_on_namespace_traversal_ids' + + def up + add_concurrent_index :ci_pending_builds, :namespace_traversal_ids, name: INDEX_NAME, using: :gin + end + + def down + remove_concurrent_index_by_name :ci_pending_builds, INDEX_NAME + end +end diff --git a/db/schema_migrations/20210906100021 b/db/schema_migrations/20210906100021 new file mode 100644 index 00000000000..9ae19276eab --- /dev/null +++ b/db/schema_migrations/20210906100021 @@ -0,0 +1 @@ +74f6800c968f80e18aa000df42fd23086404fdd7a863237e453541b7eeb4eb7f \ No newline at end of file diff --git a/db/schema_migrations/20210913122457 b/db/schema_migrations/20210913122457 new file mode 100644 index 00000000000..e8f322c64c8 --- /dev/null +++ b/db/schema_migrations/20210913122457 @@ -0,0 +1 @@ +031fb794e4fa3d54098596defd9de6fb1e507e01bd8f02462c0079e7e59c3416 \ No newline at end of file diff --git a/db/schema_migrations/20210914094840 b/db/schema_migrations/20210914094840 new file mode 100644 index 00000000000..51d46c05ae6 --- /dev/null +++ b/db/schema_migrations/20210914094840 @@ -0,0 +1 @@ +994de4d18202a420a7184cabe787f6e3f872900147df0cd848731483e6d87566 \ No newline at end of file diff --git a/db/structure.sql b/db/structure.sql index 44800192952..3453df441cd 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -10,6 +10,18 @@ CREATE EXTENSION IF NOT EXISTS btree_gist; CREATE EXTENSION IF NOT EXISTS pg_trgm; +CREATE FUNCTION delete_associated_project_namespace() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN +DELETE FROM namespaces +WHERE namespaces.id = OLD.project_namespace_id AND +namespaces.type = 'Project'; +RETURN NULL; + +END +$$; + CREATE FUNCTION integrations_set_type_new() RETURNS trigger LANGUAGE plpgsql AS $$ @@ -11617,7 +11629,8 @@ CREATE TABLE ci_pending_builds ( instance_runners_enabled boolean DEFAULT false NOT NULL, namespace_id bigint, minutes_exceeded boolean DEFAULT false NOT NULL, - tag_ids integer[] DEFAULT '{}'::integer[] + tag_ids integer[] DEFAULT '{}'::integer[], + namespace_traversal_ids integer[] DEFAULT '{}'::integer[] ); CREATE SEQUENCE ci_pending_builds_id_seq @@ -25139,6 +25152,8 @@ CREATE INDEX index_geo_reset_checksum_events_on_project_id ON geo_reset_checksum CREATE INDEX index_geo_upload_deleted_events_on_upload_id ON geo_upload_deleted_events USING btree (upload_id); +CREATE INDEX index_gin_ci_pending_builds_on_namespace_traversal_ids ON ci_pending_builds USING gin (namespace_traversal_ids); + CREATE INDEX index_gitlab_subscription_histories_on_gitlab_subscription_id ON gitlab_subscription_histories USING btree (gitlab_subscription_id); CREATE INDEX index_gitlab_subscriptions_on_end_date_and_namespace_id ON gitlab_subscriptions USING btree (end_date, namespace_id); @@ -27319,6 +27334,8 @@ CREATE TRIGGER trigger_91dc388a5fe6 BEFORE INSERT OR UPDATE ON dep_ci_build_trac CREATE TRIGGER trigger_aebe8b822ad3 BEFORE INSERT OR UPDATE ON taggings FOR EACH ROW EXECUTE FUNCTION trigger_aebe8b822ad3(); +CREATE TRIGGER trigger_delete_project_namespace_on_project_delete AFTER DELETE ON projects FOR EACH ROW WHEN ((old.project_namespace_id IS NOT NULL)) EXECUTE FUNCTION delete_associated_project_namespace(); + CREATE TRIGGER trigger_has_external_issue_tracker_on_delete AFTER DELETE ON integrations FOR EACH ROW WHEN ((((old.category)::text = 'issue_tracker'::text) AND (old.active = true) AND (old.project_id IS NOT NULL))) EXECUTE FUNCTION set_has_external_issue_tracker(); CREATE TRIGGER trigger_has_external_issue_tracker_on_insert AFTER INSERT ON integrations FOR EACH ROW WHEN ((((new.category)::text = 'issue_tracker'::text) AND (new.active = true) AND (new.project_id IS NOT NULL))) EXECUTE FUNCTION set_has_external_issue_tracker(); diff --git a/doc/api/group_activity_analytics.md b/doc/api/group_activity_analytics.md index 003c96b65fa..9206b0a1bd6 100644 --- a/doc/api/group_activity_analytics.md +++ b/doc/api/group_activity_analytics.md @@ -4,7 +4,7 @@ group: Optimize info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Group Activity Analytics API +# Group Activity Analytics API **(PREMIUM)** > [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/26460) in GitLab 12.9. diff --git a/doc/api/group_badges.md b/doc/api/group_badges.md index 463507bf583..1e830237b50 100644 --- a/doc/api/group_badges.md +++ b/doc/api/group_badges.md @@ -4,7 +4,7 @@ group: Access info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Group badges API +# Group badges API **(FREE)** > [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17082) in GitLab 10.6. diff --git a/doc/api/group_boards.md b/doc/api/group_boards.md index e92c8784664..6178a3fdc04 100644 --- a/doc/api/group_boards.md +++ b/doc/api/group_boards.md @@ -76,7 +76,7 @@ Example response: ] ``` -Users on GitLab [Premium or higher](https://about.gitlab.com/pricing/) see +Users on [GitLab Premium or higher](https://about.gitlab.com/pricing/) see different parameters, due to the ability to have multiple group boards. Example response: @@ -192,7 +192,7 @@ Example response: } ``` -Users on GitLab [Premium or higher](https://about.gitlab.com/pricing/) see +Users on [GitLab Premium or higher](https://about.gitlab.com/pricing/) see different parameters, due to the ability to have multiple group issue boards. Example response: diff --git a/doc/api/group_import_export.md b/doc/api/group_import_export.md index d2bcac6332a..0a431cfdfbf 100644 --- a/doc/api/group_import_export.md +++ b/doc/api/group_import_export.md @@ -4,7 +4,7 @@ group: Import info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Group Import/Export API +# Group Import/Export API **(FREE)** > [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/20353) in GitLab 12.8. diff --git a/doc/api/group_labels.md b/doc/api/group_labels.md index 25102e32360..04a619c8fa9 100644 --- a/doc/api/group_labels.md +++ b/doc/api/group_labels.md @@ -13,7 +13,7 @@ It allows users to list, create, update, and delete group labels. Furthermore, u unsubscribe from group labels. NOTE: -The `description_html` - was added to response JSON in [GitLab 12.7](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/21413). +The `description_html` - was [added](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/21413) to response JSON in GitLab 12.7. ## List group labels @@ -26,7 +26,7 @@ GET /groups/:id/labels | Attribute | Type | Required | Description | | --------- | ---- | -------- | ----------- | | `id` | integer/string | yes | The ID or [URL-encoded path of the group](index.md#namespaced-path-encoding) owned by the authenticated user. | -| `with_counts` | boolean | no | Whether or not to include issue and merge request counts. Defaults to `false`. _([Introduced in GitLab 12.2](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/31543))_ | +| `with_counts` | boolean | no | Whether or not to include issue and merge request counts. Defaults to `false`. _([Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/31543) in GitLab 12.2)_ | | `include_ancestor_groups` | boolean | no | Include ancestor groups. Defaults to `true`. | | `include_descendant_groups` | boolean | no | Include descendant groups. Defaults to `false`. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/259024) in GitLab 13.6 | | `only_group_labels` | boolean | no | Toggle to include only group labels or also project labels. Defaults to `true`. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/259024) in GitLab 13.6 | diff --git a/doc/api/group_level_variables.md b/doc/api/group_level_variables.md index f816f2dc173..7c51de47bc7 100644 --- a/doc/api/group_level_variables.md +++ b/doc/api/group_level_variables.md @@ -4,7 +4,7 @@ group: Pipeline Authoring info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Group-level Variables API +# Group-level Variables API **(FREE)** > [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/34519) in GitLab 9.5 diff --git a/doc/api/group_milestones.md b/doc/api/group_milestones.md index d7de3272005..8b9c09ef1a0 100644 --- a/doc/api/group_milestones.md +++ b/doc/api/group_milestones.md @@ -32,7 +32,7 @@ Parameters: | `state` | string | no | Return only `active` or `closed` milestones | | `title` | string | no | Return only the milestones having the given `title` | | `search` | string | no | Return only milestones with a title or description matching the provided string | -| `include_parent_milestones` | boolean | optional | Include milestones from parent group and its ancestors. Introduced in [GitLab 13.4](https://gitlab.com/gitlab-org/gitlab/-/issues/196066) | +| `include_parent_milestones` | boolean | optional | Include milestones from parent group and its ancestors. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/196066) in GitLab 13.4 | ```shell curl --header "PRIVATE-TOKEN: " "https://gitlab.example.com/api/v4/groups/5/milestones" diff --git a/doc/api/group_relations_export.md b/doc/api/group_relations_export.md index 2f9c1e381df..4dbf0f6d54c 100644 --- a/doc/api/group_relations_export.md +++ b/doc/api/group_relations_export.md @@ -4,7 +4,7 @@ group: Import info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Group Relations Export API +# Group Relations Export API **(FREE)** > [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/59978) in GitLab 13.12. diff --git a/doc/api/group_wikis.md b/doc/api/group_wikis.md index e1470a2cdd7..17337934a92 100644 --- a/doc/api/group_wikis.md +++ b/doc/api/group_wikis.md @@ -7,7 +7,7 @@ type: reference, api # Group wikis API **(PREMIUM)** -> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/212199) in [GitLab Premium](https://about.gitlab.com/pricing/) 13.5. +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/212199) in GitLab 13.5. The [group wikis](../user/project/wiki/index.md#group-wikis) API is available only in APIv4. An API for [project wikis](wikis.md) is also available. diff --git a/doc/api/groups.md b/doc/api/groups.md index b1119c9d5a4..bd4c7de567c 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -4,7 +4,7 @@ group: Access info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments --- -# Groups API +# Groups API **(FREE)** ## List groups @@ -769,6 +769,10 @@ For GitLab 14.0 and later, the [limit cannot be disabled](https://gitlab.com/git ## New group +NOTE: +On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. You cannot +use the API to do this. + Creates a new project group. Available only for users who can create groups. ```plaintext @@ -800,10 +804,6 @@ Parameters: | `shared_runners_minutes_limit` | integer | no | **(PREMIUM SELF)** Pipeline minutes quota for this group (included in plan). Can be `nil` (default; inherit system default), `0` (unlimited) or `> 0` | | `extra_shared_runners_minutes_limit` | integer | no | **(PREMIUM SELF)** Extra pipeline minutes quota for this group (purchased in addition to the minutes included in the plan). | -NOTE: -On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. You cannot -use the API to do this. - ### Options for `default_branch_protection` The `default_branch_protection` attribute determines whether developers and maintainers can push to the applicable [default branch](../user/project/repository/branches/default.md), as described in the following table: @@ -1343,7 +1343,7 @@ DELETE /groups/:id/share/:group_id ## Push Rules **(PREMIUM)** -> Introduced in [GitLab](https://about.gitlab.com/pricing/) 13.4. +> Introduced in GitLab 13.4. ### Get group push rules **(PREMIUM)** @@ -1375,7 +1375,7 @@ GET /groups/:id/push_rule } ``` -Users on GitLab [Premium or higher](https://about.gitlab.com/pricing/) also see +Users on [GitLab Premium or higher](https://about.gitlab.com/pricing/) also see the `commit_committer_check` and `reject_unsigned_commits` parameters: ```json diff --git a/doc/ci/environments/environments_dashboard.md b/doc/ci/environments/environments_dashboard.md index ae459b9016c..8ff31827ae7 100644 --- a/doc/ci/environments/environments_dashboard.md +++ b/doc/ci/environments/environments_dashboard.md @@ -7,7 +7,7 @@ type: reference # Environments Dashboard **(PREMIUM)** -> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/3713) in [GitLab Premium](https://about.gitlab.com/pricing/) 12.5. +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/3713) in GitLab 12.5. The Environments Dashboard provides a cross-project environment-based view that lets you see the big picture diff --git a/doc/ci/environments/index.md b/doc/ci/environments/index.md index d9cf1b75d67..363006ec7b6 100644 --- a/doc/ci/environments/index.md +++ b/doc/ci/environments/index.md @@ -566,7 +566,7 @@ to get alerts when there are critical issues that need immediate attention. #### View the latest alerts for environments **(ULTIMATE)** -> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/214634) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 13.4. +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/214634) in GitLab 13.4. If you [set up alerts for Prometheus metrics](../../operations/metrics/alerts.md), alerts for environments are shown on the environments page. The alert with the highest @@ -582,7 +582,7 @@ deployment tab from the environment page and select which deployment to roll bac #### Auto Rollback **(ULTIMATE)** -> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/35404) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 13.7. +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/35404) in GitLab 13.7. In a typical Continuous Deployment workflow, the CI pipeline tests every commit before deploying to production. However, problematic code can still make it to production. For example, inefficient code @@ -682,9 +682,9 @@ fetch = +refs/environments/*:refs/remotes/origin/environments/* ### Scope environments with specs -> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/2112) in [GitLab Premium](https://about.gitlab.com/pricing/) 9.4. -> - [Environment scoping for CI/CD variables was moved to all tiers](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/30779) in GitLab 12.2. -> - [Environment scoping for Group CI/CD variables](https://gitlab.com/gitlab-org/gitlab/-/issues/2874) added to GitLab Premium in 13.11. +> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/2112) in GitLab Premium 9.4. +> - Environment scoping for CI/CD variables was [moved](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/30779) from GitLab Premium to GitLab Free in 12.2. +> - Environment scoping for Group CI/CD variables [added](https://gitlab.com/gitlab-org/gitlab/-/issues/2874) to GitLab Premium in 13.11. You can limit the environment scope of a CI/CD variable by defining which environments it can be available for. @@ -730,7 +730,7 @@ the `review/feature-1` spec takes precedence over `review/*` and `*` specs. ### Rename an environment -> Renaming environments through the UI [was removed in GitLab 14.3](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/68550). Renaming environments through the API was deprected and [will be removed in GitLab 15.0](https://gitlab.com/gitlab-org/gitlab/-/issues/338897). +> Renaming environments through the UI was [removed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/68550) in GitLab 14.3. Renaming environments through the API was deprected and [will be removed](https://gitlab.com/gitlab-org/gitlab/-/issues/338897) in GitLab 15.0. Renaming an environment through the UI is not possible. Instead, you need to delete the old environment and create a new one: diff --git a/doc/ci/environments/protected_environments.md b/doc/ci/environments/protected_environments.md index b7a651a330c..b31e51b35fc 100644 --- a/doc/ci/environments/protected_environments.md +++ b/doc/ci/environments/protected_environments.md @@ -7,7 +7,7 @@ type: concepts, howto # Protected environments **(PREMIUM)** -> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/6303) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.3. +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/6303) in GitLab 11.3. [Environments](../environments/index.md) can be used for different reasons: @@ -159,7 +159,7 @@ For more information, see [Deployment safety](deployment_safety.md). > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/215888) in GitLab 14.0. [Deployed behind the `group_level_protected_environments` flag](../../administration/feature_flags.md), disabled by default. > - [Feature flag `group_level_protected_environments`](https://gitlab.com/gitlab-org/gitlab/-/issues/331085) removed in GitLab 14.3. -> - [Generally available](https://gitlab.com/gitlab-org/gitlab/-/issues/331085) in GitLab 14.3. +> - [Generally Available](https://gitlab.com/gitlab-org/gitlab/-/issues/331085) on GitLab and on GitLab.com in 14.3. Typically, large enterprise organizations have an explicit permission boundary between [developers and operators](https://about.gitlab.com/topics/devops/). diff --git a/doc/user/admin_area/settings/package_registry_rate_limits.md b/doc/user/admin_area/settings/package_registry_rate_limits.md index 6e7b9b0da30..1aeb011d880 100644 --- a/doc/user/admin_area/settings/package_registry_rate_limits.md +++ b/doc/user/admin_area/settings/package_registry_rate_limits.md @@ -7,28 +7,47 @@ type: reference # Package Registry Rate Limits **(FREE SELF)** -Rate limiting is a common technique used to improve the security and durability of a web -application. For more details, see [Rate limits](../../../security/rate_limits.md). General user and -IP rate limits can be enforced from the top bar at -**Menu > Admin > Settings > Network > User and IP rate limits**. -For more details, see [User and IP rate limits](user_and_ip_rate_limits.md). - With the [GitLab Package Registry](../../packages/package_registry/index.md), you can use GitLab as a private or public registry for a variety of common package managers. You can publish and share packages, which others can consume as a dependency in downstream projects through the [Packages API](../../../api/packages.md). -When downloading such dependencies in downstream projects, many requests are made through the -Packages API. You may therefore reach enforced user and IP rate limits. To address this issue, you -can define specific rate limits for the Packages API in -**Menu > Admin > Settings > Network > Package Registry Rate Limits**: +If downstream projects frequently download such dependencies, many requests are made through the +Packages API. You may therefore reach enforced [user and IP rate limits](user_and_ip_rate_limits.md). +To address this issue, you can define specific rate limits for the Packages API: -- Unauthenticated Packages API requests -- Authenticated Packages API requests +- [Unauthenticated requests (per IP)](#enable-unauthenticated-request-rate-limit-for-packages-api). +- [Authenticated API requests (per user)](#enable-authenticated-api-request-rate-limit-for-packages-api). -These limits are disabled by default. When enabled, they supersede the general user and IP rate -limits for requests to the Packages API. You can therefore keep the general user and IP rate limits, -and increase (if necessary) the rate limits for the Packages API. +These limits are disabled by default. -Besides this precedence, there are no differences in functionality compared to the general user and -IP rate limits. For more details, see [User and IP rate limits](user_and_ip_rate_limits.md). +When enabled, they supersede the general user and IP rate limits for requests to +the Packages API. You can therefore keep the general user and IP rate limits, and +increase the rate limits for the Packages API. Besides this precedence, there is +no difference in functionality compared to the general user and IP rate limits. + +## Enable unauthenticated request rate limit for packages API + +To enable the unauthenticated request rate limit: + +1. On the top bar, select **Menu > Admin**. +1. On the left sidebar, select **Settings > Network**, and expand **Package registry rate limits**. +1. Select **Enable unauthenticated request rate limit**. + + - Optional. Update the **Maximum unauthenticated requests per rate limit period per IP** value. + Defaults to `800`. + - Optional. Update the **Unauthenticated rate limit period in seconds** value. + Defaults to `15`. + +## Enable authenticated API request rate limit for packages API + +To enable the authenticated API request rate limit: + +1. On the top bar, select **Menu > Admin**. +1. On the left sidebar, select **Settings > Network**, and expand **Package registry rate limits**. +1. Select **Enable authenticated API request rate limit**. + + - Optional. Update the **Maximum authenticated API requests per rate limit period per user** value. + Defaults to `1000`. + - Optional. Update the **Authenticated API rate limit period in seconds** value. + Defaults to `15`. diff --git a/doc/user/application_security/dast/index.md b/doc/user/application_security/dast/index.md index 15cd6e4a75f..5c409233e5f 100644 --- a/doc/user/application_security/dast/index.md +++ b/doc/user/application_security/dast/index.md @@ -1145,6 +1145,21 @@ The site is validated and an active scan can run against it. If a validated site profile's target URL is edited, the site's validation status is revoked. +#### Retry a failed validation + +> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/322609) in GitLab 14.3. + +FLAG: +On self-managed GitLab, by default this feature is available. To hide the feature, ask an +administrator to [disable the `dast_failed_site_validations` flag](../../../administration/feature_flags.md). + +If a site profile's validation fails, you can retry it by selecting the **Retry validation** button +in the profiles list. + +When loading the DAST profiles library, past failed validations are listed above the profiles +list. You can also retry the validation from there by selecting the **Retry validation** link in +the alert. You can also dismiss the alert to revoke failed validations. + #### Revoke a site profile's validation status Note that all site profiles with the same URL have their validation status revoked. diff --git a/doc/user/infrastructure/clusters/connect/index.md b/doc/user/infrastructure/clusters/connect/index.md new file mode 100644 index 00000000000..ada278292a9 --- /dev/null +++ b/doc/user/infrastructure/clusters/connect/index.md @@ -0,0 +1,126 @@ +--- +stage: Configure +group: Configure +info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments +--- + +# Connect a cluster to GitLab **(FREE)** + +You can create new or connect existing clusters to GitLab through different [levels](#cluster-levels), +using different [methods](#methods-to-connect-a-cluster-to-gitlab). + +Before getting started: + +1. Check the [supported Kubernetes cluster versions](#supported-cluster-versions). +1. Define the [cluster level](#cluster-levels) according to your case. + +After that: + +1. Choose the [method](#methods-to-connect-a-cluster-to-gitlab) +to connect your cluster according to your case. +1. [View your clusters](#view-your-clusters) connected to GitLab. + +## Methods to connect a cluster to GitLab + +GitLab offers three methods to connect existing and create new clusters: + +- **GitLab Kubernetes Agent**: the best solution to +[connect existing clusters](#connect-existing-clusters-to-gitlab). +- **Infrastructure as Code**: it's a broader infrastructure management +toolset that includes managing your cluster. It's the recommended +solution to [create a new cluster](#create-new-clusters-from-gitlab) +from GitLab. +- **Certificate-based method**: our first and legacy solution uses +cluster certificates to connect your cluster to GitLab. It is no longer +recommended for [security implications](#security-implications-for-clusters-connected-with-certificates). + +### Connect existing clusters to GitLab + +To safely connect and configure an existing cluster on the **project level**, +we **recommend** using the [GitLab Kubernetes Agent](../../../clusters/agent/index.md). +We are working to support [the Agent for connecting a cluster at the group level](https://gitlab.com/groups/gitlab-org/-/epics/5784). + +Alternatively, you can use [cluster certificates](../../../project/clusters/add_existing_cluster.md) +to connect clusters in all levels (projects, group, instance). However, +for [security implications](#security-implications-for-clusters-connected-with-certificates), +we don't recommend using this method. + +### Create new clusters from GitLab + +To safely create new clusters from GitLab, use +[Infrastructure as Code](../../iac/index.md#create-a-new-cluster-through-iac). + +The [certificate-based method to create a new cluster](../../../project/clusters/add_remove_clusters.md) +is still available through the GitLab UI but was **deprecated** in GitLab 14.0. +If possible, we don't recommend using this method. + +### Connect multiple clusters to a single project + +To connect multiple clusters to a single project in GitLab, +we **recommend** using the [GitLab Kubernetes Agent](../../../clusters/agent/index.md). + +You can also use the [certificate-based method](../../../project/clusters/multiple_kubernetes_clusters.md), +but, for [security implications](#security-implications-for-clusters-connected-with-certificates), +we don't recommend using this method. + +## Cluster levels + +Choose your cluster's level according to its purpose: + +| Level | Purpose | +|--|--| +| [Project level](../../../project/clusters/index.md) | Use your cluster for a single project. | +| [Group level](../../../group/clusters/index.md) | Use the same cluster across multiple projects within your group. | +| [Instance level](../../../instance/clusters/index.md) **(FREE SELF)** | Use the same cluster across groups and projects within your instance. | + +## Supported cluster versions + +GitLab is committed to support at least two production-ready Kubernetes minor +versions at any given time. We regularly review the versions we support, and +provide a three-month deprecation period before we remove support of a specific +version. The range of supported versions is based on the evaluation of: + +- The versions supported by major managed Kubernetes providers. +- The versions [supported by the Kubernetes community](https://kubernetes.io/releases/version-skew-policy/#supported-versions). + +GitLab supports the following Kubernetes versions, and you can upgrade your +Kubernetes version to any supported version at any time: + +- 1.19 (support ends on February 22, 2022) +- 1.18 (support ends on November 22, 2021) +- 1.17 (support ends on September 22, 2021) + +Some GitLab features may support versions outside the range provided here. + +## View your clusters + +To view the Kubernetes clusters connected to your project, +group, or instance, open the cluster's page according to the +[level](#cluster-levels) of your cluster. + +**Project-level clusters:** + +1. Go to your project's homepage. +1. On the left sidebar, select **Infrastructure > Kubernetes clusters**. + +**Group-level clusters:** + +1. Go to your group's homepage. +1. On the left sidebar, select **Kubernetes**. + +**Instance-level clusters:** **(FREE SELF)** + +1. On the top bar, select **Menu > Admin**. +1. On the left sidebar, select **Kubernetes**. + +## Security implications for clusters connected with certificates + +WARNING: +The whole cluster security is based on a model where [developers](../../../permissions.md) +are trusted, so **only trusted users should be allowed to control your clusters**. + +The use of cluster certificates to connect your cluster grants +access to a wide set of functionalities needed to successfully +build and deploy a containerized application. Bear in mind that +the same credentials are used for all the applications running +on the cluster. diff --git a/doc/user/project/clusters/add_eks_clusters.md b/doc/user/project/clusters/add_eks_clusters.md index 8b171a4b04b..e92a6d6a162 100644 --- a/doc/user/project/clusters/add_eks_clusters.md +++ b/doc/user/project/clusters/add_eks_clusters.md @@ -166,7 +166,7 @@ When you create a new cluster, you have the following settings: | Kubernetes cluster name | Your cluster's name. | | Environment scope | The [associated environment](multiple_kubernetes_clusters.md#setting-the-environment-scope). | | Service role | The **EKS IAM role** (**role A**). | -| Kubernetes version | The [Kubernetes version](index.md#supported-cluster-versions) for your cluster. | +| Kubernetes version | The [Kubernetes version](../../infrastructure/clusters/connect/index.md#supported-cluster-versions) for your cluster. | | Key pair name | The [key pair](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) that you can use to connect to your worker nodes. | | VPC | The [VPC](https://docs.aws.amazon.com/vpc/latest/userguide/what-is-amazon-vpc.html) to use for your EKS Cluster resources. | | Subnets | The [subnets](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html) in your VPC where your worker nodes run. Two are required. | diff --git a/doc/user/project/clusters/add_existing_cluster.md b/doc/user/project/clusters/add_existing_cluster.md index 16f66081e99..505c493de4e 100644 --- a/doc/user/project/clusters/add_existing_cluster.md +++ b/doc/user/project/clusters/add_existing_cluster.md @@ -217,7 +217,8 @@ integration to work properly. WARNING: Disabling RBAC means that any application running in the cluster, or user who can authenticate to the cluster, has full API access. This is a -[security concern](index.md#security-implications), and may not be desirable. +[security concern](../../infrastructure/clusters/connect/index.md#security-implications-for-clusters-connected-with-certificates), +and may not be desirable. To effectively disable RBAC, global permissions can be applied granting full access: diff --git a/doc/user/project/clusters/add_remove_clusters.md b/doc/user/project/clusters/add_remove_clusters.md index a7f010b7852..0484121db62 100644 --- a/doc/user/project/clusters/add_remove_clusters.md +++ b/doc/user/project/clusters/add_remove_clusters.md @@ -54,7 +54,7 @@ As of GitLab 14.0, use the [GitLab Kubernetes Agent](../../clusters/agent/index. to connect your cluster to GitLab. Alternativelly, you can [add an existing cluster](add_existing_cluster.md) -through the certificate-based method, but we don't recommend using this method for [security implications](index.md#security-implications). +through the certificate-based method, but we don't recommend using this method for [security implications](../../infrastructure/clusters/connect/index.md#security-implications-for-clusters-connected-with-certificates). ## Configure your cluster diff --git a/doc/user/project/clusters/index.md b/doc/user/project/clusters/index.md index a5ac41b3837..791dc90cad5 100644 --- a/doc/user/project/clusters/index.md +++ b/doc/user/project/clusters/index.md @@ -33,75 +33,11 @@ features such as: ## Supported cluster versions -GitLab is committed to support at least two production-ready Kubernetes minor -versions at any given time. We regularly review the versions we support, and -provide a three-month deprecation period before we remove support of a specific -version. The range of supported versions is based on the evaluation of: +See the [Kubernetes clusters versions supported by GitLab](../../infrastructure/clusters/connect/index.md#supported-cluster-versions). -- The versions supported by major managed Kubernetes providers. -- The versions [supported by the Kubernetes community](https://kubernetes.io/releases/version-skew-policy/#supported-versions). +## Connect your cluster to GitLab -GitLab supports the following Kubernetes versions, and you can upgrade your -Kubernetes version to any supported version at any time: - -- 1.20 (support ends on April 22, 2022) -- 1.19 (support ends on February 22, 2022) -- 1.18 (support ends on November 22, 2021) -- 1.17 (support ends on September 22, 2021) - -Some GitLab features may support versions outside the range provided here. - -## Add and remove clusters - -You can create new or add existing clusters to GitLab through different [levels](#cluster-levels), -using different methods. - -### Methods to connect existing clusters - -To safely connect and configure an existing cluster on the **project level**, we -**recommend** using the [GitLab Kubernetes Agent](../../clusters/agent/index.md). -We are working to support [the Agent for connecting a -cluster at the group level](https://gitlab.com/groups/gitlab-org/-/epics/5784). - -You can use [cluster certificates](add_existing_cluster.md) to connect -clusters in all levels (projects, group, instance). However, for -[security implications](#security-implications), this method is no longer recommended. - -To create new clusters, we **recommend** using -[Infrastructure as Code](../../infrastructure/iac/index.md#create-a-new-cluster-through-iac). - -### Cluster levels - -You can connect clusters to GitLab in different levels, according to their purpose: - -- On the project level, to have a cluster dedicated to a project. -- On the [group level](../../group/clusters/index.md), to use the same cluster across multiple projects within your group. -- On the [instance level](../../instance/clusters/index.md), to use the same cluster across multiple groups and projects. **(FREE SELF)** - -## Security implications - -WARNING: -The whole cluster security is based on a model where [developers](../../permissions.md) -are trusted, so **only trusted users should be allowed to control your clusters**. - -The default cluster configuration grants access to a wide set of -functionalities needed to successfully build and deploy a containerized -application. Bear in mind that the same credentials are used for all the -applications running on the cluster. - -## View your clusters - -To view your project-level Kubernetes clusters, to go **Infrastructure > Kubernetes clusters** -from your project. On this page, you can add a new cluster -and view information about your existing clusters, such as: - -- Nodes count. -- Rough estimates of memory and CPU usage. - -## Multiple Kubernetes clusters - -See how to associate [multiple Kubernetes clusters](multiple_kubernetes_clusters.md) -with your GitLab project. +Learn how to [create new and connect existing clusters to GitLab](../../infrastructure/clusters/connect/index.md). ## Cluster integrations diff --git a/lib/api/entities/global_notification_setting.rb b/lib/api/entities/global_notification_setting.rb index f3ca64347f0..f35efad5d01 100644 --- a/lib/api/entities/global_notification_setting.rb +++ b/lib/api/entities/global_notification_setting.rb @@ -4,7 +4,7 @@ module API module Entities class GlobalNotificationSetting < Entities::NotificationSetting expose :notification_email do |notification_setting, options| - notification_setting.user.notification_email + notification_setting.user.notification_email_or_default end end end diff --git a/lib/api/entities/user_public.rb b/lib/api/entities/user_public.rb index 78f088d3c1a..5d0e464abe1 100644 --- a/lib/api/entities/user_public.rb +++ b/lib/api/entities/user_public.rb @@ -14,7 +14,7 @@ module API expose :two_factor_enabled?, as: :two_factor_enabled expose :external expose :private_profile - expose :commit_email + expose :commit_email_or_default, as: :commit_email end end end diff --git a/lib/api/merge_requests.rb b/lib/api/merge_requests.rb index d08d7aecf0f..34af9eab511 100644 --- a/lib/api/merge_requests.rb +++ b/lib/api/merge_requests.rb @@ -202,7 +202,7 @@ module API options[:project] = user_project if Feature.enabled?(:api_caching_merge_requests, user_project, type: :development, default_enabled: :yaml) - present_cached merge_requests, expires_in: 25.hours, **options + present_cached merge_requests, expires_in: 2.days, **options else present merge_requests, options end diff --git a/lib/gitlab/background_migration/mailers/unconfirm_mailer.rb b/lib/gitlab/background_migration/mailers/unconfirm_mailer.rb index c096dae0631..3605b157f4f 100644 --- a/lib/gitlab/background_migration/mailers/unconfirm_mailer.rb +++ b/lib/gitlab/background_migration/mailers/unconfirm_mailer.rb @@ -14,7 +14,7 @@ module Gitlab mail( template_path: 'unconfirm_mailer', template_name: 'unconfirm_notification_email', - to: @user.notification_email, + to: @user.notification_email_or_default, subject: subject('GitLab email verification request') ) end diff --git a/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml b/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml index 5c466f0984c..72b986099aa 100644 --- a/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Jobs/Deploy.gitlab-ci.yml @@ -96,6 +96,8 @@ canary: name: production url: http://$CI_PROJECT_PATH_SLUG.$KUBE_INGRESS_BASE_DOMAIN rules: + - if: '$CI_DEPLOY_FREEZE != null' + when: never - if: '$CI_KUBERNETES_ACTIVE == null || $CI_KUBERNETES_ACTIVE == ""' when: never - if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH' @@ -125,6 +127,8 @@ canary: production: <<: *production_template rules: + - if: '$CI_DEPLOY_FREEZE != null' + when: never - if: '$CI_KUBERNETES_ACTIVE == null || $CI_KUBERNETES_ACTIVE == ""' when: never - if: '$STAGING_ENABLED' @@ -141,6 +145,8 @@ production_manual: <<: *production_template allow_failure: false rules: + - if: '$CI_DEPLOY_FREEZE != null' + when: never - if: '$CI_KUBERNETES_ACTIVE == null || $CI_KUBERNETES_ACTIVE == ""' when: never - if: '$INCREMENTAL_ROLLOUT_ENABLED' @@ -177,6 +183,8 @@ production_manual: resource_group: production allow_failure: true rules: + - if: '$CI_DEPLOY_FREEZE != null' + when: never - if: '$CI_KUBERNETES_ACTIVE == null || $CI_KUBERNETES_ACTIVE == ""' when: never - if: '$INCREMENTAL_ROLLOUT_MODE == "timed"' @@ -190,6 +198,8 @@ production_manual: .timed_rollout_template: &timed_rollout_template <<: *rollout_template rules: + - if: '$CI_DEPLOY_FREEZE != null' + when: never - if: '$CI_KUBERNETES_ACTIVE == null || $CI_KUBERNETES_ACTIVE == ""' when: never - if: '$INCREMENTAL_ROLLOUT_MODE == "manual"' diff --git a/lib/gitlab/database/partitioning/monthly_strategy.rb b/lib/gitlab/database/partitioning/monthly_strategy.rb index 7992c2fdaa7..4cdde5bf2f1 100644 --- a/lib/gitlab/database/partitioning/monthly_strategy.rb +++ b/lib/gitlab/database/partitioning/monthly_strategy.rb @@ -4,17 +4,18 @@ module Gitlab module Database module Partitioning class MonthlyStrategy - attr_reader :model, :partitioning_key, :retain_for + attr_reader :model, :partitioning_key, :retain_for, :retain_non_empty_partitions # We create this many partitions in the future HEADROOM = 6.months delegate :table_name, to: :model - def initialize(model, partitioning_key, retain_for: nil) + def initialize(model, partitioning_key, retain_for: nil, retain_non_empty_partitions: false) @model = model @partitioning_key = partitioning_key @retain_for = retain_for + @retain_non_empty_partitions = retain_non_empty_partitions end def current_partitions @@ -29,7 +30,10 @@ module Gitlab end def extra_partitions - current_partitions - desired_partitions + partitions = current_partitions - desired_partitions + partitions.reject!(&:holds_data?) if retain_non_empty_partitions + + partitions end private diff --git a/lib/gitlab/database/partitioning/time_partition.rb b/lib/gitlab/database/partitioning/time_partition.rb index 1221f042530..e09ca483549 100644 --- a/lib/gitlab/database/partitioning/time_partition.rb +++ b/lib/gitlab/database/partitioning/time_partition.rb @@ -69,6 +69,10 @@ module Gitlab partition_name <=> other.partition_name end + def holds_data? + conn.execute("SELECT 1 FROM #{fully_qualified_partition} LIMIT 1").ntuples > 0 + end + private def date_or_nil(obj) diff --git a/lib/gitlab/git/user.rb b/lib/gitlab/git/user.rb index 05ae3391040..0798cc51055 100644 --- a/lib/gitlab/git/user.rb +++ b/lib/gitlab/git/user.rb @@ -6,7 +6,7 @@ module Gitlab attr_reader :username, :name, :email, :gl_id, :timezone def self.from_gitlab(gitlab_user) - new(gitlab_user.username, gitlab_user.name, gitlab_user.commit_email, Gitlab::GlId.gl_id(gitlab_user), gitlab_user.timezone) + new(gitlab_user.username, gitlab_user.name, gitlab_user.commit_email_or_default, Gitlab::GlId.gl_id(gitlab_user), gitlab_user.timezone) end def self.from_gitaly(gitaly_user) diff --git a/locale/gitlab.pot b/locale/gitlab.pot index 5d32091cd54..f3d89f0d39d 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -8544,9 +8544,6 @@ msgstr "" msgid "Configure specific limits for Git LFS requests that supersede the general user and IP rate limits." msgstr "" -msgid "Configure specific limits for Packages API requests that supersede the general user and IP rate limits." -msgstr "" - msgid "Configure the %{link} integration." msgstr "" @@ -20777,6 +20774,9 @@ msgstr "" msgid "Maximum attachment size (MB)" msgstr "" +msgid "Maximum authenticated API requests per rate limit period per user" +msgstr "" + msgid "Maximum bulk request size (MiB)" msgstr "" @@ -20927,6 +20927,9 @@ msgstr "" msgid "Maximum time that users are allowed to skip the setup of two-factor authentication (in hours). Set to 0 (zero) to enforce at next sign in." msgstr "" +msgid "Maximum unauthenticated API requests per rate limit period per IP" +msgstr "" + msgid "May" msgstr "" @@ -23821,9 +23824,6 @@ msgstr "" msgid "Package Registry" msgstr "" -msgid "Package Registry Rate Limits" -msgstr "" - msgid "Package Registry: authenticated API requests" msgstr "" @@ -23842,6 +23842,9 @@ msgstr "" msgid "Package recipe already exists" msgstr "" +msgid "Package registry rate limits" +msgstr "" + msgid "Package type" msgstr "" @@ -30751,6 +30754,9 @@ msgstr "" msgid "Set projects and maximum size limits, session duration, user options, and check feature availability for namespace plan." msgstr "" +msgid "Set rate limits for package registry API requests that supersede the general user and IP rate limits." +msgstr "" + msgid "Set severity" msgstr "" @@ -33674,6 +33680,9 @@ msgstr "" msgid "The number of times an upload record could not find its file" msgstr "" +msgid "The package registry rate limits can help reduce request volume (like from crawlers or abusive bots)." +msgstr "" + msgid "The page could not be displayed because it timed out." msgstr "" @@ -39780,7 +39789,7 @@ msgstr "" msgid "encrypted: needs to be a :required, :optional or :migrating!" msgstr "" -msgid "ending with MIME type format is not allowed." +msgid "ending with a file extension is not allowed." msgstr "" msgid "entries cannot be larger than 255 characters" diff --git a/spec/controllers/admin/users_controller_spec.rb b/spec/controllers/admin/users_controller_spec.rb index 2d5125c9d5e..015c36c9335 100644 --- a/spec/controllers/admin/users_controller_spec.rb +++ b/spec/controllers/admin/users_controller_spec.rb @@ -146,7 +146,7 @@ RSpec.describe Admin::UsersController do it 'sends the user a rejection email' do expect_next_instance_of(NotificationService) do |notification| - allow(notification).to receive(:user_admin_rejection).with(user.name, user.notification_email) + allow(notification).to receive(:user_admin_rejection).with(user.name, user.notification_email_or_default) end subject diff --git a/spec/factories/namespaces/project_namespaces.rb b/spec/factories/namespaces/project_namespaces.rb new file mode 100644 index 00000000000..97c03ca8b8a --- /dev/null +++ b/spec/factories/namespaces/project_namespaces.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :project_namespace, class: 'Namespaces::ProjectNamespace' do + project + name { project.name } + path { project.path } + type { Namespaces::ProjectNamespace.sti_name } + owner { nil } + end +end diff --git a/spec/factories_spec.rb b/spec/factories_spec.rb index 2b308c9080e..6c7c3776c4a 100644 --- a/spec/factories_spec.rb +++ b/spec/factories_spec.rb @@ -74,6 +74,7 @@ RSpec.describe 'factories' do milestone_release namespace project_broken_repo + project_namespace project_repository prometheus_alert prometheus_alert_event diff --git a/spec/features/groups/members/request_access_spec.rb b/spec/features/groups/members/request_access_spec.rb index 827962fee61..f806c7d3704 100644 --- a/spec/features/groups/members/request_access_spec.rb +++ b/spec/features/groups/members/request_access_spec.rb @@ -24,7 +24,7 @@ RSpec.describe 'Groups > Members > Request access' do it 'user can request access to a group' do perform_enqueued_jobs { click_link 'Request Access' } - expect(ActionMailer::Base.deliveries.last.to).to eq [owner.notification_email] + expect(ActionMailer::Base.deliveries.last.to).to eq [owner.notification_email_or_default] expect(ActionMailer::Base.deliveries.last.subject).to match "Request to join the #{group.name} group" expect(group.requesters.exists?(user_id: user)).to be_truthy diff --git a/spec/features/issues/csv_spec.rb b/spec/features/issues/csv_spec.rb index 51e0d54ca5e..b4c737495b4 100644 --- a/spec/features/issues/csv_spec.rb +++ b/spec/features/issues/csv_spec.rb @@ -44,7 +44,7 @@ RSpec.describe 'Issues csv', :js do request_csv expect(page).to have_content 'CSV export has started' - expect(page).to have_content "emailed to #{user.notification_email}" + expect(page).to have_content "emailed to #{user.notification_email_or_default}" end it 'includes a csv attachment', :sidekiq_might_not_need_inline do diff --git a/spec/features/projects/members/user_requests_access_spec.rb b/spec/features/projects/members/user_requests_access_spec.rb index 94543290050..113ba692497 100644 --- a/spec/features/projects/members/user_requests_access_spec.rb +++ b/spec/features/projects/members/user_requests_access_spec.rb @@ -23,7 +23,7 @@ RSpec.describe 'Projects > Members > User requests access', :js do it 'user can request access to a project' do perform_enqueued_jobs { click_link 'Request Access' } - expect(ActionMailer::Base.deliveries.last.to).to eq [maintainer.notification_email] + expect(ActionMailer::Base.deliveries.last.to).to eq [maintainer.notification_email_or_default] expect(ActionMailer::Base.deliveries.last.subject).to eq "Request to join the #{project.full_name} project" expect(project.requesters.exists?(user_id: user)).to be_truthy diff --git a/spec/frontend/pages/projects/pipeline_schedules/shared/components/interval_pattern_input_spec.js b/spec/frontend/pages/projects/pipeline_schedules/shared/components/interval_pattern_input_spec.js index de0d70a07d7..f3d76ca2c1b 100644 --- a/spec/frontend/pages/projects/pipeline_schedules/shared/components/interval_pattern_input_spec.js +++ b/spec/frontend/pages/projects/pipeline_schedules/shared/components/interval_pattern_input_spec.js @@ -42,11 +42,6 @@ describe('Interval Pattern Input Component', () => { wrapper = mount(IntervalPatternInput, { propsData: { ...props }, - provide: { - glFeatures: { - ciDailyLimitForPipelineSchedules: true, - }, - }, data() { return { randomHour: data?.hour || mockHour, diff --git a/spec/helpers/issues_helper_spec.rb b/spec/helpers/issues_helper_spec.rb index 261037ccceb..f5f26d306fb 100644 --- a/spec/helpers/issues_helper_spec.rb +++ b/spec/helpers/issues_helper_spec.rb @@ -310,7 +310,7 @@ RSpec.describe IssuesHelper do can_bulk_update: 'true', can_edit: 'true', can_import_issues: 'true', - email: current_user&.notification_email, + email: current_user&.notification_email_or_default, emails_help_page_path: help_page_path('development/emails', anchor: 'email-namespace'), empty_state_svg_path: '#', export_csv_path: export_csv_project_issues_path(project), diff --git a/spec/lib/gitlab/database/partitioning/monthly_strategy_spec.rb b/spec/lib/gitlab/database/partitioning/monthly_strategy_spec.rb index c4fbf53d1c2..27ada12b067 100644 --- a/spec/lib/gitlab/database/partitioning/monthly_strategy_spec.rb +++ b/spec/lib/gitlab/database/partitioning/monthly_strategy_spec.rb @@ -3,6 +3,8 @@ require 'spec_helper' RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do + let(:connection) { ActiveRecord::Base.connection } + describe '#current_partitions' do subject { described_class.new(model, partitioning_key).current_partitions } @@ -11,7 +13,7 @@ RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do let(:table_name) { :partitioned_test } before do - ActiveRecord::Base.connection.execute(<<~SQL) + connection.execute(<<~SQL) CREATE TABLE #{table_name} (id serial not null, created_at timestamptz not null, PRIMARY KEY (id, created_at)) PARTITION BY RANGE (created_at); @@ -52,7 +54,7 @@ RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do context 'with existing partitions' do before do - ActiveRecord::Base.connection.execute(<<~SQL) + connection.execute(<<~SQL) CREATE TABLE #{model.table_name} (id serial not null, created_at timestamptz not null, PRIMARY KEY (id, created_at)) PARTITION BY RANGE (created_at); @@ -113,7 +115,7 @@ RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do context 'without existing partitions' do before do - ActiveRecord::Base.connection.execute(<<~SQL) + connection.execute(<<~SQL) CREATE TABLE #{model.table_name} (id serial not null, created_at timestamptz not null, PRIMARY KEY (id, created_at)) PARTITION BY RANGE (created_at); @@ -159,7 +161,7 @@ RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do context 'with a regular partition but no catchall (MINVALUE, to) partition' do before do - ActiveRecord::Base.connection.execute(<<~SQL) + connection.execute(<<~SQL) CREATE TABLE #{model.table_name} (id serial not null, created_at timestamptz not null, PRIMARY KEY (id, created_at)) PARTITION BY RANGE (created_at); @@ -248,6 +250,25 @@ RSpec.describe Gitlab::Database::Partitioning::MonthlyStrategy do Gitlab::Database::Partitioning::TimePartition.new(model.table_name, '2020-05-01', '2020-06-01', partition_name: 'partitioned_test_202005') ) end + + context 'when the retain_non_empty_partitions is true' do + subject { described_class.new(model, partitioning_key, retain_for: 2.months, retain_non_empty_partitions: true).extra_partitions } + + it 'prunes empty partitions' do + expect(subject).to contain_exactly( + Gitlab::Database::Partitioning::TimePartition.new(model.table_name, nil, '2020-05-01', partition_name: 'partitioned_test_000000'), + Gitlab::Database::Partitioning::TimePartition.new(model.table_name, '2020-05-01', '2020-06-01', partition_name: 'partitioned_test_202005') + ) + end + + it 'does not prune non-empty partitions' do + connection.execute("INSERT INTO #{table_name} (created_at) VALUES (('2020-05-15'))") # inserting one record into partitioned_test_202005 + + expect(subject).to contain_exactly( + Gitlab::Database::Partitioning::TimePartition.new(model.table_name, nil, '2020-05-01', partition_name: 'partitioned_test_000000') + ) + end + end end end end diff --git a/spec/mailers/emails/in_product_marketing_spec.rb b/spec/mailers/emails/in_product_marketing_spec.rb index 74354630ade..99beef92dea 100644 --- a/spec/mailers/emails/in_product_marketing_spec.rb +++ b/spec/mailers/emails/in_product_marketing_spec.rb @@ -23,7 +23,7 @@ RSpec.describe Emails::InProductMarketing do it 'sends to the right user with a link to unsubscribe' do aggregate_failures do - expect(subject).to deliver_to(user.notification_email) + expect(subject).to deliver_to(user.notification_email_or_default) expect(subject).to have_body_text(profile_notifications_url) end end diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb index dd1b08b506f..f39037cf744 100644 --- a/spec/mailers/notify_spec.rb +++ b/spec/mailers/notify_spec.rb @@ -71,7 +71,7 @@ RSpec.describe Notify do it 'is sent to the assignee as the author' do aggregate_failures do expect_sender(current_user) - expect(subject).to deliver_to(recipient.notification_email) + expect(subject).to deliver_to(recipient.notification_email_or_default) end end end @@ -710,7 +710,7 @@ RSpec.describe Notify do it 'contains all the useful information' do to_emails = subject.header[:to].addrs.map(&:address) - expect(to_emails).to eq([recipient.notification_email]) + expect(to_emails).to eq([recipient.notification_email_or_default]) is_expected.to have_subject "Request to join the #{project.full_name} project" is_expected.to have_body_text project.full_name @@ -1047,7 +1047,7 @@ RSpec.describe Notify do it 'is sent to the given recipient as the author' do aggregate_failures do expect_sender(note_author) - expect(subject).to deliver_to(recipient.notification_email) + expect(subject).to deliver_to(recipient.notification_email_or_default) end end @@ -1204,7 +1204,7 @@ RSpec.describe Notify do it 'is sent to the given recipient as the author' do aggregate_failures do expect_sender(note_author) - expect(subject).to deliver_to(recipient.notification_email) + expect(subject).to deliver_to(recipient.notification_email_or_default) end end @@ -1341,7 +1341,7 @@ RSpec.describe Notify do it 'contains all the useful information' do to_emails = subject.header[:to].addrs.map(&:address) - expect(to_emails).to eq([recipient.notification_email]) + expect(to_emails).to eq([recipient.notification_email_or_default]) is_expected.to have_subject "Request to join the #{group.name} group" is_expected.to have_body_text group.name diff --git a/spec/models/ci/pending_build_spec.rb b/spec/models/ci/pending_build_spec.rb index 65c702941fe..3486db5d752 100644 --- a/spec/models/ci/pending_build_spec.rb +++ b/spec/models/ci/pending_build_spec.rb @@ -58,7 +58,11 @@ RSpec.describe Ci::PendingBuild do end end - context 'when project does not have shared runner' do + context 'when project does not have shared runners enabled' do + before do + project.shared_runners_enabled = false + end + it 'sets instance_runners_enabled to false' do described_class.upsert_from_build!(build) @@ -69,6 +73,10 @@ RSpec.describe Ci::PendingBuild do context 'when project has shared runner' do let_it_be(:runner) { create(:ci_runner, :instance) } + before do + project.shared_runners_enabled = true + end + context 'when ci_pending_builds_maintain_shared_runners_data is enabled' do it 'sets instance_runners_enabled to true' do described_class.upsert_from_build!(build) @@ -139,5 +147,39 @@ RSpec.describe Ci::PendingBuild do end end end + + context 'when a build project is nested in a subgroup' do + let(:group) { create(:group, :with_hierarchy, depth: 2, children: 1) } + let(:project) { create(:project, namespace: group.descendants.first) } + let(:pipeline) { create(:ci_pipeline, project: project) } + let(:build) { create(:ci_build, :created, pipeline: pipeline) } + + subject { described_class.last } + + context 'when build can be picked by a group runner' do + before do + project.group_runners_enabled = true + end + + it 'denormalizes namespace traversal ids' do + described_class.upsert_from_build!(build) + + expect(subject.namespace_traversal_ids).not_to be_empty + expect(subject.namespace_traversal_ids).to eq [group.id, project.namespace.id] + end + end + + context 'when build can not be picked by a group runner' do + before do + project.group_runners_enabled = false + end + + it 'creates an empty namespace traversal ids array' do + described_class.upsert_from_build!(build) + + expect(subject.namespace_traversal_ids).to be_empty + end + end + end end end diff --git a/spec/models/ci/pipeline_schedule_spec.rb b/spec/models/ci/pipeline_schedule_spec.rb index 8de3ebb18b9..c7e1fe91b1e 100644 --- a/spec/models/ci/pipeline_schedule_spec.rb +++ b/spec/models/ci/pipeline_schedule_spec.rb @@ -107,31 +107,24 @@ RSpec.describe Ci::PipelineSchedule do describe '#set_next_run_at' do using RSpec::Parameterized::TableSyntax - where(:worker_cron, :schedule_cron, :plan_limit, :ff_enabled, :now, :result) do - '0 1 2 3 *' | '0 1 * * *' | nil | true | Time.zone.local(2021, 3, 2, 1, 0) | Time.zone.local(2022, 3, 2, 1, 0) - '0 1 2 3 *' | '0 1 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 3, 2, 1, 0) | Time.zone.local(2022, 3, 2, 1, 0) - '0 1 2 3 *' | '0 1 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | false | Time.zone.local(2021, 3, 2, 1, 0) | Time.zone.local(2022, 3, 2, 1, 0) - '*/5 * * * *' | '*/1 * * * *' | nil | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 5) - '*/5 * * * *' | '*/1 * * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) - '*/5 * * * *' | '*/1 * * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | false | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 5) - '*/5 * * * *' | '*/1 * * * *' | (1.day.in_minutes / 10).to_i | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 10) - '*/5 * * * *' | '*/1 * * * *' | 200 | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 10) - '*/5 * * * *' | '*/1 * * * *' | 200 | false | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 5) - '*/5 * * * *' | '0 * * * *' | nil | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 5) - '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 10).to_i | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) - '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 10).to_i | false | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 5) - '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) - '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 2.hours.in_minutes).to_i | true | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 5) - '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) - '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 10).to_i | true | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) - '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 8).to_i | true | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) - '*/5 * * * *' | '0 1 1 * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 1, 1, 0) | Time.zone.local(2021, 6, 1, 1, 0) - '*/9 * * * *' | '0 1 1 * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 1, 1, 9) | Time.zone.local(2021, 6, 1, 1, 0) - '*/9 * * * *' | '0 1 1 * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | false | Time.zone.local(2021, 5, 1, 1, 9) | Time.zone.local(2021, 6, 1, 1, 9) - '*/5 * * * *' | '59 14 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | true | Time.zone.local(2021, 5, 1, 15, 0) | Time.zone.local(2021, 5, 2, 15, 0) - '*/5 * * * *' | '59 14 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | false | Time.zone.local(2021, 5, 1, 15, 0) | Time.zone.local(2021, 5, 2, 15, 0) - '*/5 * * * *' | '45 21 1 2 *' | (1.day.in_minutes / 5).to_i | true | Time.zone.local(2021, 2, 1, 21, 45) | Time.zone.local(2022, 2, 1, 21, 45) - '*/5 * * * *' | '45 21 1 2 *' | (1.day.in_minutes / 5).to_i | false | Time.zone.local(2021, 2, 1, 21, 45) | Time.zone.local(2022, 2, 1, 21, 50) + where(:worker_cron, :schedule_cron, :plan_limit, :now, :result) do + '0 1 2 3 *' | '0 1 * * *' | nil | Time.zone.local(2021, 3, 2, 1, 0) | Time.zone.local(2022, 3, 2, 1, 0) + '0 1 2 3 *' | '0 1 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 3, 2, 1, 0) | Time.zone.local(2022, 3, 2, 1, 0) + '*/5 * * * *' | '*/1 * * * *' | nil | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 5) + '*/5 * * * *' | '*/1 * * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) + '*/5 * * * *' | '*/1 * * * *' | (1.day.in_minutes / 10).to_i | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 10) + '*/5 * * * *' | '*/1 * * * *' | 200 | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 11, 10) + '*/5 * * * *' | '0 * * * *' | nil | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 5) + '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 10).to_i | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) + '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 0) + '*/5 * * * *' | '0 * * * *' | (1.day.in_minutes / 2.hours.in_minutes).to_i | Time.zone.local(2021, 5, 27, 11, 0) | Time.zone.local(2021, 5, 27, 12, 5) + '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) + '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 10).to_i | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) + '*/5 * * * *' | '0 1 * * *' | (1.day.in_minutes / 8).to_i | Time.zone.local(2021, 5, 27, 1, 0) | Time.zone.local(2021, 5, 28, 1, 0) + '*/5 * * * *' | '0 1 1 * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 1, 1, 0) | Time.zone.local(2021, 6, 1, 1, 0) + '*/9 * * * *' | '0 1 1 * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 1, 1, 9) | Time.zone.local(2021, 6, 1, 1, 0) + '*/5 * * * *' | '59 14 * * *' | (1.day.in_minutes / 1.hour.in_minutes).to_i | Time.zone.local(2021, 5, 1, 15, 0) | Time.zone.local(2021, 5, 2, 15, 0) + '*/5 * * * *' | '45 21 1 2 *' | (1.day.in_minutes / 5).to_i | Time.zone.local(2021, 2, 1, 21, 45) | Time.zone.local(2022, 2, 1, 21, 45) end with_them do @@ -143,7 +136,6 @@ RSpec.describe Ci::PipelineSchedule do end create(:plan_limits, :default_plan, ci_daily_pipeline_schedule_triggers: plan_limit) if plan_limit - stub_feature_flags(ci_daily_limit_for_pipeline_schedules: false) unless ff_enabled # Setting this here to override initial save with the current time pipeline_schedule.next_run_at = now diff --git a/spec/models/ci/runner_spec.rb b/spec/models/ci/runner_spec.rb index ffc8ab4cf8b..31e854c852e 100644 --- a/spec/models/ci/runner_spec.rb +++ b/spec/models/ci/runner_spec.rb @@ -531,6 +531,10 @@ RSpec.describe Ci::Runner do it 'can handle builds' do expect(runner.can_pick?(build)).to be_truthy end + + it 'knows namespace id it is assigned to' do + expect(runner.namespace_ids).to eq [group.id] + end end end diff --git a/spec/models/integrations/pipelines_email_spec.rb b/spec/models/integrations/pipelines_email_spec.rb index 761049f25fe..afd9d71ebc4 100644 --- a/spec/models/integrations/pipelines_email_spec.rb +++ b/spec/models/integrations/pipelines_email_spec.rb @@ -48,7 +48,7 @@ RSpec.describe Integrations::PipelinesEmail, :mailer do end it 'sends email' do - emails = receivers.map { |r| double(notification_email: r) } + emails = receivers.map { |r| double(notification_email_or_default: r) } should_only_email(*emails, kind: :bcc) end diff --git a/spec/models/namespaces/project_namespace_spec.rb b/spec/models/namespaces/project_namespace_spec.rb index e9d223b7555..11bdca54b70 100644 --- a/spec/models/namespaces/project_namespace_spec.rb +++ b/spec/models/namespaces/project_namespace_spec.rb @@ -6,4 +6,18 @@ RSpec.describe Namespaces::ProjectNamespace, type: :model do describe 'relationships' do it { is_expected.to have_one(:project).with_foreign_key(:project_namespace_id).inverse_of(:project_namespace) } end + + context 'when deleting project namespace' do + # using delete rather than destroy due to `delete` skipping AR hooks/callbacks + # so it's ensured to work at the DB level. Uses ON DELETE CASCADE on foreign key + let_it_be(:project) { create(:project) } + let_it_be(:project_namespace) { create(:project_namespace, project: project) } + + it 'also deletes the associated project' do + project_namespace.delete + + expect { project_namespace.reload }.to raise_error(ActiveRecord::RecordNotFound) + expect { project.reload }.to raise_error(ActiveRecord::RecordNotFound) + end + end end diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index a7807852b74..234d16535ab 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -185,6 +185,20 @@ RSpec.describe Project, factory_default: :keep do end end + context 'when deleting project' do + # using delete rather than destroy due to `delete` skipping AR hooks/callbacks + # so it's ensured to work at the DB level. Uses AFTER DELETE trigger. + let_it_be(:project) { create(:project) } + let_it_be(:project_namespace) { create(:project_namespace, project: project) } + + it 'also deletes the associated ProjectNamespace' do + project.delete + + expect { project.reload }.to raise_error(ActiveRecord::RecordNotFound) + expect { project_namespace.reload }.to raise_error(ActiveRecord::RecordNotFound) + end + end + context 'when creating a new project' do let_it_be(:project) { create(:project) } diff --git a/spec/models/repository_spec.rb b/spec/models/repository_spec.rb index 9c2f269de46..dc55214c1dd 100644 --- a/spec/models/repository_spec.rb +++ b/spec/models/repository_spec.rb @@ -1826,7 +1826,7 @@ RSpec.describe Repository do expect(merge_commit.message).to eq('Custom message') expect(merge_commit.author_name).to eq(user.name) - expect(merge_commit.author_email).to eq(user.commit_email) + expect(merge_commit.author_email).to eq(user.commit_email_or_default) expect(repository.blob_at(merge_commit.id, 'files/ruby/feature.rb')).to be_present end end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 306a5534737..27233bccee6 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -401,7 +401,7 @@ RSpec.describe User do user = build(:user, username: "test.#{type}") expect(user).not_to be_valid - expect(user.errors.full_messages).to include('Username ending with MIME type format is not allowed.') + expect(user.errors.full_messages).to include('Username ending with a file extension is not allowed.') expect(build(:user, username: "test#{type}")).to be_valid end end @@ -435,12 +435,12 @@ RSpec.describe User do subject { create(:user).tap { |user| user.emails << build(:email, email: email_value, confirmed_at: Time.current) } } end - describe '#commit_email' do + describe '#commit_email_or_default' do subject(:user) { create(:user) } it 'defaults to the primary email' do expect(user.email).to be_present - expect(user.commit_email).to eq(user.email) + expect(user.commit_email_or_default).to eq(user.email) end it 'defaults to the primary email when the column in the database is null' do @@ -448,14 +448,18 @@ RSpec.describe User do found_user = described_class.find_by(id: user.id) - expect(found_user.commit_email).to eq(user.email) + expect(found_user.commit_email_or_default).to eq(user.email) end it 'returns the private commit email when commit_email has _private' do user.update_column(:commit_email, Gitlab::PrivateCommitEmail::TOKEN) - expect(user.commit_email).to eq(user.private_commit_email) + expect(user.commit_email_or_default).to eq(user.private_commit_email) end + end + + describe '#commit_email=' do + subject(:user) { create(:user) } it 'can be set to a confirmed email' do confirmed = create(:email, :confirmed, user: user) @@ -1246,53 +1250,57 @@ RSpec.describe User do end end - describe '#update_notification_email' do - # Regression: https://gitlab.com/gitlab-org/gitlab-foss/issues/22846 - context 'when changing :email' do - let(:user) { create(:user) } - let(:new_email) { 'new-email@example.com' } + describe 'when changing email' do + let(:user) { create(:user) } + let(:new_email) { 'new-email@example.com' } + context 'if notification_email was nil' do it 'sets :unconfirmed_email' do expect do user.tap { |u| u.update!(email: new_email) }.reload end.to change(user, :unconfirmed_email).to(new_email) end - it 'does not change :notification_email' do + + it 'does not change notification_email or notification_email_or_default before email is confirmed' do + expect do + user.tap { |u| u.update!(email: new_email) }.reload + end.not_to change(user, :notification_email_or_default) + + expect(user.notification_email).to be_nil + end + + it 'updates notification_email_or_default to the new email once confirmed' do + user.update!(email: new_email) + + expect do + user.tap(&:confirm).reload + end.to change(user, :notification_email_or_default).to eq(new_email) + + expect(user.notification_email).to be_nil + end + end + + context 'when notification_email is set to a secondary email' do + let!(:email_attrs) { attributes_for(:email, :confirmed, user: user) } + let(:secondary) { create(:email, :confirmed, email: 'secondary@example.com', user: user) } + + before do + user.emails.create!(email_attrs) + user.tap { |u| u.update!(notification_email: email_attrs[:email]) }.reload + end + + it 'does not change notification_email to email before email is confirmed' do expect do user.tap { |u| u.update!(email: new_email) }.reload end.not_to change(user, :notification_email) end - it 'updates :notification_email to the new email once confirmed' do + it 'does not change notification_email to email once confirmed' do user.update!(email: new_email) expect do user.tap(&:confirm).reload - end.to change(user, :notification_email).to eq(new_email) - end - - context 'and :notification_email is set to a secondary email' do - let!(:email_attrs) { attributes_for(:email, :confirmed, user: user) } - let(:secondary) { create(:email, :confirmed, email: 'secondary@example.com', user: user) } - - before do - user.emails.create!(email_attrs) - user.tap { |u| u.update!(notification_email: email_attrs[:email]) }.reload - end - - it 'does not change :notification_email to :email' do - expect do - user.tap { |u| u.update!(email: new_email) }.reload - end.not_to change(user, :notification_email) - end - - it 'does not change :notification_email to :email once confirmed' do - user.update!(email: new_email) - - expect do - user.tap(&:confirm).reload - end.not_to change(user, :notification_email) - end + end.not_to change(user, :notification_email) end end end @@ -1878,6 +1886,7 @@ RSpec.describe User do end it 'does not send deactivated user an email' do expect(NotificationService).not_to receive(:new) + user.deactivate end end @@ -1885,7 +1894,7 @@ RSpec.describe User do context "when user deactivation emails are enabled" do it 'sends deactivated user an email' do expect_next_instance_of(NotificationService) do |notification| - allow(notification).to receive(:user_deactivated).with(user.name, user.notification_email) + allow(notification).to receive(:user_deactivated).with(user.name, user.notification_email_or_default) end user.deactivate @@ -3084,15 +3093,15 @@ RSpec.describe User do end end - describe '#notification_email' do + describe '#notification_email_or_default' do let(:email) { 'gonzo@muppets.com' } context 'when the column in the database is null' do subject { create(:user, email: email, notification_email: nil) } it 'defaults to the primary email' do - expect(subject.read_attribute(:notification_email)).to be nil - expect(subject.notification_email).to eq(email) + expect(subject.notification_email).to be nil + expect(subject.notification_email_or_default).to eq(email) end end end @@ -5335,7 +5344,7 @@ RSpec.describe User do let(:group) { nil } it 'returns global notification email' do - is_expected.to eq(user.notification_email) + is_expected.to eq(user.notification_email_or_default) end end @@ -5343,7 +5352,7 @@ RSpec.describe User do it 'returns global notification email' do create(:notification_setting, user: user, source: group, notification_email: '') - is_expected.to eq(user.notification_email) + is_expected.to eq(user.notification_email_or_default) end end @@ -6132,7 +6141,7 @@ RSpec.describe User do it 'does nothing' do expect(subject).not_to receive(:save) subject.unset_secondary_emails_matching_deleted_email!(deleted_email) - expect(subject.read_attribute(:commit_email)).to eq commit_email + expect(subject.commit_email).to eq commit_email end end @@ -6142,7 +6151,7 @@ RSpec.describe User do it 'un-sets the secondary email' do expect(subject).to receive(:save) subject.unset_secondary_emails_matching_deleted_email!(deleted_email) - expect(subject.read_attribute(:commit_email)).to be nil + expect(subject.commit_email).to be nil end end end diff --git a/spec/requests/api/notification_settings_spec.rb b/spec/requests/api/notification_settings_spec.rb index 7b4a58e63da..b5551c21738 100644 --- a/spec/requests/api/notification_settings_spec.rb +++ b/spec/requests/api/notification_settings_spec.rb @@ -13,7 +13,7 @@ RSpec.describe API::NotificationSettings do expect(response).to have_gitlab_http_status(:ok) expect(json_response).to be_a Hash - expect(json_response['notification_email']).to eq(user.notification_email) + expect(json_response['notification_email']).to eq(user.notification_email_or_default) expect(json_response['level']).to eq(user.global_notification_setting.level) end end diff --git a/spec/requests/api/users_spec.rb b/spec/requests/api/users_spec.rb index 8b864346c5d..ac86c922813 100644 --- a/spec/requests/api/users_spec.rb +++ b/spec/requests/api/users_spec.rb @@ -1202,7 +1202,7 @@ RSpec.describe API::Users do it 'updates user with a new email' do old_email = user.email - old_notification_email = user.notification_email + old_notification_email = user.notification_email_or_default put api("/users/#{user.id}", admin), params: { email: 'new@email.com' } user.reload @@ -1210,7 +1210,7 @@ RSpec.describe API::Users do expect(response).to have_gitlab_http_status(:ok) expect(user).to be_confirmed expect(user.email).to eq(old_email) - expect(user.notification_email).to eq(old_notification_email) + expect(user.notification_email_or_default).to eq(old_notification_email) expect(user.unconfirmed_email).to eq('new@email.com') end diff --git a/spec/services/ci/register_job_service_spec.rb b/spec/services/ci/register_job_service_spec.rb index 48d25b91d8a..b4e2429d5e3 100644 --- a/spec/services/ci/register_job_service_spec.rb +++ b/spec/services/ci/register_job_service_spec.rb @@ -219,6 +219,8 @@ module Ci before do project.update!(shared_runners_enabled: true, group_runners_enabled: true) project.project_feature.update_attribute(:builds_access_level, ProjectFeature::DISABLED) + + pending_job.reload.create_queuing_entry! end context 'and uses shared runner' do @@ -304,6 +306,8 @@ module Ci context 'disallow group runners' do before do project.update!(group_runners_enabled: false) + + pending_job.reload.create_queuing_entry! end context 'group runner' do @@ -755,6 +759,14 @@ module Ci include_examples 'handles runner assignment' end + + context 'with ci_queueing_denormalize_namespace_traversal_ids disabled' do + before do + stub_feature_flags(ci_queueing_denormalize_namespace_traversal_ids: false) + end + + include_examples 'handles runner assignment' + end end context 'when not using pending builds table' do diff --git a/spec/services/notification_service_spec.rb b/spec/services/notification_service_spec.rb index 3c4d7d50002..a03f1f17b39 100644 --- a/spec/services/notification_service_spec.rb +++ b/spec/services/notification_service_spec.rb @@ -2623,7 +2623,7 @@ RSpec.describe NotificationService, :mailer do let_it_be(:user) { create(:user) } it 'sends the user an email' do - notification.user_deactivated(user.name, user.notification_email) + notification.user_deactivated(user.name, user.notification_email_or_default) should_only_email(user) end diff --git a/spec/services/suggestions/apply_service_spec.rb b/spec/services/suggestions/apply_service_spec.rb index d3dcbf0b668..dc330a5546f 100644 --- a/spec/services/suggestions/apply_service_spec.rb +++ b/spec/services/suggestions/apply_service_spec.rb @@ -70,7 +70,7 @@ RSpec.describe Suggestions::ApplyService do author = suggestions.first.note.author expect(user.commit_email).not_to eq(user.email) - expect(commit.author_email).to eq(author.commit_email) + expect(commit.author_email).to eq(author.commit_email_or_default) expect(commit.committer_email).to eq(user.commit_email) expect(commit.author_name).to eq(author.name) expect(commit.committer_name).to eq(user.name) @@ -333,9 +333,9 @@ RSpec.describe Suggestions::ApplyService do end it 'created commit by same author and committer' do - expect(user.commit_email).to eq(author.commit_email) + expect(user.commit_email).to eq(author.commit_email_or_default) expect(author).to eq(user) - expect(commit.author_email).to eq(author.commit_email) + expect(commit.author_email).to eq(author.commit_email_or_default) expect(commit.committer_email).to eq(user.commit_email) expect(commit.author_name).to eq(author.name) expect(commit.committer_name).to eq(user.name) @@ -350,7 +350,7 @@ RSpec.describe Suggestions::ApplyService do it 'created commit has authors info and commiters info' do expect(user.commit_email).not_to eq(user.email) expect(author).not_to eq(user) - expect(commit.author_email).to eq(author.commit_email) + expect(commit.author_email).to eq(author.commit_email_or_default) expect(commit.committer_email).to eq(user.commit_email) expect(commit.author_name).to eq(author.name) expect(commit.committer_name).to eq(user.name) @@ -359,7 +359,7 @@ RSpec.describe Suggestions::ApplyService do end context 'multiple suggestions' do - let(:author_emails) { suggestions.map {|s| s.note.author.commit_email } } + let(:author_emails) { suggestions.map {|s| s.note.author.commit_email_or_default } } let(:first_author) { suggestion.note.author } let(:commit) { project.repository.commit } @@ -369,8 +369,8 @@ RSpec.describe Suggestions::ApplyService do end it 'uses first authors information' do - expect(author_emails).to include(first_author.commit_email).exactly(3) - expect(commit.author_email).to eq(first_author.commit_email) + expect(author_emails).to include(first_author.commit_email_or_default).exactly(3) + expect(commit.author_email).to eq(first_author.commit_email_or_default) end end diff --git a/spec/services/users/reject_service_spec.rb b/spec/services/users/reject_service_spec.rb index 0e34f0e67ba..5a243e876ac 100644 --- a/spec/services/users/reject_service_spec.rb +++ b/spec/services/users/reject_service_spec.rb @@ -44,7 +44,7 @@ RSpec.describe Users::RejectService do it 'emails the user on rejection' do expect_next_instance_of(NotificationService) do |notification| - allow(notification).to receive(:user_admin_rejection).with(user.name, user.notification_email) + allow(notification).to receive(:user_admin_rejection).with(user.name, user.notification_email_or_default) end subject diff --git a/spec/support/helpers/email_helpers.rb b/spec/support/helpers/email_helpers.rb index 6df33e68629..d0f6fd466d0 100644 --- a/spec/support/helpers/email_helpers.rb +++ b/spec/support/helpers/email_helpers.rb @@ -2,7 +2,7 @@ module EmailHelpers def sent_to_user(user, recipients: email_recipients) - recipients.count { |to| to == user.notification_email } + recipients.count { |to| to == user.notification_email_or_default } end def reset_delivered_emails! @@ -45,7 +45,7 @@ module EmailHelpers end def find_email_for(user) - ActionMailer::Base.deliveries.find { |d| d.to.include?(user.notification_email) } + ActionMailer::Base.deliveries.find { |d| d.to.include?(user.notification_email_or_default) } end def have_referable_subject(referable, include_project: true, reply: false) diff --git a/spec/support/shared_examples/mailers/notify_shared_examples.rb b/spec/support/shared_examples/mailers/notify_shared_examples.rb index b10ebb4d2a3..e1f7a9030e2 100644 --- a/spec/support/shared_examples/mailers/notify_shared_examples.rb +++ b/spec/support/shared_examples/mailers/notify_shared_examples.rb @@ -2,7 +2,7 @@ RSpec.shared_examples 'a multiple recipients email' do it 'is sent to the given recipient' do - is_expected.to deliver_to recipient.notification_email + is_expected.to deliver_to recipient.notification_email_or_default end end @@ -21,7 +21,7 @@ end RSpec.shared_examples 'an email sent to a user' do it 'is sent to user\'s global notification email address' do - expect(subject).to deliver_to(recipient.notification_email) + expect(subject).to deliver_to(recipient.notification_email_or_default) end context 'with group notification email' do @@ -227,7 +227,7 @@ RSpec.shared_examples 'a note email' do aggregate_failures do expect(sender.display_name).to eq("#{note_author.name} (@#{note_author.username})") expect(sender.address).to eq(gitlab_sender) - expect(subject).to deliver_to(recipient.notification_email) + expect(subject).to deliver_to(recipient.notification_email_or_default) end end