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

3 4 5
# When developing usage data metrics use the below usage data interface methods
# unless you have good reasons to implement custom usage data
# See `lib/gitlab/utils/usage_data.rb`
6
#
7 8 9 10 11 12 13
# Examples
#   issues_using_zoom_quick_actions: distinct_count(ZoomMeeting, :issue_id),
#   active_user_count: count(User.active)
#   alt_usage_data { Gitlab::VERSION }
#   redis_usage_data(Gitlab::UsageDataCounters::WikiPageCounter)
#   redis_usage_data { ::Gitlab::UsageCounters::PodLogs.usage_totals[:total] }

14 15
module Gitlab
  class UsageData
16
    BATCH_SIZE = 100
17

18
    class << self
19 20
      include Gitlab::Utils::UsageData

21
      def data(force_refresh: false)
A
Alex Kalderimis 已提交
22 23 24
        Rails.cache.fetch('usage_data', force: force_refresh, expires_in: 2.weeks) do
          uncached_data
        end
25 26 27
      end

      def uncached_data
28 29
        license_usage_data
          .merge(system_usage_data)
30 31 32
          .merge(features_usage_data)
          .merge(components_usage_data)
          .merge(cycle_analytics_usage_data)
33
          .merge(object_store_usage_data)
34
          .merge(recording_ce_finish_data)
35 36
      end

37 38
      def to_json(force_refresh: false)
        data(force_refresh: force_refresh).to_json
39 40
      end

41
      def license_usage_data
42
        {
43
          recorded_at: Time.now, # should be calculated very first
44 45 46 47
          uuid: alt_usage_data { Gitlab::CurrentSettings.uuid },
          hostname: alt_usage_data { Gitlab.config.gitlab.host },
          version: alt_usage_data { Gitlab::VERSION },
          installation_type: alt_usage_data { installation_type },
48
          active_user_count: count(User.active),
49 50 51 52
          edition: 'CE'
        }
      end

53 54 55 56 57 58
      def recording_ce_finish_data
        {
          recording_ce_finished_at: Time.now
        }
      end

59
      # rubocop: disable Metrics/AbcSize
60
      # rubocop: disable CodeReuse/ActiveRecord
61
      def system_usage_data
62 63
        alert_bot_incident_count = count(::Issue.authored(::User.alert_bot))

64 65
        {
          counts: {
66 67 68 69 70 71 72 73 74 75 76 77 78 79
            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),
80 81
            successful_deployments: count(Deployment.success),
            failed_deployments: count(Deployment.failed),
82 83 84
            environments: count(::Environment),
            clusters: count(::Clusters::Cluster),
            clusters_enabled: count(::Clusters::Cluster.enabled),
85 86
            project_clusters_enabled: count(::Clusters::Cluster.enabled.project_type),
            group_clusters_enabled: count(::Clusters::Cluster.enabled.group_type),
87
            instance_clusters_enabled: count(::Clusters::Cluster.enabled.instance_type),
88
            clusters_disabled: count(::Clusters::Cluster.disabled),
89 90
            project_clusters_disabled: count(::Clusters::Cluster.disabled.project_type),
            group_clusters_disabled: count(::Clusters::Cluster.disabled.group_type),
91
            instance_clusters_disabled: count(::Clusters::Cluster.disabled.instance_type),
92 93
            clusters_platforms_eks: count(::Clusters::Cluster.aws_installed.enabled),
            clusters_platforms_gke: count(::Clusters::Cluster.gcp_installed.enabled),
94
            clusters_platforms_user: count(::Clusters::Cluster.user_provided.enabled),
95 96 97
            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),
98
            clusters_applications_crossplane: count(::Clusters::Applications::Crossplane.available),
99 100 101
            clusters_applications_prometheus: count(::Clusters::Applications::Prometheus.available),
            clusters_applications_runner: count(::Clusters::Applications::Runner.available),
            clusters_applications_knative: count(::Clusters::Applications::Knative.available),
102
            clusters_applications_elastic_stack: count(::Clusters::Applications::ElasticStack.available),
103
            clusters_applications_jupyter: count(::Clusters::Applications::Jupyter.available),
104
            clusters_management_project: count(::Clusters::Cluster.with_management_project),
105
            in_review_folder: count(::Environment.in_review_folder),
106
            grafana_integrated_projects: count(GrafanaIntegration.enabled),
107 108
            groups: count(Group),
            issues: count(Issue),
109
            issues_created_from_gitlab_error_tracking_ui: count(SentryIssue),
110
            issues_with_associated_zoom_link: count(ZoomMeeting.added_to_issue),
111
            issues_using_zoom_quick_actions: distinct_count(ZoomMeeting, :issue_id),
112
            issues_with_embedded_grafana_charts_approx: grafana_embed_usage_data,
113
            issues_created_gitlab_alerts: count(Issue.with_alert_management_alerts.not_authored_by(::User.alert_bot)),
114 115 116
            incident_issues: alert_bot_incident_count,
            alert_bot_incident_issues: alert_bot_incident_count,
            incident_labeled_issues: count(::Issue.with_label_attributes(IncidentManagement::CreateIssueService::INCIDENT_LABEL)),
117 118 119 120 121 122
            keys: count(Key),
            label_lists: count(List.label),
            lfs_objects: count(LfsObject),
            milestone_lists: count(List.milestone),
            milestones: count(Milestone),
            pages_domains: count(PagesDomain),
123
            pool_repositories: count(PoolRepository),
124 125
            projects: count(Project),
            projects_imported_from_github: count(Project.where(import_type: 'github')),
126
            projects_with_repositories_enabled: count(ProjectFeature.where('repository_access_level > ?', ProjectFeature::DISABLED)),
L
Logan King 已提交
127
            projects_with_error_tracking_enabled: count(::ErrorTracking::ProjectErrorTrackingSetting.where(enabled: true)),
128
            projects_with_alerts_service_enabled: count(AlertsService.active),
129
            projects_with_prometheus_alerts: distinct_count(PrometheusAlert, :project_id),
130
            projects_with_terraform_reports: distinct_count(::Ci::JobArtifact.terraform_reports, :project_id),
131
            projects_with_terraform_states: distinct_count(::Terraform::State, :project_id),
132 133 134 135
            protected_branches: count(ProtectedBranch),
            releases: count(Release),
            remote_mirrors: count(RemoteMirror),
            snippets: count(Snippet),
136
            suggestions: count(Suggestion),
137
            terraform_reports: count(::Ci::JobArtifact.terraform_reports),
138
            terraform_states: count(::Terraform::State),
139
            todos: count(Todo),
140
            uploads: count(Upload),
141 142 143 144
            web_hooks: count(WebHook),
            labels: count(Label),
            merge_requests: count(MergeRequest),
            notes: count(Note)
145 146 147
          }.merge(
            services_usage,
            usage_counters,
148
            user_preferences_usage,
149 150
            ingress_modsecurity_usage,
            container_expiration_policies_usage
151 152
          )
        }
153
      end
154
      # rubocop: enable CodeReuse/ActiveRecord
155
      # rubocop: enable Metrics/AbcSize
156

157
      def cycle_analytics_usage_data
158
        Gitlab::CycleAnalytics::UsageData.new.to_json
159 160
      rescue ActiveRecord::StatementInvalid
        { avg_cycle_analytics: {} }
161 162
      end

163 164 165 166 167 168 169 170
      # rubocop:disable CodeReuse/ActiveRecord
      def grafana_embed_usage_data
        count(Issue.joins('JOIN grafana_integrations USING (project_id)')
          .where("issues.description LIKE '%' || grafana_integrations.grafana_url || '%'")
          .where(grafana_integrations: { enabled: true }))
      end
      # rubocop: enable CodeReuse/ActiveRecord

