usage_data.rb 10.9 KB
Newer Older
G
gfyoung 已提交
1 2
# frozen_string_literal: true

3 4
module Gitlab
  class UsageData
5
    APPROXIMATE_COUNT_MODELS = [Label, MergeRequest, Note, Todo].freeze
6
    BATCH_SIZE = 100
7

8
    class << self
9
      def data(force_refresh: false)
A
Alex Kalderimis 已提交
10 11 12
        Rails.cache.fetch('usage_data', force: force_refresh, expires_in: 2.weeks) do
          uncached_data
        end
13 14 15
      end

      def uncached_data
16 17
        license_usage_data
          .merge(system_usage_data)
18 19 20
          .merge(features_usage_data)
          .merge(components_usage_data)
          .merge(cycle_analytics_usage_data)
21 22
      end

23 24
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
25 26
      end

27 28
      def license_usage_data
        usage_data = {
29
          uuid: Gitlab::CurrentSettings.uuid,
30 31
          hostname: Gitlab.config.gitlab.host,
          version: Gitlab::VERSION,
32
          installation_type: installation_type,
33
          active_user_count: count(User.active),
34 35 36 37 38 39 40
          recorded_at: Time.now,
          edition: 'CE'
        }

        usage_data
      end

41
      # rubocop: disable Metrics/AbcSize
42
      # rubocop: disable CodeReuse/ActiveRecord
43 44 45
      def system_usage_data
        {
          counts: {
46 47 48 49 50 51 52 53 54 55 56 57 58 59
            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),
60 61
            successful_deployments: count(Deployment.success),
            failed_deployments: count(Deployment.failed),
62 63 64
            environments: count(::Environment),
            clusters: count(::Clusters::Cluster),
            clusters_enabled: count(::Clusters::Cluster.enabled),
65 66
            project_clusters_enabled: count(::Clusters::Cluster.enabled.project_type),
            group_clusters_enabled: count(::Clusters::Cluster.enabled.group_type),
67
            clusters_disabled: count(::Clusters::Cluster.disabled),
68 69
            project_clusters_disabled: count(::Clusters::Cluster.disabled.project_type),
            group_clusters_disabled: count(::Clusters::Cluster.disabled.group_type),
70
            clusters_platforms_eks: count(::Clusters::Cluster.aws_installed.enabled),
71 72
            clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled),
            clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
73 74 75
            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),
76
            clusters_applications_crossplane: count(::Clusters::Applications::Crossplane.available),
77 78 79
            clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.available),
            clusters_applications_runner: count(::Clusters::Applications::Runner.available),
            clusters_applications_knative: count(::Clusters::Applications::Knative.available),
80
            clusters_applications_elastic_stack: count(::Clusters::Applications::ElasticStack.available),
81
            clusters_applications_jupyter: count(::Clusters::Applications::Jupyter.available),
82
            in_review_folder: count(::Environment.in_review_folder),
83
            grafana_integrated_projects: count(GrafanaIntegration.enabled),
84 85
            groups: count(Group),
            issues: count(Issue),
86
            issues_created_from_gitlab_error_tracking_ui: count(SentryIssue),
87 88
            issues_with_associated_zoom_link: count(ZoomMeeting.added_to_issue),
            issues_using_zoom_quick_actions: count(ZoomMeeting.select(:issue_id).distinct),
89
            issues_with_embedded_grafana_charts_approx: ::Gitlab::GrafanaEmbedUsageData.issue_count,
90 91 92 93 94 95
            keys: count(Key),
            label_lists: count(List.label),
            lfs_objects: count(LfsObject),
            milestone_lists: count(List.milestone),
            milestones: count(Milestone),
            pages_domains: count(PagesDomain),
96
            pool_repositories: count(PoolRepository),
97 98
            projects: count(Project),
            projects_imported_from_github: count(Project.where(import_type: 'github')),
99
            projects_with_repositories_enabled: count(ProjectFeature.where('repository_access_level > ?', ProjectFeature::DISABLED)),
L
Logan King 已提交
100
            projects_with_error_tracking_enabled: count(::ErrorTracking::ProjectErrorTrackingSetting.where(enabled: true)),
101 102 103 104
            protected_branches: count(ProtectedBranch),
            releases: count(Release),
            remote_mirrors: count(RemoteMirror),
            snippets: count(Snippet),
105 106
            suggestions: count(Suggestion),
            todos: count(Todo),
107 108
            uploads: count(Upload),
            web_hooks: count(WebHook)
109 110 111 112
          }.merge(
            services_usage,
            approximate_counts,
            usage_counters,
113 114
            user_preferences_usage,
            ingress_modsecurity_usage
115 116
          )
        }
117
      end
118
      # rubocop: enable CodeReuse/ActiveRecord
119
      # rubocop: enable Metrics/AbcSize
120

121
      def cycle_analytics_usage_data
122
        Gitlab::CycleAnalytics::UsageData.new.to_json
123 124
      end

125 126 127 128 129 130
      def features_usage_data
        features_usage_data_ce
      end

      def features_usage_data_ce
        {
131
          container_registry_enabled: Gitlab.config.registry.enabled,
132
          dependency_proxy_enabled: Gitlab.config.try(:dependency_proxy)&.enabled,
133 134
          gitlab_shared_runners_enabled: Gitlab.config.gitlab_ci.shared_runners_enabled,
          gravatar_enabled: Gitlab::CurrentSettings.gravatar_enabled?,
135
          influxdb_metrics_enabled: Gitlab::Metrics.influx_metrics_enabled?,
136 137
          ldap_enabled: Gitlab.config.ldap.enabled,
          mattermost_enabled: Gitlab.config.mattermost.enabled,
138
          omniauth_enabled: Gitlab::Auth.omniauth_enabled?,
139
          prometheus_metrics_enabled: Gitlab::Metrics.prometheus_metrics_enabled?,
140
          reply_by_email_enabled: Gitlab::IncomingEmail.enabled?,
141
          signup_enabled: Gitlab::CurrentSettings.allow_signup?,
142 143
          web_ide_clientside_preview_enabled: Gitlab::CurrentSettings.web_ide_clientside_preview_enabled?,
          ingress_modsecurity_enabled: Feature.enabled?(:ingress_modsecurity)
S
Sean McGivern 已提交
144
        }
145
      end
146

A
Alex Kalderimis 已提交
147
      # @return [Hash<Symbol, Integer>]
T
Tiago Botelho 已提交
148
      def usage_counters
A
Alex Kalderimis 已提交
149 150 151 152 153
        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
154
        [
155 156 157 158 159 160 161 162 163
          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
164
        ]
T
Tiago Botelho 已提交
165 166
      end

167 168 169
      def components_usage_data
        {
          git: { version: Gitlab::Git.version },
170 171
          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 },
172 173
          database: { adapter: Gitlab::Database.adapter_name, version: Gitlab::Database.version }
        }
174
      end
175

176 177 178 179
      def ingress_modsecurity_usage
        ::Clusters::Applications::IngressModsecurityUsageService.new.execute
      end

180
      # rubocop: disable CodeReuse/ActiveRecord
181
      def services_usage
182
        service_counts = count(Service.active.where(template: false).where.not(type: 'JiraService').group(:type), fallback: Hash.new(-1))
183 184 185 186

        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
187

188 189 190 191 192
        # 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)
193 194 195 196 197 198
      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

199 200 201 202
        results = {
          projects_jira_server_active: 0,
          projects_jira_cloud_active: 0,
          projects_jira_active: -1
203
        }
204

205 206
        Service.active
          .by_type(:JiraService)
207 208 209
          .includes(:jira_tracker_data)
          .find_in_batches(batch_size: BATCH_SIZE) do |services|
          counts = services.group_by do |service|
210
            # TODO: Simplify as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
211 212 213 214 215 216 217 218 219 220 221 222 223 224
            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
            results[:projects_jira_active] = count(services)
          else
            results[:projects_jira_active] += count(services)
          end
        end

        results
225
      end
226
      # rubocop: enable CodeReuse/ActiveRecord
227

228 229 230 231
      def user_preferences_usage
        {} # augmented in EE
      end

232 233
      def count(relation, fallback: -1)
        relation.count
234 235 236
      rescue ActiveRecord::StatementInvalid
        fallback
      end
237 238 239 240 241 242 243 244 245 246

      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
247 248 249 250 251 252 253 254

      def installation_type
        if Rails.env.production?
          Gitlab::INSTALLATION_TYPE
        else
          "gitlab-development-kit"
        end
      end
255 256 257
    end
  end
end
258 259

Gitlab::UsageData.prepend_if_ee('EE::Gitlab::UsageData')