debian-mirror-gitlab/lib/gitlab/usage_data_counters/ci_template_unique_counter.rb

42 lines
1.6 KiB
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
module Gitlab::UsageDataCounters
class CiTemplateUniqueCounter
REDIS_SLOT = 'ci_templates'.freeze
2021-03-11 19:13:27 +05:30
# NOTE: Events originating from implicit Auto DevOps pipelines get prefixed with `implicit_`
2021-03-08 18:12:59 +05:30
TEMPLATE_TO_EVENT = {
2021-03-11 19:13:27 +05:30
'5-Minute-Production-App.gitlab-ci.yml' => '5_min_production_app',
2021-03-08 18:12:59 +05:30
'Auto-DevOps.gitlab-ci.yml' => 'auto_devops',
'AWS/CF-Provision-and-Deploy-EC2.gitlab-ci.yml' => 'aws_cf_deploy_ec2',
'AWS/Deploy-ECS.gitlab-ci.yml' => 'aws_deploy_ecs',
'Jobs/Build.gitlab-ci.yml' => 'auto_devops_build',
'Jobs/Deploy.gitlab-ci.yml' => 'auto_devops_deploy',
'Jobs/Deploy.latest.gitlab-ci.yml' => 'auto_devops_deploy_latest',
'Security/SAST.gitlab-ci.yml' => 'security_sast',
'Security/Secret-Detection.gitlab-ci.yml' => 'security_secret_detection',
'Terraform/Base.latest.gitlab-ci.yml' => 'terraform_base_latest'
}.freeze
class << self
2021-03-11 19:13:27 +05:30
def track_unique_project_event(project_id:, template:, config_source:)
2021-03-08 18:12:59 +05:30
return if Feature.disabled?(:usage_data_track_ci_templates_unique_projects, default_enabled: :yaml)
2021-03-11 19:13:27 +05:30
if event = unique_project_event(template, config_source)
2021-03-08 18:12:59 +05:30
Gitlab::UsageDataCounters::HLLRedisCounter.track_event(event, values: project_id)
end
end
private
2021-03-11 19:13:27 +05:30
def unique_project_event(template, config_source)
2021-03-08 18:12:59 +05:30
if name = TEMPLATE_TO_EVENT[template]
2021-03-11 19:13:27 +05:30
prefix = 'implicit_' if config_source.to_s == 'auto_devops_source'
"p_#{REDIS_SLOT}_#{prefix}#{name}"
2021-03-08 18:12:59 +05:30
end
end
end
end
end