2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Analytics
|
|
|
|
module InstanceStatistics
|
|
|
|
class Measurement < ApplicationRecord
|
2021-01-03 14:25:43 +05:30
|
|
|
EXPERIMENTAL_IDENTIFIERS = %i[pipelines_succeeded pipelines_failed pipelines_canceled pipelines_skipped].freeze
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
enum identifier: {
|
|
|
|
projects: 1,
|
|
|
|
users: 2,
|
|
|
|
issues: 3,
|
|
|
|
merge_requests: 4,
|
|
|
|
groups: 5,
|
2021-01-03 14:25:43 +05:30
|
|
|
pipelines: 6,
|
|
|
|
pipelines_succeeded: 7,
|
|
|
|
pipelines_failed: 8,
|
|
|
|
pipelines_canceled: 9,
|
|
|
|
pipelines_skipped: 10
|
2020-11-24 15:15:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
IDENTIFIER_QUERY_MAPPING = {
|
|
|
|
identifiers[:projects] => -> { Project },
|
|
|
|
identifiers[:users] => -> { User },
|
|
|
|
identifiers[:issues] => -> { Issue },
|
|
|
|
identifiers[:merge_requests] => -> { MergeRequest },
|
|
|
|
identifiers[:groups] => -> { Group },
|
2021-01-03 14:25:43 +05:30
|
|
|
identifiers[:pipelines] => -> { Ci::Pipeline },
|
|
|
|
identifiers[:pipelines_succeeded] => -> { Ci::Pipeline.success },
|
|
|
|
identifiers[:pipelines_failed] => -> { Ci::Pipeline.failed },
|
|
|
|
identifiers[:pipelines_canceled] => -> { Ci::Pipeline.canceled },
|
|
|
|
identifiers[:pipelines_skipped] => -> { Ci::Pipeline.skipped }
|
2020-11-24 15:15:51 +05:30
|
|
|
}.freeze
|
|
|
|
|
|
|
|
validates :recorded_at, :identifier, :count, presence: true
|
|
|
|
validates :recorded_at, uniqueness: { scope: :identifier }
|
|
|
|
|
|
|
|
scope :order_by_latest, -> { order(recorded_at: :desc) }
|
|
|
|
scope :with_identifier, -> (identifier) { where(identifier: identifier) }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
def self.measurement_identifier_values
|
|
|
|
if Feature.enabled?(:store_ci_pipeline_counts_by_status, default_enabled: true)
|
|
|
|
identifiers.values
|
|
|
|
else
|
|
|
|
identifiers.values - EXPERIMENTAL_IDENTIFIERS.map { |identifier| identifiers[identifier] }
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|