2018-10-22 03:00:50 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-05 08:29:48 -04:00
|
|
|
module Gitlab
|
|
|
|
class UsageData
|
2018-12-06 11:07:14 -05:00
|
|
|
APPROXIMATE_COUNT_MODELS = [Label, MergeRequest, Note, Todo].freeze
|
2019-09-16 11:06:26 -04:00
|
|
|
BATCH_SIZE = 100
|
2018-12-06 11:07:14 -05:00
|
|
|
|
2017-04-05 08:29:48 -04:00
|
|
|
class << self
|
2016-10-19 17:29:01 -04:00
|
|
|
def data(force_refresh: false)
|
2019-07-20 21:26:19 -04:00
|
|
|
Rails.cache.fetch('usage_data', force: force_refresh, expires_in: 2.weeks) do
|
|
|
|
uncached_data
|
|
|
|
end
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def uncached_data
|
2019-11-13 07:06:22 -05:00
|
|
|
license_usage_data
|
|
|
|
.merge(system_usage_data)
|
2019-09-16 11:06:26 -04:00
|
|
|
.merge(features_usage_data)
|
|
|
|
.merge(components_usage_data)
|
|
|
|
.merge(cycle_analytics_usage_data)
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
|
|
|
|
2016-10-19 17:29:01 -04:00
|
|
|
def to_json(force_refresh: false)
|
|
|
|
data(force_refresh: force_refresh).to_json
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
|
|
|
|
2017-09-15 12:23:56 -04:00
|
|
|
def license_usage_data
|
|
|
|
usage_data = {
|
2018-02-02 13:39:55 -05:00
|
|
|
uuid: Gitlab::CurrentSettings.uuid,
|
2017-09-15 12:23:56 -04:00
|
|
|
hostname: Gitlab.config.gitlab.host,
|
|
|
|
version: Gitlab::VERSION,
|
2019-05-17 05:10:29 -04:00
|
|
|
installation_type: installation_type,
|
2018-09-05 08:34:59 -04:00
|
|
|
active_user_count: count(User.active),
|
2017-09-15 12:23:56 -04:00
|
|
|
recorded_at: Time.now,
|
|
|
|
edition: 'CE'
|
|
|
|
}
|
|
|
|
|
|
|
|
usage_data
|
|
|
|
end
|
|
|
|
|
2019-10-01 11:06:05 -04:00
|
|
|
# rubocop: disable Metrics/AbcSize
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-04-05 08:29:48 -04:00
|
|
|
def system_usage_data
|
|
|
|
{
|
|
|
|
counts: {
|
2018-09-05 08:34:59 -04:00
|
|
|
assignee_lists: count(List.assignee),
|
|
|
|
boards: count(Board),
|
|
|
|
ci_builds: count(::Ci::Build),
|
|
|
|
ci_internal_pipelines: count(::Ci::Pipeline.internal),
|
|
|
|
ci_external_pipelines: count(::Ci::Pipeline.external),
|
|
|
|
ci_pipeline_config_auto_devops: count(::Ci::Pipeline.auto_devops_source),
|
|
|
|
ci_pipeline_config_repository: count(::Ci::Pipeline.repository_source),
|
|
|
|
ci_runners: count(::Ci::Runner),
|
|
|
|
ci_triggers: count(::Ci::Trigger),
|
|
|
|
ci_pipeline_schedules: count(::Ci::PipelineSchedule),
|
|
|
|
auto_devops_enabled: count(::ProjectAutoDevops.enabled),
|
|
|
|
auto_devops_disabled: count(::ProjectAutoDevops.disabled),
|
|
|
|
deploy_keys: count(DeployKey),
|
|
|
|
deployments: count(Deployment),
|
2019-03-07 12:08:29 -05:00
|
|
|
successful_deployments: count(Deployment.success),
|
|
|
|
failed_deployments: count(Deployment.failed),
|
2018-09-05 08:34:59 -04:00
|
|
|
environments: count(::Environment),
|
|
|
|
clusters: count(::Clusters::Cluster),
|
|
|
|
clusters_enabled: count(::Clusters::Cluster.enabled),
|
2018-12-05 08:48:28 -05:00
|
|
|
project_clusters_enabled: count(::Clusters::Cluster.enabled.project_type),
|
|
|
|
group_clusters_enabled: count(::Clusters::Cluster.enabled.group_type),
|
2018-09-05 08:34:59 -04:00
|
|
|
clusters_disabled: count(::Clusters::Cluster.disabled),
|
2018-12-05 08:48:28 -05:00
|
|
|
project_clusters_disabled: count(::Clusters::Cluster.disabled.project_type),
|
|
|
|
group_clusters_disabled: count(::Clusters::Cluster.disabled.group_type),
|
2020-02-17 13:09:00 -05:00
|
|
|
clusters_platforms_eks: count(::Clusters::Cluster.aws_installed.enabled, batch: false),
|
|
|
|
clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled, batch: false),
|
2018-09-05 08:34:59 -04:00
|
|
|
clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
|
2019-02-15 06:16:45 -05:00
|
|
|
clusters_applications_helm: count(::Clusters::Applications::Helm.available),
|
|
|
|
clusters_applications_ingress: count(::Clusters::Applications::Ingress.available),
|
|
|
|
clusters_applications_cert_managers: count(::Clusters::Applications::CertManager.available),
|
2019-11-17 22:06:28 -05:00
|
|
|
clusters_applications_crossplane: count(::Clusters::Applications::Crossplane.available),
|
2019-02-15 06:16:45 -05:00
|
|
|
clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.available),
|
|
|
|
clusters_applications_runner: count(::Clusters::Applications::Runner.available),
|
|
|
|
clusters_applications_knative: count(::Clusters::Applications::Knative.available),
|
2019-10-22 11:06:06 -04:00
|
|
|
clusters_applications_elastic_stack: count(::Clusters::Applications::ElasticStack.available),
|
2020-01-21 13:07:31 -05:00
|
|
|
clusters_applications_jupyter: count(::Clusters::Applications::Jupyter.available),
|
2018-09-05 08:34:59 -04:00
|
|
|
in_review_folder: count(::Environment.in_review_folder),
|
2019-11-13 13:06:51 -05:00
|
|
|
grafana_integrated_projects: count(GrafanaIntegration.enabled),
|
2018-09-05 08:34:59 -04:00
|
|
|
groups: count(Group),
|
|
|
|
issues: count(Issue),
|
2019-12-11 22:07:34 -05:00
|
|
|
issues_created_from_gitlab_error_tracking_ui: count(SentryIssue),
|
2019-10-31 17:06:28 -04:00
|
|
|
issues_with_associated_zoom_link: count(ZoomMeeting.added_to_issue),
|
2020-02-17 13:09:00 -05:00
|
|
|
issues_using_zoom_quick_actions: count(ZoomMeeting.select(:issue_id).distinct, batch: false),
|
2019-12-03 10:06:20 -05:00
|
|
|
issues_with_embedded_grafana_charts_approx: ::Gitlab::GrafanaEmbedUsageData.issue_count,
|
2020-02-15 16:08:49 -05:00
|
|
|
incident_issues: count(::Issue.authored(::User.alert_bot)),
|
2018-09-05 08:34:59 -04:00
|
|
|
keys: count(Key),
|
|
|
|
label_lists: count(List.label),
|
|
|
|
lfs_objects: count(LfsObject),
|
|
|
|
milestone_lists: count(List.milestone),
|
|
|
|
milestones: count(Milestone),
|
|
|
|
pages_domains: count(PagesDomain),
|
2019-05-17 05:10:29 -04:00
|
|
|
pool_repositories: count(PoolRepository),
|
2018-09-05 08:34:59 -04:00
|
|
|
projects: count(Project),
|
|
|
|
projects_imported_from_github: count(Project.where(import_type: 'github')),
|
2019-01-31 07:29:26 -05:00
|
|
|
projects_with_repositories_enabled: count(ProjectFeature.where('repository_access_level > ?', ProjectFeature::DISABLED)),
|
2019-03-25 03:42:08 -04:00
|
|
|
projects_with_error_tracking_enabled: count(::ErrorTracking::ProjectErrorTrackingSetting.where(enabled: true)),
|
2020-02-17 13:09:00 -05:00
|
|
|
projects_with_alerts_service_enabled: count(AlertsService.active, batch: false),
|
2018-09-05 08:34:59 -04:00
|
|
|
protected_branches: count(ProtectedBranch),
|
|
|
|
releases: count(Release),
|
|
|
|
remote_mirrors: count(RemoteMirror),
|
|
|
|
snippets: count(Snippet),
|
2018-12-13 14:17:19 -05:00
|
|
|
suggestions: count(Suggestion),
|
|
|
|
todos: count(Todo),
|
2018-09-05 08:34:59 -04:00
|
|
|
uploads: count(Upload),
|
|
|
|
web_hooks: count(WebHook)
|
2019-10-01 11:06:05 -04:00
|
|
|
}.merge(
|
|
|
|
services_usage,
|
|
|
|
approximate_counts,
|
|
|
|
usage_counters,
|
2019-12-04 16:07:31 -05:00
|
|
|
user_preferences_usage,
|
|
|
|
ingress_modsecurity_usage
|
2019-10-01 11:06:05 -04:00
|
|
|
)
|
|
|
|
}
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2019-10-01 11:06:05 -04:00
|
|
|
# rubocop: enable Metrics/AbcSize
|
2017-04-05 08:29:48 -04:00
|
|
|
|
2018-01-30 06:28:15 -05:00
|
|
|
def cycle_analytics_usage_data
|
2018-02-15 08:23:39 -05:00
|
|
|
Gitlab::CycleAnalytics::UsageData.new.to_json
|
2018-01-30 06:28:15 -05:00
|
|
|
end
|
|
|
|
|
2017-09-15 12:23:56 -04:00
|
|
|
def features_usage_data
|
|
|
|
features_usage_data_ce
|
|
|
|
end
|
|
|
|
|
|
|
|
def features_usage_data_ce
|
|
|
|
{
|
2018-06-20 13:16:14 -04:00
|
|
|
container_registry_enabled: Gitlab.config.registry.enabled,
|
2019-09-18 14:06:14 -04:00
|
|
|
dependency_proxy_enabled: Gitlab.config.try(:dependency_proxy)&.enabled,
|
2018-06-20 13:16:14 -04:00
|
|
|
gitlab_shared_runners_enabled: Gitlab.config.gitlab_ci.shared_runners_enabled,
|
|
|
|
gravatar_enabled: Gitlab::CurrentSettings.gravatar_enabled?,
|
2019-04-11 13:34:37 -04:00
|
|
|
influxdb_metrics_enabled: Gitlab::Metrics.influx_metrics_enabled?,
|
2018-06-20 13:16:14 -04:00
|
|
|
ldap_enabled: Gitlab.config.ldap.enabled,
|
|
|
|
mattermost_enabled: Gitlab.config.mattermost.enabled,
|
2018-07-13 06:39:31 -04:00
|
|
|
omniauth_enabled: Gitlab::Auth.omniauth_enabled?,
|
2019-04-11 13:34:37 -04:00
|
|
|
prometheus_metrics_enabled: Gitlab::Metrics.prometheus_metrics_enabled?,
|
2018-06-20 13:16:14 -04:00
|
|
|
reply_by_email_enabled: Gitlab::IncomingEmail.enabled?,
|
2019-11-06 04:06:23 -05:00
|
|
|
signup_enabled: Gitlab::CurrentSettings.allow_signup?,
|
2019-11-18 01:06:20 -05:00
|
|
|
web_ide_clientside_preview_enabled: Gitlab::CurrentSettings.web_ide_clientside_preview_enabled?,
|
|
|
|
ingress_modsecurity_enabled: Feature.enabled?(:ingress_modsecurity)
|
2017-04-06 15:16:57 -04:00
|
|
|
}
|
2017-09-15 12:23:56 -04:00
|
|
|
end
|
2017-04-05 08:29:48 -04:00
|
|
|
|
2019-07-20 21:26:19 -04:00
|
|
|
# @return [Hash<Symbol, Integer>]
|
2018-10-01 07:15:31 -04:00
|
|
|
def usage_counters
|
2019-07-20 21:26:19 -04:00
|
|
|
usage_data_counters.map(&:totals).reduce({}) { |a, b| a.merge(b) }
|
|
|
|
end
|
|
|
|
|
|
|
|
# @return [Array<#totals>] An array of objects that respond to `#totals`
|
|
|
|
def usage_data_counters
|
2019-07-29 05:58:58 -04:00
|
|
|
[
|
2019-10-01 11:06:05 -04:00
|
|
|
Gitlab::UsageDataCounters::WikiPageCounter,
|
|
|
|
Gitlab::UsageDataCounters::WebIdeCounter,
|
|
|
|
Gitlab::UsageDataCounters::NoteCounter,
|
|
|
|
Gitlab::UsageDataCounters::SnippetCounter,
|
|
|
|
Gitlab::UsageDataCounters::SearchCounter,
|
|
|
|
Gitlab::UsageDataCounters::CycleAnalyticsCounter,
|
|
|
|
Gitlab::UsageDataCounters::ProductivityAnalyticsCounter,
|
|
|
|
Gitlab::UsageDataCounters::SourceCodeCounter,
|
|
|
|
Gitlab::UsageDataCounters::MergeRequestCounter
|
2019-07-29 05:58:58 -04:00
|
|
|
]
|
2018-10-01 07:15:31 -04:00
|
|
|
end
|
|
|
|
|
2017-09-15 12:23:56 -04:00
|
|
|
def components_usage_data
|
|
|
|
{
|
|
|
|
git: { version: Gitlab::Git.version },
|
2019-06-20 07:04:56 -04:00
|
|
|
gitaly: { version: Gitaly::Server.all.first.server_version, servers: Gitaly::Server.count, filesystems: Gitaly::Server.filesystems },
|
|
|
|
gitlab_pages: { enabled: Gitlab.config.pages.enabled, version: Gitlab::Pages::VERSION },
|
2017-09-15 12:23:56 -04:00
|
|
|
database: { adapter: Gitlab::Database.adapter_name, version: Gitlab::Database.version }
|
|
|
|
}
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
2017-07-19 10:45:28 -04:00
|
|
|
|
2019-12-04 16:07:31 -05:00
|
|
|
def ingress_modsecurity_usage
|
|
|
|
::Clusters::Applications::IngressModsecurityUsageService.new.execute
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-07-19 10:45:28 -04:00
|
|
|
def services_usage
|
2020-02-17 13:09:00 -05:00
|
|
|
service_counts = count(Service.active.where(template: false).where.not(type: 'JiraService').group(:type), fallback: Hash.new(-1), batch: false)
|
2020-01-09 04:07:51 -05:00
|
|
|
|
|
|
|
results = Service.available_services_names.each_with_object({}) do |service_name, response|
|
|
|
|
response["projects_#{service_name}_active".to_sym] = service_counts["#{service_name}_service".camelize] || 0
|
|
|
|
end
|
2017-07-19 10:45:28 -04:00
|
|
|
|
2020-01-09 04:07:51 -05:00
|
|
|
# Keep old Slack keys for backward compatibility, https://gitlab.com/gitlab-data/analytics/issues/3241
|
|
|
|
results[:projects_slack_notifications_active] = results[:projects_slack_active]
|
|
|
|
results[:projects_slack_slash_active] = results[:projects_slack_slash_commands_active]
|
|
|
|
|
|
|
|
results.merge(jira_usage)
|
2018-11-03 20:37:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def jira_usage
|
|
|
|
# Jira Cloud does not support custom domains as per https://jira.atlassian.com/browse/CLOUD-6999
|
|
|
|
# so we can just check for subdomains of atlassian.net
|
|
|
|
|
2019-09-16 11:06:26 -04:00
|
|
|
results = {
|
|
|
|
projects_jira_server_active: 0,
|
|
|
|
projects_jira_cloud_active: 0,
|
|
|
|
projects_jira_active: -1
|
2018-11-03 20:37:47 -04:00
|
|
|
}
|
2019-09-16 11:06:26 -04:00
|
|
|
|
2019-11-13 07:06:22 -05:00
|
|
|
Service.active
|
|
|
|
.by_type(:JiraService)
|
2019-09-16 11:06:26 -04:00
|
|
|
.includes(:jira_tracker_data)
|
|
|
|
.find_in_batches(batch_size: BATCH_SIZE) do |services|
|
|
|
|
counts = services.group_by do |service|
|
2019-09-26 08:06:00 -04:00
|
|
|
# TODO: Simplify as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
|
2019-09-16 11:06:26 -04:00
|
|
|
service_url = service.data_fields&.url || (service.properties && service.properties['url'])
|
|
|
|
service_url&.include?('.atlassian.net') ? :cloud : :server
|
|
|
|
end
|
|
|
|
|
|
|
|
results[:projects_jira_server_active] += counts[:server].count if counts[:server]
|
|
|
|
results[:projects_jira_cloud_active] += counts[:cloud].count if counts[:cloud]
|
|
|
|
if results[:projects_jira_active] == -1
|
2020-02-17 13:09:00 -05:00
|
|
|
results[:projects_jira_active] = count(services, batch: false)
|
2019-09-16 11:06:26 -04:00
|
|
|
else
|
2020-02-17 13:09:00 -05:00
|
|
|
results[:projects_jira_active] += count(services, batch: false)
|
2019-09-16 11:06:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
results
|
2017-07-19 10:45:28 -04:00
|
|
|
end
|
2020-01-09 04:07:51 -05:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-09-05 08:34:59 -04:00
|
|
|
|
2019-02-06 12:56:16 -05:00
|
|
|
def user_preferences_usage
|
|
|
|
{} # augmented in EE
|
|
|
|
end
|
|
|
|
|
2020-02-17 13:09:00 -05:00
|
|
|
def count(relation, column = nil, fallback: -1, batch: true)
|
|
|
|
if batch && Feature.enabled?(:usage_ping_batch_counter)
|
|
|
|
Gitlab::Database::BatchCount.batch_count(relation, column)
|
|
|
|
else
|
|
|
|
relation.count
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
fallback
|
|
|
|
end
|
|
|
|
|
|
|
|
def distinct_count(relation, column = nil, fallback: -1, batch: true)
|
|
|
|
if batch && Feature.enabled?(:usage_ping_batch_counter)
|
|
|
|
Gitlab::Database::BatchCount.batch_distinct_count(relation, column)
|
|
|
|
else
|
|
|
|
relation.distinct_count_by(column)
|
|
|
|
end
|
2018-09-05 08:34:59 -04:00
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
fallback
|
|
|
|
end
|
2018-12-06 11:07:14 -05:00
|
|
|
|
|
|
|
def approximate_counts
|
|
|
|
approx_counts = Gitlab::Database::Count.approximate_counts(APPROXIMATE_COUNT_MODELS)
|
|
|
|
|
|
|
|
APPROXIMATE_COUNT_MODELS.each_with_object({}) do |model, result|
|
|
|
|
key = model.name.underscore.pluralize.to_sym
|
|
|
|
|
|
|
|
result[key] = approx_counts[model] || -1
|
|
|
|
end
|
|
|
|
end
|
2019-05-17 05:10:29 -04:00
|
|
|
|
|
|
|
def installation_type
|
|
|
|
if Rails.env.production?
|
|
|
|
Gitlab::INSTALLATION_TYPE
|
|
|
|
else
|
|
|
|
"gitlab-development-kit"
|
|
|
|
end
|
|
|
|
end
|
2017-04-05 08:29:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
Gitlab::UsageData.prepend_if_ee('EE::Gitlab::UsageData')
|