gitlab-exporter 11.14.0 → 11.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/gitlab_exporter/database/row_count.rb +63 -7
- data/lib/gitlab_exporter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50218ad0f2683c122db031d1dcadc7f53d17b9336999f1a3469b397282204b59
|
4
|
+
data.tar.gz: cf4dde17a48c734c00233fd74438058d7e94a9312c5619eb6eabdb9c3235d53d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3e8259f3bf5660aa80b08ab44cf77eff1304ae494508d8faa6a0e45184ca96fa69aae03fb6ddbfcd4bcb1d12c1746342c87333268c65101fd0c2b121243eda7
|
7
|
+
data.tar.gz: 14f46e6a42d6cd0776f0687cee9f0091ceff4bcd4b3683692ca275b14e20c1f5e4be4b8be26dcc896ac37cb1ff235b7be7989979949acf675c476452f012de27
|
data/Gemfile.lock
CHANGED
@@ -135,8 +135,8 @@ module GitLab
|
|
135
135
|
container_repositories_migration_pending: {
|
136
136
|
select: :container_repositories,
|
137
137
|
where: <<~SQL
|
138
|
-
migration_state <> 'import_done'
|
139
|
-
AND created_at < '2022-01-23 00:00:00'
|
138
|
+
migration_state <> 'import_done'
|
139
|
+
AND created_at < '2022-01-23 00:00:00'
|
140
140
|
SQL
|
141
141
|
},
|
142
142
|
container_repositories_pre_importing: {
|
@@ -166,24 +166,24 @@ module GitLab
|
|
166
166
|
container_repositories_migration_all_free: {
|
167
167
|
select: :container_repositories,
|
168
168
|
where: <<~SQL
|
169
|
-
migration_plan IN ('free', 'early_adopter')
|
169
|
+
migration_plan IN ('free', 'early_adopter')
|
170
170
|
OR migration_plan IS NULL
|
171
171
|
SQL
|
172
172
|
},
|
173
173
|
container_repositories_migration_pending_free: {
|
174
174
|
select: :container_repositories,
|
175
175
|
where: <<~SQL
|
176
|
-
migration_state <> 'import_done'
|
176
|
+
migration_state <> 'import_done'
|
177
177
|
AND created_at < '2022-01-23 00:00:00'
|
178
|
-
AND (migration_plan IN ('free', 'early_adopter')
|
178
|
+
AND (migration_plan IN ('free', 'early_adopter')
|
179
179
|
OR migration_plan IS NULL)
|
180
180
|
SQL
|
181
181
|
},
|
182
182
|
container_repositories_import_done_free: {
|
183
183
|
select: :container_repositories,
|
184
184
|
where: <<~SQL
|
185
|
-
migration_state = 'import_done'
|
186
|
-
AND (migration_plan IN ('free', 'early_adopter')
|
185
|
+
migration_state = 'import_done'
|
186
|
+
AND (migration_plan IN ('free', 'early_adopter')
|
187
187
|
OR migration_plan IS NULL)
|
188
188
|
SQL
|
189
189
|
},
|
@@ -207,6 +207,62 @@ module GitLab
|
|
207
207
|
migration_state = 'importing'
|
208
208
|
AND (COALESCE(migration_import_started_at, '01-01-1970') < (now() - INTERVAL '5 minutes'))
|
209
209
|
SQL
|
210
|
+
},
|
211
|
+
container_repositories_skipped_not_in_plan: {
|
212
|
+
select: :container_repositories,
|
213
|
+
where: <<~SQL
|
214
|
+
migration_state = 'import_skipped'
|
215
|
+
AND migration_skipped_reason = 0
|
216
|
+
SQL
|
217
|
+
},
|
218
|
+
container_repositories_skipped_too_many_retries: {
|
219
|
+
select: :container_repositories,
|
220
|
+
where: <<~SQL
|
221
|
+
migration_state = 'import_skipped'
|
222
|
+
AND migration_skipped_reason = 1
|
223
|
+
SQL
|
224
|
+
},
|
225
|
+
container_repositories_skipped_too_many_tags: {
|
226
|
+
select: :container_repositories,
|
227
|
+
where: <<~SQL
|
228
|
+
migration_state = 'import_skipped'
|
229
|
+
AND migration_skipped_reason = 2
|
230
|
+
SQL
|
231
|
+
},
|
232
|
+
container_repositories_skipped_deny_list: {
|
233
|
+
select: :container_repositories,
|
234
|
+
where: <<~SQL
|
235
|
+
migration_state = 'import_skipped'
|
236
|
+
AND migration_skipped_reason = 3
|
237
|
+
SQL
|
238
|
+
},
|
239
|
+
container_repositories_skipped_canceled: {
|
240
|
+
select: :container_repositories,
|
241
|
+
where: <<~SQL
|
242
|
+
migration_state = 'import_skipped'
|
243
|
+
AND migration_skipped_reason IN (4, 8)
|
244
|
+
SQL
|
245
|
+
},
|
246
|
+
container_repositories_skipped_not_found: {
|
247
|
+
select: :container_repositories,
|
248
|
+
where: <<~SQL
|
249
|
+
migration_state = 'import_skipped'
|
250
|
+
AND migration_skipped_reason = 5
|
251
|
+
SQL
|
252
|
+
},
|
253
|
+
container_repositories_skipped_native: {
|
254
|
+
select: :container_repositories,
|
255
|
+
where: <<~SQL
|
256
|
+
migration_state = 'import_skipped'
|
257
|
+
AND migration_skipped_reason = 6
|
258
|
+
SQL
|
259
|
+
},
|
260
|
+
container_repositories_skipped_force_canceled: {
|
261
|
+
select: :container_repositories,
|
262
|
+
where: <<~SQL
|
263
|
+
migration_state = 'import_skipped'
|
264
|
+
AND migration_skipped_reason = 7
|
265
|
+
SQL
|
210
266
|
}
|
211
267
|
}.freeze
|
212
268
|
|