Commit 1005fad4 authored by Imre Farkas's avatar Imre Farkas

Merge branch 'update-instance-statistics-seeds' into 'master'

Update instance statistics seed file

See merge request gitlab-org/gitlab!43988
parents a51d95a0 3d6bbb16
...@@ -6,9 +6,9 @@ Gitlab::Seeder.quiet do ...@@ -6,9 +6,9 @@ Gitlab::Seeder.quiet do
model_class = Analytics::InstanceStatistics::Measurement model_class = Analytics::InstanceStatistics::Measurement
recorded_at = Date.today recorded_at = Date.today
# Insert random counts for the last 10 weeks # Insert random counts for the last 60 days
measurements = 10.times.flat_map do measurements = 60.times.flat_map do
recorded_at = (recorded_at - 1.week).end_of_week.end_of_day - 5.minutes recorded_at = (recorded_at - 1.day).end_of_day - 5.minutes
model_class.identifiers.map do |_, id| model_class.identifiers.map do |_, id|
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment