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

      def uncached_data
        license_usage_data.merge(system_usage_data)
10 11
                          .merge(features_usage_data)
                          .merge(components_usage_data)
12
                          .merge(cycle_analytics_usage_data)
13 14
      end

15 16
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
17 18
      end

19 20
      def license_usage_data
        usage_data = {
21
          uuid: Gitlab::CurrentSettings.uuid,
22 23 24 25 26 27 28 29 30 31 32
          hostname: Gitlab.config.gitlab.host,
          version: Gitlab::VERSION,
          active_user_count: User.active.count,
          recorded_at: Time.now,
          mattermost_enabled: Gitlab.config.mattermost.enabled,
          edition: 'CE'
        }

        usage_data
      end

33 34 35 36 37
      def system_usage_data
        {
          counts: {
            boards: Board.count,
            ci_builds: ::Ci::Build.count,
38 39
            ci_internal_pipelines: ::Ci::Pipeline.internal.count,
            ci_external_pipelines: ::Ci::Pipeline.external.count,
40 41
            ci_pipeline_config_auto_devops: ::Ci::Pipeline.auto_devops_source.count,
            ci_pipeline_config_repository: ::Ci::Pipeline.repository_source.count,
42 43
            ci_runners: ::Ci::Runner.count,
            ci_triggers: ::Ci::Trigger.count,
44
            ci_pipeline_schedules: ::Ci::PipelineSchedule.count,
45 46
            auto_devops_enabled: ::ProjectAutoDevops.enabled.count,
            auto_devops_disabled: ::ProjectAutoDevops.disabled.count,
47 48
            deploy_keys: DeployKey.count,
            deployments: Deployment.count,
49
            environments: ::Environment.count,
50 51 52
            clusters: ::Clusters::Cluster.count,
            clusters_enabled: ::Clusters::Cluster.enabled.count,
            clusters_disabled: ::Clusters::Cluster.disabled.count,
53
            in_review_folder: ::Environment.in_review_folder.count,
54 55 56 57 58 59 60 61 62 63
            groups: Group.count,
            issues: Issue.count,
            keys: Key.count,
            labels: Label.count,
            lfs_objects: LfsObject.count,
            merge_requests: MergeRequest.count,
            milestones: Milestone.count,
            notes: Note.count,
            pages_domains: PagesDomain.count,
            projects: Project.count,
64
            projects_imported_from_github: Project.where(import_type: 'github').count,
65 66 67 68
            protected_branches: ProtectedBranch.count,
            releases: Release.count,
            snippets: Snippet.count,
            todos: Todo.count,
R
Robert Speicher 已提交
69
            uploads: Upload.count,
70
            web_hooks: WebHook.count
71
          }.merge(services_usage)
72 73 74
        }
      end

75
      def cycle_analytics_usage_data
76 77 78
        # We only want to generate this data for instances that use PostgreSQL
        return {} if Gitlab::Database.mysql?

79 80 81 82 83
        projects = Project.sorted_by_activity.limit(Gitlab::CycleAnalytics::UsageData::PROJECTS_LIMIT)

        Gitlab::CycleAnalytics::UsageData.new(projects, { from: 7.days.ago }).to_json
      end

84 85 86 87 88 89
      def features_usage_data
        features_usage_data_ce
      end

      def features_usage_data_ce
        {
90
          signup: Gitlab::CurrentSettings.allow_signup?,
91
          ldap: Gitlab.config.ldap.enabled,
92
          gravatar: Gitlab::CurrentSettings.gravatar_enabled?,
93 94 95 96
          omniauth: Gitlab.config.omniauth.enabled,
          reply_by_email: Gitlab::IncomingEmail.enabled?,
          container_registry: Gitlab.config.registry.enabled,
          gitlab_shared_runners: Gitlab.config.gitlab_ci.shared_runners_enabled
S
Sean McGivern 已提交
97
        }
98
      end
99

100 101 102 103 104 105
      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 }
        }
106
      end
107 108 109 110 111 112 113 114 115 116 117 118

      def services_usage
        types = {
          JiraService: :projects_jira_active,
          SlackService: :projects_slack_notifications_active,
          SlackSlashCommandsService: :projects_slack_slash_active,
          PrometheusService: :projects_prometheus_active
        }

        results = Service.unscoped.where(type: types.keys, active: true).group(:type).count
        results.each_with_object({}) { |(key, value), response| response[types[key.to_sym]] = value  }
      end
119 120 121
    end
  end
end