Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot 2021-08-13 09:09:58 +00:00
parent e9626c2383
commit da12067d6b
1332 changed files with 1958 additions and 1482 deletions

View File

@ -39,6 +39,7 @@ class SearchController < ApplicationController
@search_service = Gitlab::View::Presenter::Factory.new(search_service, current_user: current_user).fabricate!
@scope = @search_service.scope
@without_count = @search_service.without_count?
@show_snippets = @search_service.show_snippets?
@search_results = @search_service.search_results
@search_objects = @search_service.search_objects

View File

@ -107,6 +107,7 @@ module Ci
end
# rubocop: enable CodeReuse/ActiveRecord
# This method is deprecated and will be removed in 14.3
# rubocop: disable CodeReuse/ActiveRecord
def by_name(items)
if params[:name].present?

View File

@ -8,5 +8,5 @@
= clipboard_button(text: "#{proxy_url}", title: _("Copy %{proxy_url}") % { proxy_url: proxy_url })
.row
.col-12.help-block.gl-mt-3
.col-12.help-block.gl-mt-3{ data: { qa_selector: 'dependency_proxy_count' } }
= _('Contains %{count} blobs of images (%{size})') % { count: @blobs_count, size: number_to_human_size(@blobs_total_size) }

View File

@ -13,7 +13,7 @@
.form-group
%h5.prepend-top-20= _('Enable proxy')
.js-dependency-proxy-toggle-area
= render "shared/buttons/project_feature_toggle", is_checked: @dependency_proxy.enabled?, label: s_("DependencyProxy|Toggle Dependency Proxy") do
= render "shared/buttons/project_feature_toggle", is_checked: @dependency_proxy.enabled?, label: s_("DependencyProxy|Toggle Dependency Proxy"), data: { qa_selector: 'dependency_proxy_setting_toggle' } do
= f.hidden_field :enabled, { class: 'js-project-feature-toggle-input'}
- if @dependency_proxy.enabled

View File

@ -9,7 +9,10 @@
- project_attributes = @project&.attributes&.slice('id', 'namespace_id', 'name')&.merge(name_with_namespace: @project&.name_with_namespace)
- if @search_results
- page_description(_("%{count} %{scope} for term '%{term}'") % { count: @search_results.formatted_count(@scope), scope: @scope, term: @search_term })
- if @without_count
- page_description(_("%{scope} results for term '%{term}'") % { scope: @scope, term: @search_term })
- else
- page_description(_("%{count} %{scope} for term '%{term}'") % { count: @search_results.formatted_count(@scope), scope: @scope, term: @search_term })
- page_card_attributes("Namespace" => @group&.full_path, "Project" => @project&.full_path)
.page-title-holder.d-flex.flex-wrap.justify-content-between

View File

@ -1118,6 +1118,15 @@
:weight: 1
:idempotent:
:tags: []
- :name: jira_connect:jira_connect_retry_request
:worker_name: JiraConnect::RetryRequestWorker
:feature_category: :integrations
:has_external_dependencies: true
:urgency: :low
:resource_boundary: :unknown
:weight: 1
:idempotent:
:tags: []
- :name: jira_connect:jira_connect_sync_branch
:worker_name: JiraConnect::SyncBranchWorker
:feature_category: :integrations

View File

@ -13,16 +13,17 @@ module JiraConnect
def perform(installation_id, base_path, event_path)
installation = JiraConnectInstallation.find_by_id(installation_id)
instance_url = installation&.instance_url
return if installation&.instance_url.nil?
installation.destroy if installation
proxy_url = installation.instance_url + event_path
qsh = Atlassian::Jwt.create_query_string_hash(proxy_url, 'POST', installation.instance_url + base_path)
return if instance_url.nil?
proxy_url = instance_url + event_path
qsh = Atlassian::Jwt.create_query_string_hash(proxy_url, 'POST', instance_url + base_path)
jwt = Atlassian::Jwt.encode({ iss: installation.client_key, qsh: qsh }, installation.shared_secret)
Gitlab::HTTP.post(proxy_url, headers: { 'Authorization' => "JWT #{jwt}" })
ensure
installation.destroy if installation
JiraConnect::RetryRequestWorker.perform_async(proxy_url, jwt)
end
end
end

View File

@ -0,0 +1,22 @@
# frozen_string_literal: true
module JiraConnect
class RetryRequestWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
queue_namespace :jira_connect
feature_category :integrations
urgency :low
worker_has_external_dependencies!
def perform(proxy_url, jwt, attempts = 3)
r = Gitlab::HTTP.post(proxy_url, headers: { 'Authorization' => "JWT #{jwt}" })
self.class.perform_in(1.hour, proxy_url, jwt, attempts - 1) if r.code >= 400 && attempts > 0
rescue *Gitlab::HTTP::HTTP_ERRORS
self.class.perform_in(1.hour, proxy_url, jwt, attempts - 1) if attempts > 0
end
end
end