171 172 173 174 175 176
      def features_usage_data
        features_usage_data_ce
      end

      def features_usage_data_ce
        {
177
          container_registry_enabled: alt_usage_data(fallback: nil) { Gitlab.config.registry.enabled },
178
          dependency_proxy_enabled: Gitlab.config.try(:dependency_proxy)&.enabled,
179 180 181 182 183 184 185 186 187
          gitlab_shared_runners_enabled: alt_usage_data(fallback: nil) { Gitlab.config.gitlab_ci.shared_runners_enabled },
          gravatar_enabled: alt_usage_data(fallback: nil) { Gitlab::CurrentSettings.gravatar_enabled? },
          ldap_enabled: alt_usage_data(fallback: nil) { Gitlab.config.ldap.enabled },
          mattermost_enabled: alt_usage_data(fallback: nil) { Gitlab.config.mattermost.enabled },
          omniauth_enabled: alt_usage_data(fallback: nil) { Gitlab::Auth.omniauth_enabled? },
          prometheus_metrics_enabled: alt_usage_data(fallback: nil) { Gitlab::Metrics.prometheus_metrics_enabled? },
          reply_by_email_enabled: alt_usage_data(fallback: nil) { Gitlab::IncomingEmail.enabled? },
          signup_enabled: alt_usage_data(fallback: nil) { Gitlab::CurrentSettings.allow_signup? },
          web_ide_clientside_preview_enabled: alt_usage_data(fallback: nil) { Gitlab::CurrentSettings.web_ide_clientside_preview_enabled? },
188
          ingress_modsecurity_enabled: Feature.enabled?(:ingress_modsecurity),
189
          grafana_link_enabled: alt_usage_data(fallback: nil) { Gitlab::CurrentSettings.grafana_enabled? }
190
        }
191
      end
192

A
Alex Kalderimis 已提交
193
      # @return [Hash<Symbol, Integer>]
T
Tiago Botelho 已提交
194
      def usage_counters
195
        usage_data_counters.map { |counter| redis_usage_data(counter) }.reduce({}, :merge)
A
Alex Kalderimis 已提交
196 197 198 199
      end

      # @return [Array<#totals>] An array of objects that respond to `#totals`
      def usage_data_counters
200
        [
201 202 203 204 205 206 207 208
          Gitlab::UsageDataCounters::WikiPageCounter,
          Gitlab::UsageDataCounters::WebIdeCounter,
          Gitlab::UsageDataCounters::NoteCounter,
          Gitlab::UsageDataCounters::SnippetCounter,
          Gitlab::UsageDataCounters::SearchCounter,
          Gitlab::UsageDataCounters::CycleAnalyticsCounter,
          Gitlab::UsageDataCounters::ProductivityAnalyticsCounter,
          Gitlab::UsageDataCounters::SourceCodeCounter,
209 210
          Gitlab::UsageDataCounters::MergeRequestCounter,
          Gitlab::UsageDataCounters::DesignsCounter
211
        ]
T
Tiago Botelho 已提交
212 213
      end

214 215
      def components_usage_data
        {
216
          git: { version: alt_usage_data(fallback: { major: -1 }) { Gitlab::Git.version } },
217 218 219
          gitaly: {
            version: alt_usage_data { Gitaly::Server.all.first.server_version },
            servers: alt_usage_data { Gitaly::Server.count },
220
            clusters: alt_usage_data { Gitaly::Server.gitaly_clusters },
221
            filesystems: alt_usage_data(fallback: ["-1"]) { Gitaly::Server.filesystems }
222 223
          },
          gitlab_pages: {
224
            enabled: alt_usage_data(fallback: nil) { Gitlab.config.pages.enabled },
225 226 227 228 229 230
            version: alt_usage_data { Gitlab::Pages::VERSION }
          },
          database: {
            adapter: alt_usage_data { Gitlab::Database.adapter_name },
            version: alt_usage_data { Gitlab::Database.version }
          },
231
          app_server: { type: app_server_type }
232
        }
233
      end
234

235 236 237 238 239 240 241 242
      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

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
      def object_store_config(component)
        config = alt_usage_data(fallback: nil) do
          Settings[component]['object_store']
        end

        if config
          {
            enabled: alt_usage_data { Settings[component]['enabled'] },
            object_store: {
              enabled: alt_usage_data { config['enabled'] },
              direct_upload: alt_usage_data { config['direct_upload'] },
              background_upload: alt_usage_data { config['background_upload'] },
              provider: alt_usage_data { config['connection']['provider'] }
            }
          }
        else
          {
            enabled: alt_usage_data { Settings[component]['enabled'] }
          }
        end
      end

      def object_store_usage_data
        {
          object_store: {
            artifacts: object_store_config('artifacts'),
            external_diffs: object_store_config('external_diffs'),
            lfs: object_store_config('lfs'),
            uploads: object_store_config('uploads'),
            packages: object_store_config('packages')
          }
        }
      end

