debian-mirror-gitlab/lib/gitlab/usage/metrics/aggregates/sources/redis_hll.rb
2021-10-27 15:23:28 +05:30

23 lines
674 B
Ruby

# frozen_string_literal: true
module Gitlab
module Usage
module Metrics
module Aggregates
module Sources
class RedisHll
extend Calculations::Intersection
def self.calculate_metrics_union(metric_names:, start_date:, end_date:, recorded_at: nil)
union = Gitlab::UsageDataCounters::HLLRedisCounter
.calculate_events_union(event_names: metric_names, start_date: start_date, end_date: end_date)
return union if union >= 0
raise UnionNotAvailable, "Union data not available for #{metric_names}"
end
end
end
end
end
end
end