View File

@ -0,0 +1,8 @@
---
name: between_uses_list_commits
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/67591
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/337960
milestone: '14.2'
type: development
group: group::source code
default_enabled: false

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: counts_monthly.deployments
description: Total deployments count for recent 28 days
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: analytics_unique_visits.analytics_unique_visits_for_any_target_monthly
description: Unique visitors to any analytics feature by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.p_analytics_pipelines_monthly
description: Unique visitors to /groups/:group/-/analytics/ci_cd by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.p_analytics_valuestream_monthly
description: Unique visitors to /:group/:project/-/value_stream_analytics by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.i_analytics_cohorts_monthly
description:
product_section: fulfillment

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.i_analytics_dev_ops_score_monthly
description: Unique visitors to /admin/dev_ops_report by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.g_analytics_merge_request_monthly
description:
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.analytics.i_analytics_instance_statistics_monthly
description: Unique visitors to /admin/usage_trends by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: redis_hll_counters.analytics.analytics_total_unique_counts_monthly
description: The number of unique users who visited any analytics feature by month
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.merge_requests
description: Count of the number of users creating merge requests
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.projects_with_disable_overriding_approvers_per_merge_request
description: Count of the number of projects with setting to disable overriding approvers per merge request
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.projects_without_disable_overriding_approvers_per_merge_request
description: Count of the number of projects without setting to disable overriding approvers per merge request
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.merge_requests_users
description: Monthly count of the number of merge request users
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.suggestions
description: Count of unique users per month who create suggestions in merge request comments
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.source_code.merge_request_action_monthly
description: Count of unique users who perform an action on a merge request
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.source_code.i_source_code_code_intelligence_monthly
description: Count of unique users who use code intelligence
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_mr_diffs_monthly
description: Count of unique merge requests per month with diffs viewed
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_single_file_diffs_monthly
description: Count of unique users per month with diffs viewed file by file
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_mr_single_file_diffs_monthly
description: Count of unique merge requests per month with diffs viewed file by file
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_create_mr_monthly
description: Count of unique users per month who created a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_close_mr_monthly
description: Count of unique users per month who closed a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_reopen_mr_monthly
description: Count of unique users per month who reopened a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_merge_mr_monthly
description: Count of unique users per month who merged a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_create_mr_comment_monthly
description: Count of unique users per month who commented on a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_edit_mr_comment_monthly
description: Count of unique users per month who edited a comment on a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_remove_mr_comment_monthly
description: Count of unique users per month who removed a comment on a MR
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_add_suggestion_monthly
description: Count of unique users per month who added a suggestion
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.code_review.i_code_review_user_apply_suggestion_monthly
description: Count of unique users per month who applied a suggestion
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_applications_cert_managers
description: Total GitLab Managed clusters with Cert Manager enabled
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_applications_helm
description: Total GitLab Managed clusters with Helm enabled
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_applications_ingress
description: Total GitLab Managed clusters with Ingress enabled
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_applications_knative
description: Total GitLab Managed clusters with Knative enabled
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_management_project
name: "count_distinct_user_id_from_management_project_clusters"
description: Number of Kubernetes clusters with clusters management project being set

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_disabled
description: Total GitLab Managed disabled clusters
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_enabled
description: Total GitLab Managed clusters currently enabled
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_platforms_gke
description: Total GitLab Managed clusters provisioned with GitLab on GCE GKE
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_platforms_eks
description: Total GitLab Managed clusters provisioned with GitLab on AWS EKS
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.clusters_platforms_user
description: Total GitLab Managed clusters that are user provisioned
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.instance_clusters_disabled
description: Total GitLab Managed disabled clusters attached to the instance
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.instance_clusters_enabled
description: Total GitLab Managed enabled clusters attached to the instance
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.group_clusters_disabled
description: Total GitLab Managed disabled clusters attached to groups
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.group_clusters_enabled
description: Total GitLab Managed enabled clusters attached to groups
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.configure.project_clusters_disabled
description: Total GitLab Managed disabled clusters attached to projects
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: usage_activity_by_stage_monthly.configure.project_clusters_enabled
description: Total GitLab Managed enabled clusters attached to projects
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_builds
description: Unique monthly builds in project
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_external_pipelines
description: Total pipelines in external repositories in a month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_internal_pipelines
description: Total pipelines in GitLab repositories in a month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_pipeline_config_auto_devops
description: Total pipelines from an Auto DevOps template
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_pipeline_config_repository
description: Total Monthly Pipelines from templates in repository
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_pipeline_schedules
description: Total monthly Pipeline schedules in GitLab
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_pipelines
description: "Distinct users triggering pipelines in a month"
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.verify.ci_triggers
description: Total configured Triggers in project
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: usage_activity_by_stage_monthly.secure.user_dast_jobs
description: Users who run a DAST job
product_section: sec

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: usage_activity_by_stage_monthly.secure.dast_pipeline
description: Count of pipelines that have at least 1 DAST job
product_section: sec

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: counts_monthly.personal_snippets
description: Monthly count of personal Snippets
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: counts_monthly.project_snippets
description: Monthly count of project Snippets
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: counts_monthly.snippets
description: Monthly count of All Snippets
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.snippets
name: count_distinct_author_id_from_snippets
description: Count of distinct author_id from snippets for last 28 days

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.action_monthly_active_users_web_ide_edit
description: Number of users editing using web IDE
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.action_monthly_active_users_sfe_edit
description: Number of users using single file editor
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.action_monthly_active_users_snippet_editor_edit
description: Number of users using the snippet editor
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.action_monthly_active_users_sse_edit
description: Number of users using the static site editor
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.action_monthly_active_users_ide_edit
description: Number of unique users per month who edited a file from any web editor
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.ide_edit.g_edit_by_web_ide_monthly
description: Number of users editing a file from the Web IDE
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.ide_edit.g_edit_by_sfe_monthly
description: Number of users editing a file from the single file editor
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.ide_edit.g_edit_by_snippet_ide_monthly
description: Count of monthly edits to a snippet
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.ide_edit.ide_edit_total_unique_counts_monthly
description: Count of unique users per month who edited a file from the Web IDE
product_section: dev

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: usage_activity_by_stage_monthly.secure.user_api_fuzzing_jobs
description: Count of API Fuzzing jobs by job name
product_section: sec

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: usage_activity_by_stage_monthly.secure.user_api_fuzzing_dnd_jobs
description: Count of API Fuzzing `docker-in-docker` jobs by job names
product_section: sec

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.search.i_search_total_monthly
description: Calculated unique users to perform Basic or Advanced searches by month
product_section: enablement

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.search.search_total_unique_counts_monthly
description: Total unique users for i_search_total, i_search_advanced, i_search_paid for recent 28 days. This metric is redundant because advanced will be a subset of paid and paid will be a subset of total. i_search_total is more appropriate if you just want the total
product_section: enablement

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: counts_monthly.aggregated_metrics.incident_management_alerts_total_unique_counts
description: Count of unique users per month to take an action on an alert
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: counts_monthly.aggregated_metrics.incident_management_incidents_total_unique_counts
description: Count of unique users per month to take an action on an incident
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.monitor.projects_with_incidents
description: 'Count of unique projects with an incident created in the last month'
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.monitor.projects_with_alert_incidents
description: 'Count of unique projects with an incident from an alert created in the
last month'

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_alert_status_changed_monthly
description: Count of unique users changing alert's status changes per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_alert_assigned_monthly
description: Count of unique users assigning an alert per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_alert_todo_monthly
description: Count of unique users adding alerts to the TODO list per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_created_monthly
description: Count of unique users creating incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_reopened_monthly
description: Count of unique users reopening incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_closed_monthly
description: Count of users closing incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_assigned_monthly
description: Count of users assigning incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_todo_monthly
description: Count of unique users adding incidents to the TODO list per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_comment_monthly
description: Count of unique users adding comments per month on incidents
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_zoom_meeting_monthly
description: Count of users creating Zoom meetings about incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_relate_monthly
description: Count of unique users adding issues per month that are related to an incident
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_unrelate_monthly
description: Count of users removing issues that are related to an incident per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management.incident_management_incident_change_confidential_monthly
description: Count of users changing incidents to confidential per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Operational
data_category: operational
key_path: redis_hll_counters.incident_management.incident_management_total_unique_counts_monthly
description: Count of unique users performing events related with incidents per month
product_section: ops

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: redis_hll_counters.incident_management_alerts.incident_management_alert_create_incident_monthly
description: Count of unique users per month to create an incident corresponding to
an alert

View File

@ -1,5 +1,5 @@
---
data_category: Optional
data_category: optional
key_path: usage_activity_by_stage_monthly.create.projects_imported_from_github
description: Count of projects imported from GitHub
product_section: dev

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