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

3 4
module Gitlab
  class UsageData
5
    BATCH_SIZE = 100
6

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

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

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

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

        usage_data
      end

40
      # rubocop: disable Metrics/AbcSize
41
      # rubocop: disable CodeReuse/ActiveRecord
42 43 44
      def system_usage_data
        {
          counts: {
45 46 47 48 49 50 51 52 53 54 55 56 57 58
            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),
59 60
            successful_deployments: count(Deployment.success),
            failed_deployments: count(Deployment.failed),
61 62 63
            environments: count(::Environment),
            clusters: count(::Clusters::Cluster),
            clusters_enabled: count(::Clusters::Cluster.enabled),
64 65
            project_clusters_enabled: count(::Clusters::Cluster.enabled.project_type),
            group_clusters_enabled: count(::Clusters::Cluster.enabled.group_type),
66
            clusters_disabled: count(::Clusters::Cluster.disabled),
67 68
            project_clusters_disabled: count(::Clusters::Cluster.disabled.project_type),
            group_clusters_disabled: count(::Clusters::Cluster.disabled.group_type),
69 70
            clusters_platforms_eks: count(::Clusters::Cluster.aws_installed.enabled),
            clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled),
71
            clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
72 73 74
            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),
75
            clusters_applications_crossplane: count(::Clusters::Applications::Crossplane.available),
76 77 78
            clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.available),
            clusters_applications_runner: count(::Clusters::Applications::Runner.available),
            clusters_applications_knative: count(::Clusters::Applications::Knative.available),
79
            clusters_applications_elastic_stack: count(::Clusters::Applications::ElasticStack.available),
80
            clusters_applications_jupyter: count(::Clusters::Applications::Jupyter.available),
81
            in_review_folder: count(::Environment.in_review_folder),
82
            grafana_integrated_projects: count(GrafanaIntegration.enabled),
83 84
            groups: count(Group),
            issues: count(Issue),
85
            issues_created_from_gitlab_error_tracking_ui: count(SentryIssue),
86
            issues_with_associated_zoom_link: count(ZoomMeeting.added_to_issue),
87
            issues_using_zoom_quick_actions: distinct_count(ZoomMeeting, :issue_id),
88
            issues_with_embedded_grafana_charts_approx: ::Gitlab::GrafanaEmbedUsageData.issue_count,
89
            incident_issues: count(::Issue.authored(::User.alert_bot)),
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
            projects_with_alerts_service_enabled: count(AlertsService.active),
102
            projects_with_prometheus_alerts: distinct_count(PrometheusAlert, :project_id),
103 104 105 106
            protected_branches: count(ProtectedBranch),
            releases: count(Release),
            remote_mirrors: count(RemoteMirror),
            snippets: count(Snippet),
107 108
            suggestions: count(Suggestion),
            todos: count(Todo),
109
            uploads: count(Upload),
110 111 112 113
            web_hooks: count(WebHook),
            labels: count(Label),
            merge_requests: count(MergeRequest),
            notes: count(Note)
114 115 116
          }.merge(
            services_usage,
            usage_counters,
117 118
            user_preferences_usage,
            ingress_modsecurity_usage
119 120
          )
        }
121
      end
122
      # rubocop: enable CodeReuse/ActiveRecord
123
      # rubocop: enable Metrics/AbcSize
124

125
      def cycle_analytics_usage_data
126
        Gitlab::CycleAnalytics::UsageData.new.to_json
127 128
      rescue ActiveRecord::StatementInvalid
        { avg_cycle_analytics: {} }
129 130
      end

131 132 133 134 135 136
      def features_usage_data
        features_usage_data_ce
      end

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

A
Alex Kalderimis 已提交
153
      # @return [Hash<Symbol, Integer>]
T
Tiago Botelho 已提交
154
      def usage_counters
A
Alex Kalderimis 已提交
155 156 157 158 159
        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
160
        [
161 162 163 164 165 166 167 168 169
          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
170
        ]
T
Tiago Botelho 已提交
171 172
      end

173 174 175
      def components_usage_data
        {
          git: { version: Gitlab::Git.version },
176 177
          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 },
178 179
          database: { adapter: Gitlab::Database.adapter_name, version: Gitlab::Database.version },
          app_server: { type: app_server_type }
180
        }
181
      end
182

183 184 185 186 187 188 189 190
      def app_server_type
        Gitlab::Runtime.identify.to_s
      rescue Gitlab::Runtime::IdentificationError => e
        Gitlab::AppLogger.error(e.message)
        Gitlab::ErrorTracking.track_exception(e)
        'unknown_app_server_type'
      end

191 192 193 194
      def ingress_modsecurity_usage
        ::Clusters::Applications::IngressModsecurityUsageService.new.execute
      end

195
      # rubocop: disable CodeReuse/ActiveRecord
196
      def services_usage
197 198
        results = Service.available_services_names.without('jira').each_with_object({}) do |service_name, response|
          response["projects_#{service_name}_active".to_sym] = count(Service.active.where(template: false, type: "#{service_name}_service".camelize))
199
        end
200

201 202 203 204 205
        # 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)
206 207 208 209 210 211
      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

212 213 214
        results = {
          projects_jira_server_active: 0,
          projects_jira_cloud_active: 0,
215
          projects_jira_active: 0
216
        }
217

218 219
        Service.active
          .by_type(:JiraService)
220 221 222
          .includes(:jira_tracker_data)
          .find_in_batches(batch_size: BATCH_SIZE) do |services|
          counts = services.group_by do |service|
223
            # TODO: Simplify as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
224 225 226 227 228 229
            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]
230
          results[:projects_jira_active] += services.size
231 232 233
        end

        results
234 235
      rescue ActiveRecord::StatementInvalid
        { projects_jira_server_active: -1, projects_jira_cloud_active: -1, projects_jira_active: -1 }
236
      end
237
      # rubocop: enable CodeReuse/ActiveRecord
238

239 240 241 242
      def user_preferences_usage
        {} # augmented in EE
      end

243
      def count(relation, column = nil, fallback: -1, batch: true, start: nil, finish: nil)
244
        if batch && Feature.enabled?(:usage_ping_batch_counter, default_enabled: true)
245
          Gitlab::Database::BatchCount.batch_count(relation, column, start: start, finish: finish)
246 247 248 249 250 251 252
        else
          relation.count
        end
      rescue ActiveRecord::StatementInvalid
        fallback
      end

253
      def distinct_count(relation, column = nil, fallback: -1, batch: true, start: nil, finish: nil)
254
        if batch && Feature.enabled?(:usage_ping_batch_counter, default_enabled: true)
255
          Gitlab::Database::BatchCount.batch_distinct_count(relation, column, start: start, finish: finish)
256 257 258
        else
          relation.distinct_count_by(column)
        end
259 260 261
      rescue ActiveRecord::StatementInvalid
        fallback
      end
262

263 264 265 266 267 268 269
      def installation_type
        if Rails.env.production?
          Gitlab::INSTALLATION_TYPE
        else
          "gitlab-development-kit"
        end
      end
270 271 272
    end
  end
end
273 274

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