2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require './spec/support/sidekiq_middleware'
|
|
|
|
|
|
|
|
Gitlab::Seeder.quiet do
|
2021-01-03 14:25:43 +05:30
|
|
|
chance_for_decrement = 0.1 # 10% chance that we'll generate smaller count than the previous count
|
|
|
|
max_increase = 10000
|
|
|
|
max_decrease = 1000
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
model_class = Analytics::InstanceStatistics::Measurement
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
measurements = model_class.identifiers.flat_map do |_, id|
|
|
|
|
recorded_at = 60.days.ago
|
|
|
|
current_count = rand(1_000_000)
|
|
|
|
|
|
|
|
# Insert random counts for the last 60 days
|
|
|
|
Array.new(60) do
|
|
|
|
recorded_at = (recorded_at + 1.day).end_of_day - 5.minutes
|
|
|
|
|
|
|
|
# Normally our counts should slowly increase as the gitlab instance grows.
|
|
|
|
# Small chance (10%) to have a slight decrease (simulating cleanups, bulk delete)
|
|
|
|
if rand < chance_for_decrement
|
|
|
|
current_count -= rand(max_decrease)
|
|
|
|
else
|
|
|
|
current_count += rand(max_increase)
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
{
|
|
|
|
recorded_at: recorded_at,
|
2021-01-03 14:25:43 +05:30
|
|
|
count: current_count,
|
2020-11-24 15:15:51 +05:30
|
|
|
identifier: id
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
model_class.upsert_all(measurements, unique_by: [:identifier, :recorded_at])
|
|
|
|
|
|
|
|
print '.'
|
|
|
|
end
|