2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
# This grape_logging module (https://github.com/aserafin/grape_logging) makes it
|
|
|
|
# possible to log how much time an API request was queued by Workhorse.
|
|
|
|
module Gitlab
|
|
|
|
module GrapeLogging
|
|
|
|
module Loggers
|
|
|
|
class QueueDurationLogger < ::GrapeLogging::Loggers::Base
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
def before
|
|
|
|
@start_time = Time.now
|
|
|
|
end
|
|
|
|
|
|
|
|
def parameters(request, _)
|
|
|
|
proxy_start = request.env['HTTP_GITLAB_WORKHORSE_PROXY_START'].presence
|
|
|
|
|
|
|
|
return {} unless proxy_start && start_time
|
|
|
|
|
|
|
|
# Time in milliseconds since gitlab-workhorse started the request
|
2020-04-22 19:07:51 +05:30
|
|
|
duration = start_time.to_f * 1_000 - proxy_start.to_f / 1_000_000
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
{ 'queue_duration_s': Gitlab::Utils.ms_to_round_sec(duration) }
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|