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

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

7
    class << self
8 9
      def data(force_refresh: false)
        Rails.cache.fetch('usage_data', force: force_refresh, expires_in: 2.weeks) { uncached_data }
10 11 12 13
      end

      def uncached_data
        license_usage_data.merge(system_usage_data)
14 15
                          .merge(features_usage_data)
                          .merge(components_usage_data)
16
                          .merge(cycle_analytics_usage_data)
T
Tiago Botelho 已提交
17
                          .merge(usage_counters)
18 19
      end

20 21
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
22 23
      end

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

        usage_data
      end

38
      # rubocop:disable Metrics/AbcSize
39
      # rubocop: disable CodeReuse/ActiveRecord
40 41 42
      def system_usage_data
        {
          counts: {
43 44 45 46 47 48 49 50 51 52 53 54 55 56
            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),
57 58
            successful_deployments: count(Deployment.success),
            failed_deployments: count(Deployment.failed),
59 60 61
            environments: count(::Environment),
            clusters: count(::Clusters::Cluster),
            clusters_enabled: count(::Clusters::Cluster.enabled),
62 63
            project_clusters_enabled: count(::Clusters::Cluster.enabled.project_type),
            group_clusters_enabled: count(::Clusters::Cluster.enabled.group_type),
64
            clusters_disabled: count(::Clusters::Cluster.disabled),
65 66
            project_clusters_disabled: count(::Clusters::Cluster.disabled.project_type),
            group_clusters_disabled: count(::Clusters::Cluster.disabled.group_type),
67 68
            clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled),
            clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
69 70 71 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),
            clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.available),
            clusters_applications_runner: count(::Clusters::Applications::Runner.available),
            clusters_applications_knative: count(::Clusters::Applications::Knative.available),
75 76 77 78 79 80 81 82 83 84 85
            in_review_folder: count(::Environment.in_review_folder),
            groups: count(Group),
            issues: count(Issue),
            keys: count(Key),
            label_lists: count(List.label),
            lfs_objects: count(LfsObject),
            milestone_lists: count(List.milestone),
            milestones: count(Milestone),
            pages_domains: count(PagesDomain),
            projects: count(Project),
            projects_imported_from_github: count(Project.where(import_type: 'github')),
86
            projects_with_repositories_enabled: count(ProjectFeature.where('repository_access_level > ?', ProjectFeature::DISABLED)),
L
Logan King 已提交
87
            projects_with_error_tracking_enabled: count(::ErrorTracking::ProjectErrorTrackingSetting.where(enabled: true)),
88 89 90 91
            protected_branches: count(ProtectedBranch),
            releases: count(Release),
            remote_mirrors: count(RemoteMirror),
            snippets: count(Snippet),
92 93
            suggestions: count(Suggestion),
            todos: count(Todo),
94 95
            uploads: count(Upload),
            web_hooks: count(WebHook)
96 97 98
          }
          .merge(services_usage)
          .merge(approximate_counts)
99 100 101 102 103
        }.tap do |data|
          if Feature.enabled?(:group_overview_security_dashboard)
            data[:counts][:user_preferences] = user_preferences_usage
          end
        end
104
      end
105
      # rubocop: enable CodeReuse/ActiveRecord
106

107
      def cycle_analytics_usage_data
108
        Gitlab::CycleAnalytics::UsageData.new.to_json
109 110
      end

111 112 113 114 115 116
      def features_usage_data
        features_usage_data_ce
      end

      def features_usage_data_ce
        {
117 118 119
          container_registry_enabled: Gitlab.config.registry.enabled,
          gitlab_shared_runners_enabled: Gitlab.config.gitlab_ci.shared_runners_enabled,
          gravatar_enabled: Gitlab::CurrentSettings.gravatar_enabled?,
120
          influxdb_metrics_enabled: Gitlab::Metrics.influx_metrics_enabled?,
121 122
          ldap_enabled: Gitlab.config.ldap.enabled,
          mattermost_enabled: Gitlab.config.mattermost.enabled,
123
          omniauth_enabled: Gitlab::Auth.omniauth_enabled?,
124
          prometheus_metrics_enabled: Gitlab::Metrics.prometheus_metrics_enabled?,
125 126
          reply_by_email_enabled: Gitlab::IncomingEmail.enabled?,
          signup_enabled: Gitlab::CurrentSettings.allow_signup?
S
Sean McGivern 已提交
127
        }
128
      end
129

T
Tiago Botelho 已提交
130
      def usage_counters
131 132 133
        {
          web_ide_commits: Gitlab::WebIdeCommitsCounter.total_count
        }
T
Tiago Botelho 已提交
134 135
      end

136 137 138 139 140 141
      def components_usage_data
        {
          gitlab_pages: { enabled: Gitlab.config.pages.enabled, version: Gitlab::Pages::VERSION },
          git: { version: Gitlab::Git.version },
          database: { adapter: Gitlab::Database.adapter_name, version: Gitlab::Database.version }
        }
142
      end
143

144
      # rubocop: disable CodeReuse/ActiveRecord
145 146 147 148 149 150 151
      def services_usage
        types = {
          SlackService: :projects_slack_notifications_active,
          SlackSlashCommandsService: :projects_slack_slash_active,
          PrometheusService: :projects_prometheus_active
        }

152
        results = count(Service.unscoped.where(type: types.keys, active: true).group(:type), fallback: Hash.new(-1))
153
        types.each_with_object({}) { |(klass, key), response| response[key] = results[klass.to_s] || 0 }
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
          .merge(jira_usage)
      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
        services = count(
          Service.unscoped.where(type: :JiraService, active: true)
            .group("CASE WHEN properties LIKE '%.atlassian.net%' THEN 'cloud' ELSE 'server' END"),
          fallback: Hash.new(-1)
        )

        {
          projects_jira_server_active: services['server'] || 0,
          projects_jira_cloud_active: services['cloud'] || 0,
          projects_jira_active: services['server'] == -1 ? -1 : services.values.sum
        }
171
      end
172

173 174 175 176
      def user_preferences_usage
        {} # augmented in EE
      end

177 178 179 180 181
      def count(relation, fallback: -1)
        relation.count
      rescue ActiveRecord::StatementInvalid
        fallback
      end
182
      # rubocop: enable CodeReuse/ActiveRecord
183 184 185 186 187 188 189 190 191 192

      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
193 194 195
    end
  end
end