gitlab-exporter 11.14.0 → 11.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1df01fb9af6b719ede7d27727599d47dcfd46baf27fd4b31c20540803340011
4
- data.tar.gz: 90513cdcb659dc6e08f00b90d1042df60c14854d65a90a5603270e2b06324452
3
+ metadata.gz: 5d0a0ae02ed20a88844dab048496ad7f6d5aad588627a39abd380506ced488c4
4
+ data.tar.gz: 7452e058c911f6f32c4803bc8a37b694f2a9d604531a5f9b1ec467082e3a5fc8
5
5
  SHA512:
6
- metadata.gz: 0bf8914ed4a7ac133c5cef0f34b5a49307d84b3c95eece363ea627d0e80ecb65e976c01ccb73cd58f4e611654d583c099bd10b6944d78b1dbd95308c98d61c70
7
- data.tar.gz: ee65ee08b42d0c1b4313d72202d6849c9d9e6e45124a87eab4f0c66d8aebd360d4212a85b4889940399908045fba07fc0eb1798688939ad7c35b44c28d12dae2
6
+ metadata.gz: 133f534a5a51bc55910b4e06c5d6f7f12cee338952ce92567972e83c5ab4cd95d94cd00336f790b92a66db48ad7c1d31ddcdd9734a15e602986d28c765034671
7
+ data.tar.gz: 37b8a8a952d9b3352e5bfe458984a4fb2ea7b27dda687e25b42c5c52ba16476f8ebe69e59ab19dfd95492599918cf0967576315554fbbe2b76929835bd9327a2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-exporter (11.14.0)
4
+ gitlab-exporter (11.15.2)
5
5
  connection_pool (= 2.2.5)
6
6
  faraday (~> 1.8.0)
7
7
  pg (= 1.2.3)
@@ -107,4 +107,4 @@ DEPENDENCIES
107
107
  webrick (~> 1.7)
108
108
 
109
109
  BUNDLED WITH
110
- 2.2.29
110
+ 2.2.22
@@ -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' OR created_at >= '2022-01-23 00:00:00')
186
+ AND (migration_plan IN ('free', 'early_adopter')
187
187
  OR migration_plan IS NULL)
188
188
  SQL
189
189
  },
@@ -191,7 +191,7 @@ module GitLab
191
191
  select: :container_repositories,
192
192
  where: <<~SQL
193
193
  migration_state = 'pre_importing'
194
- AND (COALESCE(migration_pre_import_started_at, '01-01-1970') < (now() - INTERVAL '10 minutes'))
194
+ AND (COALESCE(migration_pre_import_started_at, '01-01-1970') < (now() - INTERVAL '20 minutes'))
195
195
  SQL
196
196
  },
197
197
  container_repositories_stalled_pre_import_done: {
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  module GitLab
2
2
  module Exporter
3
- VERSION = "11.14.0".freeze
3
+ VERSION = "11.15.2".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-exporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.14.0
4
+ version: 11.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pablo Carranza
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
239
  - !ruby/object:Gem::Version
240
240
  version: '0'
241
241
  requirements: []
242
- rubygems_version: 3.0.3.1
242
+ rubygems_version: 3.1.6
243
243
  signing_key:
244
244
  specification_version: 4
245
245
  summary: GitLab metrics exporter