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

3 4 5
module Gitlab
  class UsageData
    class << self
6 7
      def data(force_refresh: false)
        Rails.cache.fetch('usage_data', force: force_refresh, expires_in: 2.weeks) { uncached_data }
8 9 10 11
      end

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

18 19
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
20 21
      end

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

        usage_data
      end

36
      # rubocop:disable Metrics/AbcSize
37
      # rubocop: disable CodeReuse/ActiveRecord
38 39 40
      def system_usage_data
        {
          counts: {
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
            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),
            environments: count(::Environment),
            clusters: count(::Clusters::Cluster),
            clusters_enabled: count(::Clusters::Cluster.enabled),
            clusters_disabled: count(::Clusters::Cluster.disabled),
            clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled),
            clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
            clusters_applications_helm: count(::Clusters::Applications::Helm.installed),
            clusters_applications_ingress: count(::Clusters::Applications::Ingress.installed),
            clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.installed),
            clusters_applications_runner: count(::Clusters::Applications::Runner.installed),
            in_review_folder: count(::Environment.in_review_folder),
            groups: count(Group),
            issues: count(Issue),
            keys: count(Key),
            label_lists: count(List.label),
            labels: count(Label),
            lfs_objects: count(LfsObject),
            merge_requests: count(MergeRequest),
            milestone_lists: count(List.milestone),
            milestones: count(Milestone),
            notes: count(Note),
            pages_domains: count(PagesDomain),
            projects: count(Project),
            projects_imported_from_github: count(Project.where(import_type: 'github')),
            protected_branches: count(ProtectedBranch),
            releases: count(Release),
            remote_mirrors: count(RemoteMirror),
            snippets: count(Snippet),
            todos: count(Todo),
            uploads: count(Upload),
            web_hooks: count(WebHook)
86
          }.merge(services_usage)
87 88
        }
      end
89
      # rubocop: enable CodeReuse/ActiveRecord
90

91
      def cycle_analytics_usage_data
92
        Gitlab::CycleAnalytics::UsageData.new.to_json
93 94
      end

95 96 97 98 99 100
      def features_usage_data
        features_usage_data_ce
      end

      def features_usage_data_ce
        {
101 102 103 104 105
          container_registry_enabled: Gitlab.config.registry.enabled,
          gitlab_shared_runners_enabled: Gitlab.config.gitlab_ci.shared_runners_enabled,
          gravatar_enabled: Gitlab::CurrentSettings.gravatar_enabled?,
          ldap_enabled: Gitlab.config.ldap.enabled,
          mattermost_enabled: Gitlab.config.mattermost.enabled,
106
          omniauth_enabled: Gitlab::Auth.omniauth_enabled?,
107 108
          reply_by_email_enabled: Gitlab::IncomingEmail.enabled?,
          signup_enabled: Gitlab::CurrentSettings.allow_signup?
S
Sean McGivern 已提交
109
        }
110
      end
111

T
Tiago Botelho 已提交
112
      def usage_counters
113 114 115
        {
          web_ide_commits: Gitlab::WebIdeCommitsCounter.total_count
        }
T
Tiago Botelho 已提交
116 117
      end

118 119 120 121 122 123
      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 }
        }
124
      end
125

126
      # rubocop: disable CodeReuse/ActiveRecord
127 128 129 130 131 132 133 134
      def services_usage
        types = {
          JiraService: :projects_jira_active,
          SlackService: :projects_slack_notifications_active,
          SlackSlashCommandsService: :projects_slack_slash_active,
          PrometheusService: :projects_prometheus_active
        }

135
        results = count(Service.unscoped.where(type: types.keys, active: true).group(:type), fallback: Hash.new(-1))
136
        types.each_with_object({}) { |(klass, key), response| response[key] = results[klass.to_s] || 0 }
137
      end
138 139 140 141 142 143

      def count(relation, fallback: -1)
        relation.count
      rescue ActiveRecord::StatementInvalid
        fallback
      end
144
      # rubocop: enable CodeReuse/ActiveRecord
145 146 147
    end
  end
end