Welcome to mirror list, hosted at ThFree Co, Russian Federation.

count_snippets_metric.rb « instrumentations « metrics « usage « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 342ba802fd83331c18b53e109b84d6fa4fb16579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module Gitlab
  module Usage
    module Metrics
      module Instrumentations
        class CountSnippetsMetric < DatabaseMetric
          operation :count
          # Relation and operation are not used, but are included to satisfy expectations
          # of other metric generation logic.
          relation { Snippet }

          def value
            count(project_snippet_relation) + count(personal_snippet_relation)
          end

          def project_snippet_relation
            ProjectSnippet.where(time_constraints)
          end

          def personal_snippet_relation
            PersonalSnippet.where(time_constraints)
          end

          def to_sql
            project_snippet_relation_sql = Gitlab::Usage::Metrics::Query.for(:count, project_snippet_relation)
            personal_snippet_relation_sql = Gitlab::Usage::Metrics::Query.for(:count, personal_snippet_relation)

            "SELECT (#{project_snippet_relation_sql}) + (#{personal_snippet_relation_sql})"
          end
        end
      end
    end
  end
end