277
      def ingress_modsecurity_usage
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
        ##
        # This method measures usage of the Modsecurity Web Application Firewall across the entire
        # instance's deployed environments.
        #
        # NOTE: this service is an approximation as it does not yet take into account if environment
        # is enabled and only measures applications installed using GitLab Managed Apps (disregards
        # CI-based managed apps).
        #
        # More details: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28331#note_318621786
        ##

        column = ::Deployment.arel_table[:environment_id]
        {
          ingress_modsecurity_logging: distinct_count(successful_deployments_with_cluster(::Clusters::Applications::Ingress.modsecurity_enabled.logging), column),
          ingress_modsecurity_blocking: distinct_count(successful_deployments_with_cluster(::Clusters::Applications::Ingress.modsecurity_enabled.blocking), column),
          ingress_modsecurity_disabled: distinct_count(successful_deployments_with_cluster(::Clusters::Applications::Ingress.modsecurity_disabled), column),
          ingress_modsecurity_not_installed: distinct_count(successful_deployments_with_cluster(::Clusters::Applications::Ingress.modsecurity_not_installed), column)
        }
296 297
      end

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
      # rubocop: disable CodeReuse/ActiveRecord
      def container_expiration_policies_usage
        results = {}
        start = ::Project.minimum(:id)
        finish = ::Project.maximum(:id)

        results[:projects_with_expiration_policy_disabled] = distinct_count(::ContainerExpirationPolicy.where(enabled: false), :project_id, start: start, finish: finish)
        base = ::ContainerExpirationPolicy.active
        results[:projects_with_expiration_policy_enabled] = distinct_count(base, :project_id, start: start, finish: finish)

        %i[keep_n cadence older_than].each do |option|
          ::ContainerExpirationPolicy.public_send("#{option}_options").keys.each do |value| # rubocop: disable GitlabSecurity/PublicSend
            results["projects_with_expiration_policy_enabled_with_#{option}_set_to_#{value}".to_sym] = distinct_count(base.where(option => value), :project_id, start: start, finish: finish)
          end
        end

        results[:projects_with_expiration_policy_enabled_with_keep_n_unset] = distinct_count(base.where(keep_n: nil), :project_id, start: start, finish: finish)
        results[:projects_with_expiration_policy_enabled_with_older_than_unset] = distinct_count(base.where(older_than: nil), :project_id, start: start, finish: finish)

        results
      end
      # rubocop: enable CodeReuse/ActiveRecord

321
      # rubocop: disable CodeReuse/ActiveRecord
322
      def services_usage
323 324
        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))
325
        end
326

327 328 329 330
        # 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]

331
        results.merge(jira_usage).merge(jira_import_usage)
332 333 334 335 336 337
      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

338 339 340
        results = {
          projects_jira_server_active: 0,
          projects_jira_cloud_active: 0,
341
          projects_jira_active: 0
342
        }
343

344 345
        Service.active
          .by_type(:JiraService)
346 347 348
          .includes(:jira_tracker_data)
          .find_in_batches(batch_size: BATCH_SIZE) do |services|
          counts = services.group_by do |service|
349
            # TODO: Simplify as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
350 351 352 353 354 355
            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]
356
          results[:projects_jira_active] += services.size
357 358 359
        end

        results
360
      rescue ActiveRecord::StatementInvalid
361
        { projects_jira_server_active: FALLBACK, projects_jira_cloud_active: FALLBACK, projects_jira_active: FALLBACK }
362
      end
363 364 365 366 367 368 369

      def successful_deployments_with_cluster(scope)
        scope
          .joins(cluster: :deployments)
          .merge(Clusters::Cluster.enabled)
          .merge(Deployment.success)
      end
370
      # rubocop: enable CodeReuse/ActiveRecord
371

372 373 374 375 376 377 378 379 380 381
      def jira_import_usage
        finished_jira_imports = JiraImportState.finished

        {
          jira_imports_total_imported_count: count(finished_jira_imports),
          jira_imports_projects_count: distinct_count(finished_jira_imports, :project_id),
          jira_imports_total_imported_issues_count: alt_usage_data { JiraImportState.finished_imports_count }
        }
      end

382 383 384 385
      def user_preferences_usage
        {} # augmented in EE
      end

386 387 388 389 390 391 392
      def installation_type
        if Rails.env.production?
          Gitlab::INSTALLATION_TYPE
        else
          "gitlab-development-kit"
        end
      end
393 394 395
    end
  end
end
396 397

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