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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/usage/metrics/aggregates.rb')
-rw-r--r--lib/gitlab/usage/metrics/aggregates.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/gitlab/usage/metrics/aggregates.rb b/lib/gitlab/usage/metrics/aggregates.rb
index 4b38809dde4..0edd9f7914a 100644
--- a/lib/gitlab/usage/metrics/aggregates.rb
+++ b/lib/gitlab/usage/metrics/aggregates.rb
@@ -15,10 +15,14 @@ module Gitlab
DATABASE_SOURCE = 'database'
REDIS_SOURCE = 'redis_hll'
+ INTERNAL_EVENTS_SOURCE = 'internal_events'
SOURCES = {
DATABASE_SOURCE => Sources::PostgresHll,
- REDIS_SOURCE => Sources::RedisHll
+ REDIS_SOURCE => Sources::RedisHll,
+ # Same strategy as RedisHLL, since they are a part of internal events
+ # and should get counted together with other RedisHLL-based aggregations
+ INTERNAL_EVENTS_SOURCE => Sources::RedisHll
}.freeze
end
end