usage_data.rb 2.2 KB
Newer Older
1 2
module Gitlab
  class UsageData
3 4
    include Gitlab::CurrentSettings

5
    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 12 13
      end

      def uncached_data
        license_usage_data.merge(system_usage_data)
      end

14 15
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
16 17 18 19 20 21 22
      end

      def system_usage_data
        {
          counts: {
            boards: Board.count,
            ci_builds: ::Ci::Build.count,
23 24
            ci_internal_pipelines: ::Ci::Pipeline.internal.count,
            ci_external_pipelines: ::Ci::Pipeline.external.count,
25 26
            ci_runners: ::Ci::Runner.count,
            ci_triggers: ::Ci::Trigger.count,
27
            ci_pipeline_schedules: ::Ci::PipelineSchedule.count,
28 29 30
            deploy_keys: DeployKey.count,
            deployments: Deployment.count,
            environments: Environment.count,
31
            in_review_folder: Environment.in_review_folder.count,
32 33 34 35 36 37 38 39 40 41
            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,
42
            projects_imported_from_github: Project.where(import_type: 'github').count,
43
            projects_prometheus_active: PrometheusService.active.count,
44 45 46 47
            protected_branches: ProtectedBranch.count,
            releases: Release.count,
            snippets: Snippet.count,
            todos: Todo.count,
R
Robert Speicher 已提交
48
            uploads: Upload.count,
49 50 51 52 53 54
            web_hooks: WebHook.count
          }
        }
      end

      def license_usage_data
S
Sean McGivern 已提交
55 56
        usage_data = {
          uuid: current_application_settings.uuid,
S
Sean McGivern 已提交
57
          hostname: Gitlab.config.gitlab.host,
S
Sean McGivern 已提交
58 59 60 61 62 63
          version: Gitlab::VERSION,
          active_user_count: User.active.count,
          recorded_at: Time.now,
          mattermost_enabled: Gitlab.config.mattermost.enabled,
          edition: 'CE'
        }
64 65 66 67 68 69

        usage_data
      end
    end
  end
end