Commit e19827ab authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'zj-usage-data-auto-devops' into 'master'

Add usage ping for Auto DevOps

Closes #37648

See merge request !14162
parents 3b215d05 74bf291c
class ProjectAutoDevops < ActiveRecord::Base class ProjectAutoDevops < ActiveRecord::Base
belongs_to :project belongs_to :project
scope :enabled, -> { where(enabled: true) }
scope :disabled, -> { where(enabled: false) }
validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true } validates :domain, allow_blank: true, hostname: { allow_numeric_hostname: true }
def variables def variables
......
---
title: Add usage data for Auto DevOps
merge_request:
author:
type: other
...@@ -22,9 +22,13 @@ module Gitlab ...@@ -22,9 +22,13 @@ module Gitlab
ci_builds: ::Ci::Build.count, ci_builds: ::Ci::Build.count,
ci_internal_pipelines: ::Ci::Pipeline.internal.count, ci_internal_pipelines: ::Ci::Pipeline.internal.count,
ci_external_pipelines: ::Ci::Pipeline.external.count, ci_external_pipelines: ::Ci::Pipeline.external.count,
ci_pipeline_config_auto_devops: ::Ci::Pipeline.auto_devops_source.count,
ci_pipeline_config_repository: ::Ci::Pipeline.repository_source.count,
ci_runners: ::Ci::Runner.count, ci_runners: ::Ci::Runner.count,
ci_triggers: ::Ci::Trigger.count, ci_triggers: ::Ci::Trigger.count,
ci_pipeline_schedules: ::Ci::PipelineSchedule.count, ci_pipeline_schedules: ::Ci::PipelineSchedule.count,
auto_devops_enabled: ::ProjectAutoDevops.enabled.count,
auto_devops_disabled: ::ProjectAutoDevops.disabled.count,
deploy_keys: DeployKey.count, deploy_keys: DeployKey.count,
deployments: Deployment.count, deployments: Deployment.count,
environments: ::Environment.count, environments: ::Environment.count,
......
...@@ -40,9 +40,13 @@ describe Gitlab::UsageData do ...@@ -40,9 +40,13 @@ describe Gitlab::UsageData do
ci_builds ci_builds
ci_internal_pipelines ci_internal_pipelines
ci_external_pipelines ci_external_pipelines
ci_pipeline_config_auto_devops
ci_pipeline_config_repository
ci_runners ci_runners
ci_triggers ci_triggers
ci_pipeline_schedules ci_pipeline_schedules
auto_devops_enabled
auto_devops_disabled
deploy_keys deploy_keys
deployments deployments
environments environments
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment