Add metric for failed archiving with stale live trace
This commit is contained in:
parent
cae1735276
commit
50989bca2e
1 changed files with 3 additions and 0 deletions
|
@ -7,10 +7,13 @@ module Ci
|
||||||
# Archive stale live traces which still resides in redis or database
|
# Archive stale live traces which still resides in redis or database
|
||||||
# This could happen when ArchiveTraceWorker sidekiq jobs were lost by receiving SIGKILL
|
# This could happen when ArchiveTraceWorker sidekiq jobs were lost by receiving SIGKILL
|
||||||
# More details in https://gitlab.com/gitlab-org/gitlab-ce/issues/36791
|
# More details in https://gitlab.com/gitlab-org/gitlab-ce/issues/36791
|
||||||
|
failed_archive_counter = Gitlab::Metrics.counter(:job_stale_live_trace_failed_archive_total, "Counter of failed archiving with stale live trace")
|
||||||
|
|
||||||
Ci::Build.finished.with_live_trace.find_each(batch_size: 100) do |build|
|
Ci::Build.finished.with_live_trace.find_each(batch_size: 100) do |build|
|
||||||
begin
|
begin
|
||||||
build.trace.archive!
|
build.trace.archive!
|
||||||
rescue => e
|
rescue => e
|
||||||
|
failed_archive_counter.increment
|
||||||
Rails.logger.error "Failed to archive stale live trace. id: #{build.id} message: #{e.message}"
|
Rails.logger.error "Failed to archive stale live trace. id: #{build.id} message: #{e.message}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue