class Sidekiq::JobLogger

Public Class Methods

new(config) click to toggle source
# File lib/sidekiq/job_logger.rb, line 5
def initialize(config)
  @config = config
  @logger = @config.logger
  @skip = !!@config[:skip_default_job_logging]
end

Public Instance Methods

call(item, queue) { || ... } click to toggle source
# File lib/sidekiq/job_logger.rb, line 11
def call(item, queue)
  start = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
  @logger.info { "start" } unless @skip

  yield

  Sidekiq::Context.add(:elapsed, elapsed(start))
  @logger.info { "done" } unless @skip
rescue Exception
  Sidekiq::Context.add(:elapsed, elapsed(start))
  @logger.info { "fail" } unless @skip
  raise
end
prepare(job_hash) { || ... } click to toggle source
# File lib/sidekiq/job_logger.rb, line 25
def prepare(job_hash, &block)
  # If we're using a wrapper class, like ActiveJob, use the "wrapped"
  # attribute to expose the underlying thing.
  h = {
    class: job_hash["display_class"] || job_hash["wrapped"] || job_hash["class"],
    jid: job_hash["jid"]
  }
  h[:bid] = job_hash["bid"] if job_hash.has_key?("bid")
  h[:tags] = job_hash["tags"] if job_hash.has_key?("tags")

  Thread.current[:sidekiq_context] = h
  level = job_hash["log_level"]
  if level && @logger.respond_to?(:log_at)
    @logger.log_at(level, &block)
  else
    yield
  end
ensure
  Thread.current[:sidekiq_context] = nil
end

Private Instance Methods

elapsed(start) click to toggle source
# File lib/sidekiq/job_logger.rb, line 48
def elapsed(start)
  (::Process.clock_gettime(::Process::CLOCK_MONOTONIC) - start).round(3)
end